
/* Fonts */
@font-face {
  font-family: 'carla_sansregular';
  src: url('../fonts/carla_sans_regular-webfont.woff2') format('woff2'),
       url('../fonts/carla_sans_regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

:root {
  --font-default: 'Montserrat', sans-serif;
  --font-primary: "carla_sansregular";
  /* --font-secondary: 'Montserrat', sans-serif; */
}

/* Colors */
:root {
  --color-default: #202020;
  --color-primary: #7C19FF;
  --color-secondary: #31004A;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}
h2{
  font-size: 40px; 
  font-style: normal; 
  font-weight: 700; 
  line-height: normal; 
  background: -webkit-linear-gradient(45deg, #31004A, #7C19FF 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
p{
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-default);
  font-family: var(--font-default);
  padding: 15px 0;
}




.container{
  max-width: 1495px;
}
.btn-primary{
  border-radius: 10px;
  background: var(--main-gradient, linear-gradient(90deg, #31004A 0%, #7C19FF 100%));
  color: #fff;
  font-family: var(--font-default);
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  padding: 0 57px;
  border: none;
}
.btn-primary:hover{
  background: var(--main-gradient, linear-gradient(90deg, #7C19FF 0%, #31004A 100%));
}
.btn-secondary{
  border-radius: 0;
  background: transparent;
  color: var(--color-primary); 
  border: 1px solid var(--color-primary); 
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
  padding: 0 25px;
}
.btn-secondary:hover{
  background: var(--color-secondary);
  color: var(--color-primary); 
}








/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/

a.logo img{
  max-height: 45px;
}


section {
  padding: 80px 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 60px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-secondary);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 120px;
}
.header .container{
  max-width: 1700px;
}
header.sticked{
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px;
}


@media (max-width: 575px) {
  .header {
    height: auto;
    padding: 15px 0;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

/* .header .logo img {
  max-height: 40px;
  margin-right: 6px;
} */

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .sub-menu ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .sub-menu ul li {
    min-width: 200px;
  }

  .navbar .sub-menu ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .sub-menu ul a i {
    font-size: 12px;
  }

  .navbar .sub-menu ul a:hover,
  .navbar .sub-menu ul .active:hover,
  .navbar .sub-menu ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .sub-menu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .sub-menu .sub-menu ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .sub-menu .sub-menu:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .sub-menu .sub-menu ul {
    left: -90%;
  }

  .navbar .sub-menu .sub-menu:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .sub-menu ul,
  .navbar .sub-menu .sub-menu ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .sub-menu>.sub-menu-active,
  .navbar .sub-menu .sub-menu>.sub-menu-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}



/*--------------------------------------------------------------
# MENU Section
--------------------------------------------------------------*/
.mainNavi{
  margin: 0;
  padding: 0;
}
.mainNavi ul{
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
}
.mainNavi ul li{
  margin: 0;
  padding: 0 25px;
  list-style: none;
}
.mainNavi ul li a{
  font-size: 20px;
  color: var(--color-default);
}
.mainNavi ul li a:hover{
  color: var(--color-primary);
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.heroSection{
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 100px;
}
.heroSection div.slideItem{
  width: 100%;
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.heroSection div.slideItem::before{
  background-color: var(--color-secondary);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}
.heroSection div.slideItem .cont{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 9;
}
.heroSection div.slideItem h1{
  color: #fff;
  font-size: 60px;
  line-height: 1.3;
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.heroSection div.slideItem p{
  color: #fff;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 400;
}
.heroSection.heroSectionInner div.slideItem{
  height: 380px;
}

/* .heroSection.heroSectionInner div.slideItem{
  height: 75vh;
} */


.aboutPage{
  width: 100%;
  padding: 75px 0;
}
article.aboutBox{
  position: relative;
  background-image: url(../img/aboutBoxBg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 4px;
  margin: 30px 10px;
  background-size: 100% auto;
  min-height: 655px;
}
article.aboutBox::before{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  content: "";
}
article.aboutBox h2{
  position: relative;
}
article.aboutBox p{
  font-size: 16px; 
  font-weight: 400;
  margin: 0;
  position: relative;
  padding: 5px 0 5px 25px;
}
article.aboutBox h4{
  font-size: 18px; 
  font-weight: 600;
  font-family: var(--font-default);
  padding: 20px 0 0 25px;
  margin: 0;
  position: relative;
}
article.aboutBox h4::before{
  content: "\F26B";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 20px;
}
article.aboutBox.servBox{
  min-height: auto;
  height: calc(100% - 50px);
}
article.aboutBox.servBox h4{
  padding-left: 0;
  font-size: 24px;
  padding: 0;
}
article.aboutBox.servBox h4::before{
  display: none;
}
article.aboutBox ul{
  margin: 0;
  padding: 15px 0 0;
}
article.aboutBox ul li{
  font-size: 18px; 
  font-weight: 400;
  margin: 0;
  position: relative;
  padding: 5px 0 5px 25px;
  color: #4F4F4F;
  list-style: none;
}
article.aboutBox ul li::before{
  content: "\F26B";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 16px;
}




/*--------------------------------------------------------------
# Security Solutions
--------------------------------------------------------------*/
.securitySec{
  width: 100%;
}
.securitySec h2{
  text-transform: uppercase;
  text-align: center;
}
.securitySec article.box{
  position: relative;
  width: 100%;
  cursor: pointer;
}
.securitySec article.box img{
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.securitySec article.box .wBox{
  width: calc(100% - 40px);
  background-color: #fff;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 5px;
  margin: -40px 0 0 20px;
  min-height: 190px;
  z-index: 9; 
  position: relative;
}
.securitySec article.box h3{
  font-size: 20px;
  line-height: 1.5;
  font-family: var(--font-default);
  color: var(--color-default);
}
.securitySec article.box:hover h3{
  color: var(--color-primary);
}
.securitySec article.box .btn-secondary{
  position: absolute;
  left: 20px;
  bottom: 20px;
}




.about_sec{
  width: 100%;
  background-image: url(../img/about_secBg.jpg); 
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover;
}
.about_sec img{
  max-width: 100%; 
  height: auto;
}
.about_sec h4{
  color: var(--color-default);
  font-family: var(--font-default);
  font-size: 24px;
  line-height: 1.5;
}
.about_sec h3{
  color: var(--color-primary);
  font-family: var(--font-default);
  font-size: 26px;
  line-height: 1.5;
  padding-left: 35px;
  background: url(../img/icon_1.svg) no-repeat 0 8px;
}
.about_sec .btn-primary{
  line-height: 55px;
  padding: 0 90px;
}



.partner_Sec{
  width: 100%;
  text-align: center;
  padding: 120px 0;
  background-image: url(../img/partner_sec.jpg); 
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover;
}


.footerSec{
  width: 100%;
  padding: 90px 0;
  background-image: url(../img/footerBg.jpg); 
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: #fff;
}
.footerSec::before{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/footerGrad.svg);
  background-repeat: no-repeat;
  background-position: center; 
  background-size: cover;
}
.footerSec .container{
  position: relative;
  z-index: 1;
}
.footerSec p{
  color: #fff; 
  margin: 0; 
  font-weight: 300;
}
.footerSec h4{
  color: #fff; 
  font-family: var(--font-default);
  font-size: 32px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.footerSec h4::before{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 164px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.6);
  content: ""; 
  border-radius: 2px;
}
.footerSec ul{
  margin: 0;
  padding: 0;
}
.footerSec ul li{
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.footerSec ul li a{
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 20px; 
  line-height: 1.5;
}
.footerSec iframe{
  width: 100%;
  height: 300px;
}
.footerCopyRight{
  width: 100%;
  padding: 20px 0;
  background-color: var(--color-secondary);
  position: relative;
  color: #fff;
}
.footerCopyRight p{
  color: #fff; 
  padding: 0;
  margin: 0;
  font-size: 20px;
}
ul.social_link{
  margin: 0; 
  padding: 0;
}
ul.social_link li{
  margin: 0; 
  padding: 0;
  display: inline;
  list-style: none;
}
ul.social_link li a{
  display: inline-block;
  font-size: 25px;
  color: #fff;
  margin: 0 0 0 15px;
}
ul.social_link li a:hover{
  color: var(--color-primary);
}


.contactPage{
  width: 100%;
  padding: 150px 0 100px;
}
.contactPage h3{
  font-size: 36px;
  line-height: 1.5;
  color: var(--color-default) !important;
  font-family: var(--font-default);
  position: relative;
  padding: 0 0 15px;
  margin: 0;
}
.contactPage h3::before{
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 90px;
  height: 3px;
  background-color: var(--color-primary);
}
.contactPage .contactInfo{
  width: 100%;
  min-height: 628px;
  padding: 50px;
  background-image: url(../img/contactInfoBg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 108%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 5px;
}
.contactPage .contactInfo::before{
  background-color: #F4F2F9;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.contactPage .contactInfo ul{
  margin: 0;
  padding: 15px 0;
  position: relative;
  list-style: none;
}
.contactPage .contactInfo ul li{
  margin: 0;
  padding: 45px 0 45px 130px;
  font-size: 26px;
  line-height: 1.5;
  color: var(--color-default);
  font-family: var(--font-default);
  border-bottom: 1px solid #999;
  position: relative;
}
.contactPage .contactInfo ul li:last-child{
  border-bottom: none;
}
.contactPage .contactInfo ul li img{
  position: absolute;
  left: 25px;
  top: 42px;
}
.contactPage .formSection p{
  padding: 0;
  margin: 0;
}
.contactPage .formSection{
  width: 100%;
  min-height: 628px;
  padding: 50px;
  background-image: url(../img/contactForm.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 108%;
  position: relative;
}
.contactPage .formSection::before{
  background-color: #F4F2F9;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.contactPage .formSection .row{
  position: relative;
}
.contactPage .formSection input[type="text"], 
.contactPage .formSection input[type="tel"], 
.contactPage .formSection input[type="email"]{
  width: 100%;
  height: 80px;
  border: none;
  background-color: #fff;
  color: var(--color-default);
  font-weight: 500;
  font-size: 20px;
  padding: 0 25px;
}
.contactPage .formSection textarea{
  width: 100%;
  height: 155px;
  border: none;
  background-color: #fff;
  color: var(--color-default);
  font-weight: 500;
  font-size: 20px;
  padding: 0 25px;
}
.contactPage .formSection input[type="submit"]{
  border-radius: 10px;
  background: var(--main-gradient, linear-gradient(90deg, #31004A 0%, #7C19FF 100%));
  color: #fff;
  font-family: var(--font-default);
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  padding: 0 0;
  border: none;
  width: 230px;
}





.servDetailsPage{
  width: 100%;
  padding: 80px 0;
}
.servDetailsPage p{
  color: #4F4F4F;
}
.servBanner{
  width: 100%;
  position: relative;
}
.servBanner article{
  width: 100%;
  position: relative;
  text-align: left;
  padding: 20px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 5px;
  margin-top: -50px;
  height: calc(100% + 50px);
}
.servBanner article .icon{
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background-color: var(--color-primary);
  position: relative;
}
.servBanner article .icon img{
  position: absolute;
  left: 50%; top: 50%; 
  transform: translate(-50%, -50%);
}
.servBanner article h4{
  font-family: var(--font-default);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-default);
  padding: 15px 0 10px;
  margin: 0;
}
.servBanner article p{
  font-family: var(--font-default);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #8A8A8A;
  padding: 0;
  margin: 0;
}

.servDetailsPage_2{
  width: 100%;
  padding: 80px 0;
  background-image: url(../assets/img/serv_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  background-size: cover;
  margin: 50px 0 0;
  padding: 30px;
}
.servDetailsPage_2::before{
  background: #7C19FF;
  opacity: 0.8;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.servDetailsPage_2 h3, .servDetailsPage_2 h4, .servDetailsPage_2 p{
  position: relative;
  color: #fff;
  text-align: center;
}
.servDetailsPage_2 h3{
  padding: 15px 0;
  line-height: 1.8;
  font-size: 30px;
}
.servDetailsPage_2 h4{
  padding: 15px 0;
  line-height: 1.5;
  font-family: var(--font-default);
  font-weight: 600;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.servDetailsPage_2 h4::before{
  width: 100px;
  height: 2px;
  content: "";
  background-color: #fff;
  margin-right: 15px;
}
.servDetailsPage_2 h4::after{
  width: 100px;
  height: 2px;
  content: "";
  background-color: #fff;
  margin-left: 15px;
}


.servDetailsPage_2 p{
  padding: 0 0 15px 0;
  line-height: 1.8;
  font-family: var(--font-default);
  font-weight: 500;
  font-size: 24px;
}






/* Blog */
.blogPage{
  width: 100%;
}
article.bPost{
  width: 100%;
  margin-bottom: 40px;
}
article.bPost img.postImg{
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.bContent{
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 3px;
}
.bContent::before{
  content: "";
  background-image: url(../img/blog_conetnt_bg.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.bContent ul.metaCont{
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
}
.bContent ul.metaCont li{
  margin:0 35px 0 0; 
  padding: 0; 
  color: var(--color-secondary);
  list-style: none;
  font-size: 18px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.bContent ul.metaCont li img{
  margin: 0 15px 0 0;
  padding: 0;
}
.bContent ul.metaCont li a{
  color: var(--color-secondary);
}
.bContent h3{
  font-size: 36px;
  line-height: 1.5;
  font-weight: 600; 
  color: var(--color-default);
  margin: 0;
  padding: 15px 0;
  font-family: var(--font-default);
  position: relative;
}
.bContent p{
  color: #8A8A8A;
  position: relative;
}
.bContent a.btn.btn-primary{
  position: relative;
}
.blogSideBar{
  width: 100%;
  padding: 45px;
  background-color: #F4F2F9;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 3px;
  margin-bottom: 30px;
}
.blogSideBar .searchBar{
  width: 100%;
  height: 80px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.blogSideBar .searchBar input[type="text"], .blogSideBar .searchBar input[type="search"]{
  width: calc(100% - 50px);
  height: 40px;
  background-color: #fff;
  border: none;
  outline: none !important;
}
.blogSideBar .searchBar button[type="submit"]{
  width: 50px;
  height: 40px;
  background-color: transparent;
  border: none;
  border-left: 1px solid #ccc;
}
.blogSideBar h3{
  font-size: 36px;
  line-height: 1.5;
  font-weight: 600; 
  color: var(--color-default);
  margin: 0 0 15px 0;
  padding: 0 0 15px 0;
  font-family: var(--font-default);
  position: relative;
}
.blogSideBar h3::before{
  width: 90px;
  height: 3px;
  background-color: var(--color-primary);
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}
.blogSideBar ul.cateList{
  width: 100%;
  padding: 0;
  margin: 0;
}
.blogSideBar ul.cateList li{
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin: 0;
  border-bottom: 1px solid #ccc;
}
.blogSideBar ul.cateList li a{
  color: var(--color-default);
  font-weight: 400;
  padding: 0 0;
  margin: 0;
}
.blogSideBar ul.cateList li.active a{
  color: #7C19FF;
  padding-left: 30px;
  position: relative;
}
.blogSideBar ul.cateList li.active a::before{
  background-image: url(../img/chevrons-right.svg);
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  content: "";
  position: absolute;
  left: 0;
}
.rePost{
  margin: 0;
  padding: 0;
}
.rePost li{
  margin: 0;
  padding: 20px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid #ccc;
}
.rePost li:last-child{
  border: none;
}
.rePost li a{
  margin: 0;
  padding: 0;
}
.rePost h6{
  font-family: var(--font-default);
  color: var(--color-default);
  color: #777;
}
.rePost h6 img{
  margin-right: 10px;
}
.rePost h5{
  font-family: var(--font-default);
  color: var(--color-default);
  font-size: 20px;
  font-weight: 500;
  font-size: 14px;
}
.rePost li a img.rePostImg{
  width: 105px;
  height: 105px;
  object-fit: cover;
  margin: 0 20px 0 0;
}
.rePost li:hover h5{
  color: #7C19FF;
}
.servDetailsPage img{
  max-width: 100%;
  height: auto;
}
.bContent ul.metaCont li{

}


.contactMapSec{
  width: 100%;
  height: 650px;
  position: relative;
  margin-top: 0;
}
.contactMapSec iframe{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}


ul.slick-dots{
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.slick-dots li{
  margin: 0 10px;
  padding: 0;
  list-style: none;
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
}
ul.slick-dots li.slick-active{
  width: 15px;
  height: 15px;
  background-color: #fff;
}
ul.slick-dots li button{
  display: none;
}

.whyChooseSec{
  padding-top: 50px;
  padding-bottom: 0;
}
.whyChooseSec ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.whyChooseSec ul li{
  list-style: none;
  padding: 10px 0;
  font-size: 20px;
}
.whyChooseSec ul li strong{
  display: block;
  color: var(--color-secondary);
  font-size: 24px;
}

.threatRepository_content{
  width: 100%;
  padding: 0 0;
}
.threatRepository_content p{
  margin: 0;
  padding: 10px 0;
  font-size: 18px;
}
.threatRepository_content ul{
  margin: 0;
  padding: 10px 15px;
}
.threatRepository_content li{
  font-size: 18px;
  position: relative;
  padding-left: 30px;
  list-style: none;
}
.threatRepository_content li::before{
  content: "\F26B";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0px;
  top: 0;
}
.threatRepository_content ul ul li::before{
  display: none;
}
.threatRepository_content ul ul li{
  padding-left: 0;
}
.threatRepository_content p b{
  color: var(--color-secondary);
}
.footer-logo{
  width: 169px;
  height: auto;
}



@keyframes upDownAni {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-40px);
		}
	100% {
		transform: translatey(0px);
	}
}
@keyframes upDownAni_2 {
	0% {
		transform: translatex(0px);
	}
	50% {
		transform: translatex(-100px);
		}
	100% {
		transform: translatex(0px);
	}
}
.ani_b_1{
  position: absolute;
  width: 50px;
  top: -50px;
  left: 50px;
	transform: translatey(0px);
	animation: upDownAni 3s ease-in-out infinite;
}
.ani_b_2{
  position: absolute;
  width: 80px;
  bottom: 0;
  right: 50px;
	transform: translatey(0px);
	animation: upDownAni 4s ease-in-out infinite;
}
.ani_b_3{
  position: absolute;
  width: 30px;
  top: 0;
  left: 50px;
	transform: translatey(0px);
	animation: upDownAni 2s ease-in-out infinite;
}
.ani_b_4{
  position: absolute;
  width: 80px;
  bottom: -50px;
  right: 50px;
	transform: translatey(0px);
	animation: upDownAni 4s ease-in-out infinite;
  z-index: 2;
}
.ani_b_5{
  position: absolute;
  width: 50px !important;
  height: 50px !important;
  top: 97px;
  right: 0;
	transform: translatey(0px);
	animation: upDownAni_2 5s ease-in-out infinite;
  z-index: 2;
}






@media only screen and (max-width: 1600px) {
  h2{
    font-size: 28px;
  }
  .btn-primary{
    font-size: 16px;
  }
  .mainNavi ul li{
    padding: 0 10px;
  }
  .mainNavi ul li a{
    font-size: 16px;
  }
  .securitySec article.box h3{
    font-size: 18px;
  }

  .contactPage .contactInfo{
    padding: 30px;
  }
  .contactPage .contactInfo ul li{
    padding-left: 100px;
  }
  article.aboutBox ul li{
    font-size: 16px;
  }
  .heroSection div.slideItem h1{
    font-size: 45px;
  }


}


@media only screen and (max-width: 1180px) {
  nav.mainNavi{
    display: none;
  }
  .heroSection div.slideItem h1{
    font-size: 40px;
  }
  .heroSection div.slideItem p{
    font-size: 22px;
  }
  .btn-primary{
    padding: 0 15px;
    font-size: 14px;
  }
  .partner_Sec .container{
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .partner_Sec .container img{
    margin: 15px auto;
    display: block;
  }
  .securitySec article.box{
    margin-bottom: 40px;
  }


}
@media only screen and (max-width: 991px) {
  section{
    padding: 40px 0;
  }
  .servBanner article{
    margin: 15px 0;
    width: calc(100% - 30px);
    height: auto;
    padding: 5px;
  }
  .servBanner article h4{
    font-size: 20px;
  }
  .servBanner article p{
    font-size: 16px;
  }
  .threatRepository_content{
    width: 100%;
    padding: 35px 0;
  }
}
@media only screen and (max-width: 767px) {
  a.logo img{
    max-height: 25px;
  }
  h2{
    font-size: 30px;
  }
  p{
    font-size: 16px;
  }
  .heroSection.heroSectionInner div.slideItem{
    height: 400px;
  }
  .footerSec h4{
    margin-bottom: 15px;
    margin-top: 50px;
    font-size: 24px;
  }
  .footerSec p, .footerSec li, .footerSec ul li a{
    font-size: 16px;
  }
  .footerSec ul li{
    padding: 4px 0;
  }

  .footerCopyRight p{
    font-size: 14px;
  }

  .footerSec{
    padding: 40px 0;
    text-align: center;
  }
  .footerSec h4::before{
    width: 100px;
    left: calc(50% - 50px);
  }
  .footerCopyRight{
    text-align: center;
  }
  ul.social_link li a{
    margin: 0 5px 10px;
    font-size: 20px;
  }
  .contactPage{
    padding: 40px 0;
  }
  .contactPage .contactInfo{
    padding: 20px;
    text-align: center;
    min-height: inherit;
    background-size: 140%;
  }
  .contactPage .contactInfo ul li{
    font-size: 18px;
    padding: 20px 0;
  }
  .contactPage .contactInfo ul li img{
    position: static;
    margin: 0 auto 15px;
    display: block;
  }
  .contactPage h3{
    font-size: 30px;
    text-align: center;
  }
  .contactPage h3::before{
    left: calc(50% - 45px);
  }
  .contactPage .formSection{
    padding: 30px;
    margin-top: 50px;
  }
  .contactPage .formSection input[type="text"], .contactPage .formSection input[type="tel"], .contactPage .formSection input[type="email"]{
    height: 60px;
    font-size: 16px;
  }
  .contactPage .formSection textarea{
    font-size: 16px;
    padding: 15px 25px;
  }
  .contactPage .formSection input[type="submit"]{
    width: 190px;
    height: 50px;
  }
  .servDetailsPage_2 h3{
    font-size: 20px;
  }
  .servDetailsPage_2 p{
    font-size: 16px;
  }
  .heroSection div.slideItem p{
    font-size: 16px;
  }
  .bContent h3{
    font-size: 24px;
  }
  .bContent ul.metaCont{
    flex-direction: column;
  }
  .bContent{
    padding: 20px;
  }
  .blogSideBar h3{
    font-size: 30px;
  }

  .blogSideBar{
    padding: 30px;
  }

  .heroSection div.slideItem h1{
    font-size: 30px;
  }

  article.bPost img.postImg{
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

}




@media only screen and (max-width: 575px) {
  #header .btn-primary {
    padding: 0 10px;
    font-size: 12px;
  }
  a.logo img {
    max-height: 25px;
  }
  .heroSection{
    margin-top: 70px;
  }
  .partner_Sec{
    padding: 45px 0;
  }
}


.newNav{
  margin: 0;
  padding: 0;
}
.newNav ul{
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
}
.newNav ul li{
  margin: 0;
  padding: 0 10px;
  list-style: none;
}
.newNav ul li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: .3s;
    position: relative;
}
.newNav ul ul{
  display: none;
}
.newNav ul li a::before{
  content: "";
  position: absolute;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--color-primary);
  visibility: hidden;
  width: 0;
  transition: all .3s ease-in-out 0s;
}
.newNav ul li a:hover::before{
  width: 100%;
}


.newNav ul ul.sub-menu{ visibility:hidden; opacity:0; transform:translateY(20px); -webkit-transform:translateY(20px); -ms-transform:translateY(20px); z-index:-1; transition:all 0.3s ease-in-out 0s, visibility 0s linear .3s, -index 0s linear 0.01s;	
	position:absolute; left:0; top:100%; background:var(--color-secondary); width:100%; z-index:9; padding: 20px; display: block; box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px; }

.newNav ul li:hover ul.sub-menu{ visibility:visible; opacity:1; z-index:9; transform:translateY(0); -webkit-transform:translateY(0); -ms-transform:translateY(0);	transition-delay: 0s, 0s, 0.3s;}
.newNav ul li:hover ul.sub-menu{
  display: flex; justify-content: start; align-items: center;
  flex-wrap: wrap;
}
.newNav ul ul.sub-menu li{ margin:0; padding:0; position:relative; display:inline-block; width: auto; }
.newNav ul ul.sub-menu li::before{
  content:"\F233";
  font-family: "bootstrap-icons";
  font-size:12px; line-height:25px; color: #fff;
}
.newNav ul ul.sub-menu li a{ display:inline; font-weight:600; font-size:12px; line-height:25px; color: #fff; padding:10px 10px; margin:0; text-align:left; text-transform: none; }
.newNav ul ul.sub-menu li:last-child a{ border: none; }
.newNav ul ul.sub-menu li a:after{ display: none; }
.newNav ul ul.sub-menu li a:hover{  }

.newNav li.menu-item-has-children a:after{
	content: "\F229"; font-family: "bootstrap-icons"; margin-left: 10px;
}
.newNav ul li:last-child ul.sub-menu{ left: auto; right: 0; }


.newNav ul ul.sub-menu ul.sub-menu{
	position: static;
	left: auto; top: auto;
	box-shadow: none;
	width: auto;
	padding: 0 0 0 20px;
}
.newNav ul ul.sub-menu ul.sub-menu a{
	position: relative;
	padding-top: 0;
}
.newNav ul ul.sub-menu ul.sub-menu a:before{
	background-color: #000;
	width: 5px;
	height: 2px;
	content: "";
	position: absolute;
	left: -8px;
	top: 15px;
}

.partCaro{
  width: 100%;
}

.partCaro article{
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 150px;
}
.partCaro article img{
  /* width: 300px;
  height: 120px;
  margin: 0 auto;
  display: block;
  object-fit: contain; */
  filter: grayscale(100%);
  max-width: 300px;
  max-height: 130px;
}
.partCaro .slick-dots{
  bottom: -50px;
}
.partCaro .slick-dots li{
  border-color: #666
}
.partCaro .slick-dots li.slick-active{
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

@media only screen and (max-width: 1280px) {
  .newNav{
    display: none;
  }

}



.reqPage{
  width: 100%;
  padding: 75px 0;
  position: relative;
}
.reqPage::before{
  width: 50%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/Desktop_Get_A_Demo_Form_Image.webp);
  background-position: center;
  background-size: cover;
}
.reqPage .container{
  position: relative;
  z-index: 1;
}
.reqPage .reqContent{
  color: #fff;
}
.reqPage .reqContent h1{
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-transform: none;
  padding: 30px 0 15px;
  margin: 0;
}
.reqPage .reqContent h5{
  text-transform: none;
  padding: 15px 0;
  margin: 0;
}
.reqPage .reqContent ul{
  margin: 0;
  padding: 15px 0;
}
.reqPage .reqContent ul li{
  margin: 0;
  padding: 5px 0 5px 30px;
  position: relative;
  list-style: none;
}
.reqPage .reqContent ul li::before{
  content: "\F26B";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 5px;
}
.reqForm div{
  padding-top: 10px;
  padding-bottom: 10px;
}
.reqForm .form-control{
  height: 45px;
  background-color: #f1f1f1;
}
.reqForm textarea.form-control{
  height: 145px;
}
.reqForm .btn.btn-primary{
  width: 150px;
  padding: 0;
}
.reqForm small{
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  display: block;
}
.reqForm p{
  margin: 0;
  padding: 0;
}
.reqForm label{
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}


@media only screen and (max-width: 991px) {
  .reqPage::before{
    display: none;
  }
  .reqPage .reqContent{
    background-image: url(../img/Desktop_Get_A_Demo_Form_Image.webp);
    background-position: center;
    background-size: cover;
    margin-bottom: 50px;
    padding: 50px 30px;
  }

  .reqPage{
    padding: 0 0 40px;
  }


}

.safeguard_sec{
  width: 100%;
}
.safeguard_sec h2, .safeguard_sec p{
  text-align: center;
  padding: 0;
  margin: 0;
}
.safeguard_sec article{
  width: 100%;
  background-color: #fff;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 10px;
  margin: 30px 0 20px 0;
  min-height: 320px;
  z-index: 1;
  position: relative;
}
.safeguard_sec article h2{
  text-align: left;
  font-size: 25px;
}
.safeguard_sec article p{
  text-align: left;
  font-size: 16px;
  padding: 15px 0;
}
.reqPageLogo img{
  margin: 10px;
  height: 70px;
  width: 130px;
  object-fit: contain;
}



@media only screen and (max-width: 767px) {
  .safeguard_sec article h2{
    text-align: center;
    font-size: 20px;
  }
  .safeguard_sec article p{
    text-align: center;
    font-size: 14px;
  }
  .safeguard_sec article{
    min-height: inherit;
  }
  .servBanner article{
    margin: 15px auto;
  }
  .btn-primary{
    height: 45px;
    line-height: 45px;
  }

}

.bottomSliderSec{
  width: 100%;
  background-color: #efe2ff;
}
.bottomSliderSec p, .bottomSliderSec h2{
  padding: 0;
  margin: 0;
  text-align: center;
}
.bottomSlider p{
  font-size: 20px;
  font-weight: 600;
  margin: 0 10px;
  padding: 45px 25px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px;
  background-color: #fff;
  border-radius: 10px;
}
.bottomSlider h2{
  font-size: 75px;
}
.bottomSlider img{
  width: auto;
  height: 140px;
}
.bottomSlider ul.slick-dots{
  z-index: 9;
  bottom: -40px;
}
.bottomSlider ul.slick-dots li{
  width: 15px;
  height: 3px;
  border-radius: 0;
  background-color: var(--color-primary) !important;
  border: none;
  margin: 0 5px;
}
.bottomSlider ul.slick-dots li.slick-active{
  background-color: #000 !important;
}

@media only screen and (max-width: 991px) {
  .bottomSlider h2{
    font-size: 35px;
  }
  .bottomSlider ul.slick-dots{
    bottom: 0;
  }
}


.wpcf7-not-valid-tip{
  font-size: 12px !important;
}


.menuIcon{
  display: none;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 1280px) {
  .menuIcon{
    display: block;
    position: absolute;
    left: 15px;
  }
  a.logo{
    margin-left: 60px;
  }
  .mm-spn.mm-spn--dark{
    background: var(--color-secondary) !important;
  }




}