/**
* Template Name: Acta Website - v4.9.1
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap');
@font-face {
  font-family: "Sketching Universe";
  src: url('fonts/Sketching-Universe.woff2') format('woff2'),
       url('fonts/Sketching-Universe.woff') format('woff'),
       url('fonts/Sketching-Universe.ttf') format('truetype');
}

body {
  background: #F6FBFF;
  color: #444;
  font-family: 'Montserrat', sans-serif;
}

a {
  color: #007bff;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 ;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #007bff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  transform: translate(-15px,-15px);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2990ff;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled {
  height: 60px;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}

#header .logo img {
  padding: 10px 0px;
  width: 60%;
  margin: auto 0
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
  margin-right: 15px;
}

.navbar li:last-child{
  margin-left: 30px;
}

li .btn-free-trail{
  margin-left: 10px;
}

#head-container .logo{
  margin-right: 40px;
}

.about-one{
  /* margin: 0 auto !important; */
  width: 425px !important;
  padding-right: 10px;
}

.about-one img{
}

#about-us p.sub-heading {
  text-align: justify;
  margin: auto;
  font-size: 18px;
  padding-bottom: 60px;
  padding-top: 30px;
  width: 72%;
}

#about-security p.sub-heading {
  text-align: justify;
  margin: auto;
  font-size: 18px;
  padding-bottom: 60px;
  padding-top: 30px;
  width: 72%;
}

#about-security p.sub-heading-header {
  text-align: justify;
  margin: auto;
  font-size: 18px;
  padding-bottom: 20px;
  padding-top: 20px;
  width: 72%;
}

#about-security p.sub-heading-header-last {
  text-align: justify;
  margin: auto;
  font-size: 18px;
  padding-bottom: 40px;
  /* padding-top: 10px; */
  width: 72%;
}


.about-one p{
  margin-top: 10px;
  font-size: 18px;
  text-align: justify;
}


.about-first{
  margin: auto;
  width: 75%;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 0 10px 30px; */
  margin: 10px 0 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #000002;
  font-weight: 500;
  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 .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #21409A;
  border-bottom: 2px solid #21409A;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  /* padding: 0px; */
  margin: 0px 5px 0px 20px;
  font-size: 14px;
  text-transform: none;
  border-bottom: none;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #007bff;
}

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

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #283d50;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}


@media (max-width: 991px) {
  .mobile-nav-toggle {  
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #21409A;
    border-bottom: none !important;
  }

  /* .mobile-service-space{
    margin-top: 30px !important;
  }

  .mobile-service-top{
    margin-top: 30px !important;
  } */
}

@media (min-width: 800px) and (max-width: 1000px) {
  .mobile-service-space{
    margin-top: 40px !important;
  }
}

@media (max-width: 991px) {
  .mobile-nav-toggle {  
    display: block;
  }

  .navbar ul {
    display: none;
  }

  @media (min-width: 360px) {
    .mobile-service-space{
      margin-top: 30px !important;
    }

    .mobile-service-top{
      margin-top: 30px !important;
    }
  }

  @media (min-width: 768px) {
    .mobile-service-space{
      margin-top: 45px !important;
    }

    .tablet-service-space{
      margin-top: 45px !important;
    }
  
    .mobile-service-top{
      margin-top: 30px !important;
    }
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(23, 35, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000002;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #000002;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #007bff;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.main-section {
  width: 100%;
  position: relative;
  background: url("../images/home-group.jpg");  
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding: 150px 0 120px 0;
  width: 100%;
  height: 100%;
  margin-top:80px;
}
.second-section h6{
  font-size:24px;
  line-height: 30px;
  font-weight: 500;
  color:#000002;
  padding: 0;
  margin: 0;
}
.hero-info h2{
  font-size:60px;
  line-height: 80px;
  font-weight: 700;
  color:#000000;
  margin: 0;
  padding: 0;
}
.second-section{
  padding: 60px 0px 0px;
}
.appointment-section{
  padding: 90px 0px 0px;
}
.foryou{
  padding: 30px 0px;
}
#our-services .title {
  color: #202020;
  font-weight: 700;
  font-size:24px;
  line-height: 30px;
  font-weight: 700;
  margin: 0;
  padding: 0 0 10px;
}
.description-new {
  font-size: 18px;
  line-height: 22px;
  color: #21409A;
  font-weight: 600;
  padding: 0;
  margin: 0;
}

.section-bg{
  padding: 90px 0px;
}

#hero .hero-info h2 span {
  color: #74b5fc;
  /* text-decoration: underline; */
}

.calendly-inline-widget{
  margin-top: 50px;
  margin-bottom: 50px;
  margin-right: 20px;
  margin-left: 20px;
}

.main-section .hero-info .btn-get-started,
.main-section .hero-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  padding: 15px;
  border-radius: 50px;
  transition: 0.5s;
  color: #21409A;
}
.btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  padding: 20px;
  border-radius: 50px;
  transition: 0.5s;
  color: #21409A;
}
.main-section .hero-info .btn-get-started {
  background: #21409A;
  border: 2px solid #21409A;
  color: #fff;
}

.main-section .hero-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}
.main-section .hero-info .btn-services {
  border: 2px solid #21409A;
}

.btn-services {
  border: 2px solid #21409A;
}

.btn-services:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
}
.main-section .hero-info .btn-services:hover {
  background: #21409A;
  border-color: #21409A;
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

.section-header {
  text-align: center;
  padding: 0 0 60px;
}
.section-header h3,
.section-header h1,
.section-header h2 {
  font-size: 40px;
  line-height:80px;
  color: #202020;
  font-weight: 700;
  padding: 0; 
  margin: 0;
}

.icons img{
  width:40px;
  height: 40px;
  object-fit: contain;
}
.service_wrap h5 a{
  font-size:18px;
  line-height: 80px;
  color:#000000;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.service_wrap p{
  font-size:14px;
  line-height: 24px;
  color:#555555;
  font-weight: 500;
  padding: 0;
  margin: 0;
}
.service_wrap p strong{
  color: #202020;
  font-weight:600 ;
}
.service_wrap .service_wrap{
  padding: 60px 0px 30px;
}
.section-header h3.service, .section-header h1.service {
  margin-top: 10px;
  margin-bottom: 35px;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 20px;
  padding-bottom: 5px;
  color: #556877;
  width: 75%;
}

.section-header p.sub-para{
  padding-bottom: 25px !important;
}

.section-services{
  margin-bottom: 20px;
}
/* Section with background
--------------------------------*/
.section-bg {
  background: #F6FBFF;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f5faff;
  min-height: 40px;
  margin-top: 80px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

.intelligence-header{
  margin-top: 40px;
  /* padding-bottom: 18px; */
}

/* About Us Section
--------------------------------*/
#about {
  color: #fff;
  background: #004a99;
  padding: 150px 0 50px 0;
}

#contact-page {
  color: #202020;
  background: #F6FBFF;
  padding: 130px 0 100px 0;
}

#career-page {
  color: #202020;
  background: #F6FBFF;
  padding: 130px 0 100px 0;
}

#about .about-container .background {
  margin: 20px 0;
}

#about .section-header h3, #about .section-header h1 {
  color: #fff !important;
}

#about .section-header p {
  color: #fff;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #007bff;
  font-size: 24px;
  line-height: 0;
}

#about .about-container .icon-box:hover .icon {
  background: #007bff;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about-vision .about-container, #about-vision .about-extra{
  margin: 0px 150px 0px 150px;
}

#about-vision .about-extra-vision{
  margin: 0px 150px 0px 135px;
}

#about .about-extra {
  padding-top: 60px;
}

.last-content-vision{
  margin-top: 50px;
}

.sub-text-color{
  color:#078CEB !important;
  font-weight: 700;
}

.people-para{
  color: #202020 !important;
  font-size: 24px !important;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

#about-vision {
  background: #f6fbff;
  padding: 120px 0 120px 0;
}
/* 
#about-vision .img-fluid{
  max-width: 100%;
  padding: 0px 10px;
  height: auto;
} */
/* 
#about-vision .float-end{
  text-align: right;
} */

#about-vision h4{
  margin-bottom: 30px;
}
.content-vision{
 padding: 5px 10px 12px 10px;
 text-align: justify;
}
.content-vision p{
  font-size: 17px;
}
.content-vision h4, .content-vision p{
  /* width: 50%; */
}



.border-right {
  border-right: 2px solid #C2C2C2;
  box-sizing: border-box;
  /* padding: 5px 0; */
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}


/* Services Section
--------------------------------*/
#services {
  padding: 90px 0 80px 0;
}

  #services .box {
    padding: 35px 15px 25px;
    position: relative;
    border-radius: 25px;
    margin-bottom:40px;
    background: #fff;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: 95%;
}

#services .box:hover {
  transform: translateY(-5px);
}

#services .icon {
  position: absolute;
  left: -15px;
  top: calc(50% - 32px);
}

#services .icon i {
  font-size: 64px;
  line-height: 0;
  transition: 0.5s;
}

#services .title {
  margin-left: 10px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 13px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #007bff;
}

#services .description {
  font-size: 12px;
  margin-left: 10px;
  line-height: 24px;
  margin-bottom: 0;
}



/* Portfolio Section
--------------------------------*/
#portfolio {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #007bff;
  border-radius: 50px;
  text-transform: uppercase;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #007bff;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #007bff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 36px;
  height: 36px;
  background: #007bff;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  font-size: 22px;
  color: #fff;
  line-height: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #3395ff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #003166;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #007bff;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #007bff;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(40, 61, 80, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
  overflow: hidden;
}

.about-image{
  width:88%;
}

.security-image{
  width:86%;
  margin-top: 65px;
}

.security-item{
  display: flex;
  align-items: center;
  background-color: transparent !important;
  border: none !important;
  /* width: 20%; */
}

.security-item .bi{
  padding-right: 10px;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #007bff;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #007bff;
}

/* Team Section
--------------------------------*/
#team {
  background: #fff;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

#team .member .member-info {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: 50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 62, 128, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.7);
}

#team .member .social a:hover {
  color: #fff;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 60px 0;
  /* box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1); */
}

.clients {
  /* padding: 5px 0; */
  padding: 0px 5%;
  /* box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1); */
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  width: 300px;
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #787878;
  overflow: hidden;
  /* background: #fff; */
  height: 130px;
}

}

.img-maximize{
  height: 60px !important;
}

#clients .client-logo:hover img {
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

.clients img {
  transition: all 0.4s ease-in-out;
}

/* Contact Section
--------------------------------*/
#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact-new {
  border-radius: 10px;
  background-color: #FFFFFF;
  width: 82%;
  margin: auto;
  box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 10%);
  padding: 60px 40px;
  overflow: hidden;
}

#career-new {
  border-radius: 10px;
  background-color: #FFFFFF;
  width: 82%;
  margin: auto;
  box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 10%);
  padding: 40px 40px;
  overflow: hidden;
}

.contact-row{
  margin-top: 2.3rem!important;
}

#contact-locations {
  border-radius: 10px;
  background-color: #FFFFFF;
  width: 82%;
  margin: auto;
  box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 10%);
  padding: 10px;
  /* padding: 60px 40px; */
  overflow: hidden;
  border-top: 7px solid #078CEB;
}

#carrer-locations {
  border-radius: 10px;
  background-color: #FFFFFF;
  width: 82%;
  margin: 10px auto;
  box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 10%);
  padding: 10px;
  /* padding: 60px 40px; */
  overflow: hidden;
  border-left: 7px solid #078CEB;
}

.apply {
  background: #21409A;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

.contact-space{
  padding: 10px 10px;
}

.business-address{
  margin: 0 0 20px 0;
  font-size: 18px;
}

.contact-addess h4{
  font-size: 26px;
  font-weight: 700 !important;
}

.section-header-people{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Sections Header
--------------------------------*/
.section-header-people h3 {
  font-size: 36px;
  color: #202020;
  text-align: center;
  font-weight: 700;
  position: relative;
}

.section-header-people h3.service {
  margin-top: 10px;
  margin-bottom: 35px;
}

.section-header-people p {
  text-align: center;
  margin: auto;
  font-size: 20px;
  padding-bottom: 5px;
  color: #556877;
  width: 75%;
}

.section-header-people p.sub-para{
  padding-bottom: 25px !important;
}

#why-us-contact{
  /* margin-top: 30px; */
}

.contact-addess-first{
  border-right: 3px solid #E0E0E0;
  padding-bottom: 10px;
}

.contact-first-color{
  color: #21409A !important;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007bff;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #007bff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #007bff;
}

#contact .social-links a:hover {
  background: #007bff;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #007bff;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
  border-color: #007bff;
}

#contact .php-email-form input {
  padding: 10px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

#contact .php-email-form button[type=submit] {
  background: #007bff;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#contact .php-email-form button[type=submit]:hover {
  background: #0067d5;
  cursor: pointer;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #21409A;
  /* padding: 0 0 30px 0; */
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #FFFFFF;
  color: #202020;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
  padding-left: 65px;
  justify-content: center;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #555555;
}

.carrer-post {
  font-size: 16px;
}

.footer-contact a{
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #C8E8FFCC;
    color: #21409A;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.career-post a{
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C8E8FFCC;
  color: #21409A;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}


.footer-contact{
  font-size: 16px;
  /* margin: 10px; */
  display: flex;
  align-items: center;
}

.main-contact a{
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C8E8FFCC;
  color: #21409A;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.main-contact{
  font-size: 18px;
}

.footer-sublist{
  margin-right: 30px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C8E8FFCC;
  color: #21409A;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a i {
  line-height: 0;
}

#footer .footer-top .social-links a:hover {
  background: #0067d5;
  color: #fff;
}

/* #footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #21409A;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  font-size: 16px;
} */

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type=email] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type=submit] {
  background: #007bff;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type=submit]:hover {
  background: #0062cc;
}

#footer .copyright {
  text-align: center;
  font-size: 14px;
  padding: 15px 10px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}

.btn-free-trail{
  background: #fff !important ;
  border: 2px solid #21409A!important;
  color: #21409A !important;
  padding: 10px 32px !important;
  margin: 10px 32px;
  border-radius: 50px;
}    



#services .icons{
  text-align: center;
  /* padding: 0px 10px; */
}

#services .icons i {
  font-size: 32px;
  line-height: 0;
  transition: 0.5s;
}

.service-first-last{
  margin-top: 125px;
}

.description-arrow{
  padding-top: 20px;
  margin: 0px;
}

.image-help-text{
  color: #202020;
  font-weight: 700;
  font-size: 20px;
}

.image-help-text .sub-text{
  color: #078CEB;
  font-weight: 600;
}

#our-services .description, .icon-box-new .description-new{
  color: #21409A;
  font-weight: 700;
}

p.description-new{
  margin: 0 !important;
}

.carerr-view-header {
  margin: auto;
  width: 82%;
  color: #fff;
}

.contact-header {
  margin: auto;
  width: 86%;
  margin-top: 3rem!important;
  margin-bottom: 1rem!important;
}

.career-header {
  margin: auto;
  width: 75%;
  margin-top: 3rem!important;
  margin-bottom: 1rem!important;
}
.career-header-second {
  margin: auto;
  width: 86%;
  margin-top: 3rem!important;
  margin-bottom: 1rem!important;
}

.contact-header h3 {
  font-size: 30px;
  color: #202020;
  font-weight: 700;
}

.career-header h3 {
  font-size: 30px;
  color: #202020;
  font-weight: 700;
}

.career-view-header p {
  font-size: 15px;
  padding-bottom: 5px;
  margin: 0 0 5px 0;
  padding-top: 5px;
}

.career-view-header h3 {
  font-weight: 700;
}

#about-us {
  background: #f6fbff;
  padding: 60px 0;
  color: #202020;
}

#about-security {
  background: #f6fbff;
  padding: 125px 0;
  color: #202020;
}

.about-one{
  margin: 10px 10px;
  padding: 0x 50px;
  width: 800px;
}


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




.icon-about{
  margin: 10px 0px;
}

.hero-image-info h4{
  color: #21409A;
}

.sub-section-about{
  margin: 10px;
}

.about-values{
  width: 75%;
  margin: auto;
}

.about-help-text{
  margin: 0px 60px;
}

.about-help-text p{
  text-align: justify;
  margin: 10px;
}

.about-para{
  margin: 30px 20px;
  width: 80%;
}

.about-para-first{
  margin: 30px 20px;
  width: 80%;
}

.security-para-first{
  width: 80%;
}


/* .row-eq-height {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display:  flex !important;
} */

.img-owner{
  max-width: 65%;
}

.d-flex-new, .d-flex-tablet{
  display: flex;
}

.leadership-team{
  padding: 10px 50px;
  margin: 5px;
}

.people-icon-radius{
  border-radius: 50% !important;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.team-list-item{
  background-color: #f6fbff !important;
  border: none !important;
  padding: 1px !important;
  font-family: 'Sketching Universe';
  font-size: 26px;
}

.people-white{
  background-color: #FFFFFF !important;
}

.hightlight-service{
  border: 2px solid #21409A;
}
.first-service-spacing{
  margin: 1.5rem!important;
  padding-right: 3rem!important;
  padding-left: 3rem!important;
}

.float-end-image{
  float: right;
}

.justify-content-end-tablet{
  justify-content: flex-end;
}

.justify-content-center-responsive{
  justify-content: center !important;
}

.btn-free-trail:hover{
  color: #fff !important;
  background-color: #21409A !important;
}

.mobile-row{
  --bs-gutter-x: 3.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: var(--bs-gutter-x);
  padding-left: var(--bs-gutter-x);
  margin-right: 2rem;
  margin-left: 2rem;
}

.form label{
  font-weight: 600;
}

.text-red{
  color: #FF4242 !important;
}

#contact-page .php-email-form button[type=submit]:hover {
  background: #21409A;
  cursor: pointer;
}

#contact-page .php-email-form button[type=submit] {
  background: #21409A;
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

.error {
  color: red;
}

/* file upload */
/* .files input {
  border: 2px dashed #92b0b3;
  outline-offset: -10px;
  -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
  transition: outline-offset .15s ease-in-out, background-color .15s linear;
  padding: 120px 0px 85px 35%;
  text-align: center !important;
  margin: 0;
  width: 100% !important;
}
.files input:focus{     outline: 2px dashed #92b0b3;  outline-offset: -10px;
  -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
  transition: outline-offset .15s ease-in-out, background-color .15s linear; border:1px solid #92b0b3;
}
.files{ position:relative}
.files:after {  pointer-events: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 50px;
  right: 0;
  height: 56px;
  content: "";
  background-image: url(https://image.flaticon.com/icons/png/128/109/109612.png);
  display: block;
  margin: 0 auto;
  background-size: 100%;
  background-repeat: no-repeat;
}
.color input{ background-color:#f1f1f1;}
.files:before {
  position: absolute;
  bottom: 10px;
  left: 0;  pointer-events: none;
  width: 100%;
  right: 0;
  height: 57px;
  content: " or drag it here. ";
  display: block;
  margin: 0 auto;
  color: #2ea591;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}
.files .form-control {
  border: 1px dotted #ced4da;
} */

.file-upload {
  background-color: #ffffff;
  /* width: 600px; */
  margin: 0 auto;
  /* padding: 20px; */
}

.file-upload-btn {
  width: 100%;
  margin: 0;
  color: #202020;
  background: #FFFFFF;
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 2px solid #717171;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.file-upload-btn:hover {
  background: #FFFFFF;
  color: #202020;
  transition: all .2s ease;
  cursor: pointer;
}

.file-upload-btn:active {
  border: 0;
  transition: all .2s ease;
}

.file-upload-content {
  display: none;
  text-align: center;
}

.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.image-upload-wrap {
  margin-top: 20px;
  border: 2px dashed #717171;
  position: relative;
}

.image-dropping,
.image-upload-wrap:hover {
  background-color: #FFFFFF;
  border: 2px dashed #717171;
}

.image-title-wrap {
  padding: 0 15px 15px 15px;
  color: #222;
}

.drag-text {
  text-align: center;
}

.drag-text h3 {
  font-weight: 100;
  /* text-transform: uppercase; */
  font-size: 20px;
  color: #000002;
  padding: 40px 0 10px 0;
  font-weight: 500;
}



.file-upload-image {
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
}

.remove-image {
  width: 200px;
  margin: 0;
  color: #fff;
  background: #cd4535;
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 4px solid #b02818;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.remove-image:hover {
  background: #c13b2a;
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.remove-image:active {
  border: 0;
  transition: all .2s ease;
}

.carrer-post a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C8E8FFCC;
  color: #21409A;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#carrer-locations a{
  color: #202020;
}

#carrer-locations a:hover{
  color: #007bff;
  text-decoration: underline;
}

.career-header-second li{
  margin-left: 20px;
}

/* end file upload */

@media (max-width: 767px) {
  #hero .hero-info h2 {
    font-size: 27px;
    margin-bottom: 30px;
  }
  #our-services{
    text-align: center;
  }
  .home-list {
      border-bottom: 2px solid #C2C2C2!important;
      border-right: none !important;
      padding: 0px 30px;
      height: 80px;
  }
  #our-services .text-end{
    text-align: center !important;
  }

  .client-logo{
    text-align: center;
    justify-content: space-between!important;
    align-items: center!important;
  }
  .section-header p {
    width: 100%;
  }
  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }
  #testimonials .testimonial-item {
    text-align: center;
  }
  .about-header{
    width: 100% !important;
  }
  .about-image{
    width:100% !important;
  }
  .about-para-first{
    margin: 30px 15px !important;
    width: auto !important;
    text-align: left;
    font-size: 17px;
  }
  .about-values h3 {
    text-align: left !important;
  }
  .about-help-text {
      margin: 0px !important;
  }
  .about-values {
    width: auto !important;
    margin-bottom: 10px;
  }
  .about-help-text p {
    margin: 10px 0px 30px 0px !important;
  }
  .about-extra {
    margin: 10px !important;
  }

  .about-extra-vision {
    margin: 20px 0px !important;
  }

  #about-vision .about-container, #about-vision .about-extra {
    margin: 0px;
  }

  #about-vision .about-container, #about-vision .about-extra{
    padding: 20px 0 15px 0;
  }

  .management-container {
    margin: 10px !important;
  }
  
  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
  .contact-header {
      margin: auto;
      width: 100%;
      /* margin-bottom: 100px; */
      margin-top: 2.3rem!important;
      margin-bottom: 1rem!important;
  }
  .contact-header p.sub-para{
    font-size: 22px;
  }
  #contact-page {
      padding: 90px 0 100px 0;
  }
  
  #contact-new {
    width: 100%; 
  }
  .mobile-row {
    width: 100%;
    padding: 0px;
    margin: 0px;
  }
  .mobile-form{
    margin-bottom: 2.3rem !important;
  }
  
  .contact-row{
    margin-top: 0px !important;
  }
  #contact-locations {
    width: 92%;
  }
  /* .contact-addesss {
    border-right: none !important;
    border-bottom: 3px solid #E0E0E0;
  } */

  .contact-addess-first{
    border-right: none !important;
    border-bottom: 3px solid #E0E0E0;
  }

  .iframe-map{
    height: 250px !important;
  }
  
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }

  .join-our-team h3{
    font-size: 23px !important;
  }
  .join-our-team .people-para{
    font-size: 19px !important;
  }

  .appointment-section {
      margin-top: 30px;
  }
}

@media (max-width: 991px) {
  /* .mobile-nav-toggle {
    display: block;
  } */

  /* .navbar ul {
    display: none;
  } */
  
  #header .logo h1 {
    font-size: 28px;
  }
  
  #footer .footer-top .footer-info {
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
  }
  
  #why-us .card {
    margin: 0;
  }
  
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

@media (min-width: 300px) and (max-width: 325px) {
  #hero {
    margin-top: 50px;
    background: url(../images/nhome-group.png) center top no-repeat;
    background-size: 68vh auto !important;
    padding: 58px 0 20px 0;
    height: 52vh !important;
    background-color: #ecf5ff;
  }
  #hero .hero-info h6 {
      margin-top: 80px !important;
  }
}

@media (min-width: 325px) and (max-width: 400px) {
  #hero {
    margin-top: 50px;
    background: url(../images/nhome-group.png) center top no-repeat;
    background-size: 50vh auto;
    padding: 58px 0 20px 0;
    height: 50vh !important;
    background-color: #ecf5ff;
  }
}

@media (min-width: 400px) and (max-width: 500px) {
  #hero {
    margin-top: 50px;
    background: url(../images/nhome-group.png) center top no-repeat;
    background-size: 68vh auto !important;
    padding: 58px 0 20px 0;
    height: 52vh !important;
    background-color: #ecf5ff;
  }
  #hero .hero-info h6 {
      margin-top: 140px !important;
  }
}

@media (min-width: 500px) and (max-width: 600px) {
  #hero {
    margin-top: 50px;
    background: url(../images/nhome-group.png) center top no-repeat;
    background-size: 80vh auto !important;
    padding: 15% 0 20px 0 !important;
    height: 58vh !important;
    background-color: #ecf5ff;
  }
  #hero .hero-info h6 {
      margin-top: 22% !important;
  }
  #hero-text {
    display: block;
    white-space: pre-wrap;
    line-break: strict !important;
    margin-top: 25px;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  #header .logo img {
      padding: 10px 0px !important;
      max-height: 70px !important;
  }

  .clients .client-logo {
    justify-content: center !important;
  }
  .first-service-spacing {
    margin: 0!important;
  }
  .service-first-last {
      margin-top: 10px;
  }
}

@media (min-width: 670px) and (max-width: 703px) {
  #header .logo img {
      padding: 10px 0px !important;
      max-height: 70px !important;
  }
  #hero {
    margin-top: 62px;
    background: url(../images/nhome-group.png) center top no-repeat;
    background-size: 90vh auto !important;
    padding: 115px 0 20px 0 !important;
    height: 57vh !important;
    background-color: #ecf5ff;
  }
  #header {
    height: 75px;
  }
}

@media (min-width: 703px) and (max-width: 739px) {
  #header .logo img {
      padding: 10px 0px !important;
      max-height: 70px !important;
  }
  
  #header {
    height: 75px;
  }
}

@media (min-width: 739px) and (max-width: 767px) {
  #header .logo img {
      padding: 10px 0px !important;
      max-height: 70px !important;
  }
 
  #header {
    height: 75px;
  }
}

@media (min-width: 768px) and (max-width: 770px) {
  #header .logo img {
      padding: 10px 0px !important;
      max-height: 70px !important;
  }
  #header {
    height: 75px;
  }
  
}



@media (min-width: 771px) and (max-width: 800px) {
  #header .logo img {
      padding: 10px 0px !important;
      max-height: 70px !important;
  }
  #header {
    height: 75px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .home-list {
    border-right: none !important;
    border-right-width: initial;
    border-right-style: none;
    border-right-color: initial;
  }
  
  .home-list-border {
    margin-bottom: 20px  !important;
    border-bottom: 2px solid #C2C2C2!important;
    height: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #our-services {
    text-align: center;
  }

  .service-text{
    display: block!important;
  }
  #our-services .text-end{
    text-align: center !important;
  }
  
  .service-first-last {
    margin-top: 0px;
  }
  #services .title {
    font-size: 15px;
  }
  #services .description {
    font-size: 14px;
  }
  .d-md-tab-flex{
    display: flex !important;
  }
  
  .about-para-first{
    margin: 10px 20px !important;
    width: auto !important;
  }
  #about-us p.sub-heading {
    width: 96%;
  }
  .about-image {
    width: 95%;
  } 
  .about-header {
    margin: auto;
    width: 90%;
  }

  .d-flex-tablet{
    display: block !important;
  }
  .about-values {
      width: 97%;
      margin: auto;
  }

  .about-values h3{
    text-align: left !important;
  }
  .about-help-text{
    margin: 0px !important;
  }
  .sub-section-about {
    margin: 10px 10px 25px 0px !important;
  }
  .justify-content-end-tablet{
    justify-content: flex-start!important;
  }
  .img-right-owner{
    margin-left: 100px;
  }

  .people-icon-radius{
    justify-content: center !important;
  }

  /* .join-our-team h3{
    font-size: 23px !important;
  } */
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .home-list{
    border: none !important;
  }
  
  .sub-header-column{
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 1600px){
  #hero {
    height: 70vh;
    padding: 12% 0 120px 0;
    font-size: 1.5rem;
  }

  .hero-info h6 {
    font-size: 1.5rem;
  }
  
  
  #hero .hero-info .btn-get-started, #hero .hero-info .btn-services {
    font-size: 25px;
  }
  #hero .hero-info .btn-get-started, #hero .hero-info .btn-services {
    font-size: 1.5rem;
  }
  .btn-services {
    font-size: 25px;
  }
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  p > justify-content-center {
    justify-content: space-between!important;
  }

  #head-container{
    justify-content: space-between!important;
  }


  #about-us p.sub-heading {
    margin: 0px 10px 0px 25px;
    text-align: left;
    width: auto !important;
    padding-top: 5px;
      /* text-align: justify;
      margin: 15px;
      font-size: 18px;
      padding-bottom: 60px;
      width: 90%; */
  }

  #footer .footer-top .footer-info, #footer .footer-top .footer-links {
      /* margin: 0px 53px 30px 152px; */
  }

  #footer .footer-top .footer-info {
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .service-calenly{
    padding-bottom: 80px;
  }

  .about-para{
    margin: 20px auto ;
    text-align: justify;
    width: 70%;
  }

  .ind-card{
    margin: 0px 20%;
  }

  .heading-people-content{
    margin: 0px 10px;
    padding: 5px;
  }

  .fw-bold{
    font-weight: 700 !important;
  }

  .leadership-team {
      padding: 0px !important;
      margin: 5px;
  }
  #hero {
    margin-top: 43px;
    background: url(../images/nhome-group.png) center top no-repeat;
    background-size: 58vh auto;
    padding: 15% 0 20px 0;
    height: 60vh;
    background-color: #ecf5ff;
  }
  #hero .hero-info h2 {
    font-size: 22px;
  }
  #hero .hero-info h6 {
    margin-top: 80px;
  }

  #hero .hero-info .btn-get-started, #hero .hero-info .btn-services {
      margin: 0px;
  }
  .hightlight-service{
    border: none !important;
  }
  .service-first-last {
    margin-top: 0px;
  }
  .first-service-spacing{
    margin: 1rem!important;
    padding: 1rem!important;
    /* padding-left: 3rem!important; */
  }

  #services .box {
      padding: 35px 15px 25px;
      margin: 20px 0px;
  }

  .clients .client-logo {
      margin: 10px 0px;
      border: 1.5px solid #787878;
  }
  .section-header h3, .section-header h2, .section-header h1 {
    font-size: 28px;
  }
  
  .join-our-team h3{
    font-size: 23px !important;
  }
  .section-header p {
    font-size: 14px;
  }
  .calendly-inline-widget{
    height: 1150px !important;
  }

  .float-end-image{
    float: center !important;
    margin: 0px 10px;
  }

  .img-owner {
      max-width: 95%;
  }

  .img-left-owner, .img-right-owner{
    margin-left: 1%;
  }
  .icons img {
      margin-bottom: 20px;
  }
}

@media screen and (min-width:400px) and (max-width:900px) {
  .ind-card{
    margin: 0px 20%;
  }
  .calendly-inline-widget{
    height: 1150px !important;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .justify-content-center {
    justify-content: center!important;
  }

}
/***clients start here**/
.clients{
  padding: 100px 0px;
}
.client-logo{
  background: #FFFFFF;
  border: 1.5px solid #787878;
  border-radius: 10px;
  margin: 20px 14px;
  padding: 18px 45px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.client-logo img{
  width:100%;
  height:100px;
  object-fit: contain;
}
#why-us {
  padding: 60px 0;
  background: #21409A;
}

#why-us .section-header h3, #why-us .section-header h1
 {
  color: #fff;
}

#why-us .sub-para{
  font-size:24px;
  line-height:40px;
  font-weight: 500;
  color:#fff;
  padding: 0;
  margin: 0;
  text-align: center;
}
#why-us .sub_para{
  padding: 0 5px 50px;
}

#why-us .card {
  background: #FFFFFF;
  border-color: #FFFFFF;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #202020;
  transition: 0.3s ease-in-out;
  /* height: 100%; */
}

#why-us .card:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}

#why-us .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #078CEB;
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#why-us .card p {
  font-size: 15px;
  color: #202020;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #00458f solid 2px;
}

#why-us .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}
.cmt-13{
  margin-top:150px;
}
#footer .footer-top h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 25px;
  color: #21409A;
  text-transform: uppercase;
}
.footer-links ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li{
  line-height: 40px;
}
.footer-links ul li a{
  font-size: 16px;
  line-height: 20px;
  color:#202020;
  font-weight: 500;
  padding: 0;
  margin: 0;
  transition: .3s all ease-in-out;
}
.footer-links ul li a:hover{
  padding-left: 5px;
  color: #003e8b;
  transition: color .3s all ease-in-out;
}
.right_border{
  position: relative;
}
.right_border::after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    border-right: 1px solid #C2C2C2;
    transform: translateY(-50%);
    width: 100%;
    height: 50px;
}
.icon-box-new {
  text-align: center;
}
.cmt-5{
  margin-top: 50px;
}
.service_wrap.actives{
  border: 2px solid #21409A;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.08);
}
.b_lines{
  border-bottom: 6px solid rgba(7, 140, 235, 0.3);
  border-radius: 2px;
}
/**about us**/
.about-header h3, .about-header h2{
    font-size:40px;
    line-height:60px;
    color:#fff;
    font-weight: 700;
    padding: 0 0 30px;
    margin: 0;
}

.about-header p{
  font-size:28px;
  line-height:60px;
  color:#fff;
  font-weight: 600;
  padding: 0 0 0px;
  margin: 0;
}
.about_section{
  padding: 150px 0px 100px;
  background: #F6FBFF;
}
.second_section{
  padding: 100px 0px 50px;
}
.about_sections{
  width:82%;
}
.about_sections h3,.second_section h3{
  font-size: 20px;
  line-height: 42px;
  font-weight: 500;
  color:#202020;
  padding: 0;
  margin: 0;
}
#iso_sec_wrap{
  padding: 0px 0px 150px;
  background: #F6FBFF;
}

.iso_section {
  width: 100%;
  height: 100%;
  background-image: url("../images/ISO-Bg.png");
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 75px 75px;
}
/* .iso-text-wrap h3{
  font-size: 28px;
  line-height: 48px;
  font-weight: 700;
  color:#21409A;
  text-align: center;
  padding: 0;
  margin: 0;
} */
.iso-text-wrap h1 {
  font-size: 28px;
  line-height: 48px;
  font-weight: 700;
  color: #21409A;
  text-align: center;
  padding: 0;
  margin: 0;
}
.ourvalues h3{
  font-size: 40px;
  line-height: 60px;
  font-weight: 700;
  color:#fff;
  text-align: center;
  padding: 0;
  margin: 0;
}
.ourvalues p{
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
  color:#fff;
  padding: 0;
  margin: 0 auto;
  width: 80%;
}
.why-us{
  padding: 75px 0px;
  background: #21409A;
}
.cmb-7{
  margin: 0 0 70px;
}
.why-us .card{
  padding: 45px 0px;
  background: #FFFFFF;
  border-radius: 20px;
  text-align: center;
  height:100%;
  transition:cubic-bezier(0.175, 0.885, 0.32, 1.275)
}
.why-us .card:hover{
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.6);
  transition:cubic-bezier(0.175, 0.885, 0.32, 1.275)
}
.icons img{
  width:60px;
  height:auto;
  object-fit: contain;
  margin-bottom: 10px;
}
.why-us .card-body{
  padding: 0px 10px !important;
}
.card-body .card-text{
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  color:#202020;
  padding: 0;
  margin: 0;
}
.our_vission p, .data_security p, .data_securitys ul li, .services_wrap ul li, .services_wrap p{
  font-size: 20px;
  line-height: 44px;
  color:#202020;
  font-weight: 500;
  padding: 0;
  margin: 0;
}
.services_wrap ul li, .services_wrap p, .data_security p, .data_securitys ul li{
  font-weight: 400;
}
.data_security{
  width: 95%;
  margin:0 auto;
}
.data_securitys{
  width: 100%;
  margin:0 auto;
}
.data-security-image img{
  width: 95%;
}
.data_security p{
  line-height: 40px;
  padding: 0px 0px 20px;
}
.data_securitys ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.services_wrap ul{
  list-style: square;
  padding: 0px 25px;
}
.services_wrap ul li, .services_wrap p{
  line-height: 40px;
}
.services_wrap p{
  margin-bottom: 10px;
}
.data_securitys ul li{
  line-height: 40px;
  display: flex;
  margin-bottom: 20px;
}
.data_securitys ul li:before{
    content: "\f272";
    display: inline-block;
    font-family: bootstrap-icons !important;
    margin-right: 15px;
    font-size: 24px;
    color:#21409A;
    font-weight: 700;
}
p.cmbdata_security{
  padding: 0px 0px 50px;
}
.our_vission_head h4{
  font-size: 20px;
  line-height: 30px;
  color:#202020;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.our_vission_head h4 span{
  display: block;
  font-size: 40px;
  line-height: 60px;
  color:#078CEB;
  font-weight: 700;
  padding: 0;
  margin: 0;
}
.text_rights{
  text-align: right !important;
}
.left_box{
  background: #078CEB;
  width:250px;
  height:80px;
  border-radius: 0px;
  float: right;
}
.right_box{
  background: #21409A;
  width:250px;
  height:80px;
  border-radius: 0px;
}
.pr-0{
  padding-right: 0px !important;
}
.pl-0{
  padding-left: 0px !important;
}
/**management**/
.people-info h4, .sub-heading h3{
  font-size:28px;
  line-height: 40px;
  font-weight: 600;
  color:#202020;
  text-align: center;
  padding: 0;
  margin: 0;
}
.people-info h5{
  font-size: 20px;
  line-height: 50px;
  font-weight: 600;
  color: #202020;
  text-align: center;
  padding: 0 0 20px;
  margin: 0;
}
span.crown {
  position: relative;
  top: -30px;
  left: -10px;
}
ul.social-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 0 35px;
}
ul.social-links li {
  padding: 5px 10px;
  background: #21409A;
  border-radius: 5px;
  margin: 0 15px;
}
ul.social-links li a{
  border-right: 0px !important;
}
ul.social-links a{
  border-right:2.5px solid #202020;
  height: 35px;
}
.manange_info{
  padding: 30px 15px;
  border-style: solid;
  border-width: 2px 2px 2px 10px;
  border-color: #202020 #202020 #202020 #21409A;
  border-radius: 5px 30px 3px;
}
.manange_info p{  
  font-size: 20px;
  font-weight: 500;
  line-height: 44px;
  text-align: center;
  color: #202020;
  padding: 0;
  margin: 0;
}
.people-management{
  padding: 140px 0px 320px;
  background: #F6FBFF;
  position: relative;
}
.people-management-two{
  padding: 100px 0px 320px;
  background:#fff;
  position: relative;
}
.people-management-third{
  padding: 100px 0px 320px;
  background:#F6FBFF;
  position: relative;
}
.people-management-four{
  padding: 100px 0px 320px;
  background:#fff;
  position: relative;
}
.people-management-five{
  padding: 100px 0px;
  background:#F6FBFF;
  position: relative;
}
.people-management::after{
   content: '';
    position: absolute;
    bottom: -18%;
    transform: translateY(18%);
    right: 0;
    width: 100%;
    height: 350px;
    background-color: #fff;
    transform: skewY(9deg);
}
.people-management-two::after{
  content: '';
    position: absolute;
    bottom: -18%;
    transform: translateY(18%);
    right: 0;
    width: 100%;
    height: 350px;
    background-color: #F6FBFF;
    transform: skewY(9deg);
}
.people-management-third::after{
  content: '';
   position: absolute;
   bottom: -21%;
   transform: translateY(21%);
   right: 0;
   width: 100%;
   height: 350px;
   background-color: #fff;
   transform: skewY(-9deg);
}
.people-management-four::after{
  content: '';
    position: absolute;
    bottom: -18%;
    transform: translateY(18%);
    right: 0;
    width: 100%;
    height: 350px;
    background-color: #F6FBFF;
    transform: skewY(-9deg);
}
.weare-happy{
  padding: 50px 0px 100px;
  background: #F6FBFF;
}
/**ourteam**/
.ourteam{
  padding: 150px 0px 100px;
  background: #F6FBFF;
}
.ourteam .container-fluid{
  padding: 0px 100px;
}
.ourteam_second{
  background: #F6FBFF;
}
.heading-people-content h3, .leadership_head h3, .heading-people-content h2, .leadership_head h2, .services_wrap h3{
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: #202020;
  padding: 0;
  margin: 0 0 30px;
}
.services_wrap h3{
  margin:0 0 0px;
  color:#078CEB;
  font-weight: 500;
}
.heading-people-content h3 span, .leadership_head h3 span, .heading-people-content h2 span, .leadership_head h2 span{
  color:#078CEB;
}
.heading-people-content p, .leadership_head p{
  font-size: 20px;
  font-weight: 500;
  line-height: 44px;
  text-align: left;
  color: #202020;
  padding: 0 25px 40px 0px;
  margin: 0;
}

.leadership_head p{
  font-size: 20px;
  font-weight: 500;
  line-height: 44px;
  text-align: left;
  color: #202020;
  padding: 0;
  margin: 0;
  width:95%
}
.together{
  padding:150px 0px 100px;
  background: #F6FBFF;
}
.together_head{
  position: relative;
}
.together_head h3 {
  font-size: 64px;
  font-weight: 700;
  line-height: 80px;
  color: #202020;
  text-align: center;
  padding: 0;
  margin: 0 0 30px;
}
.together_head h3 span{
  color:#078CEB;
}
.together_head::before{
  content:'';
  position: absolute;
  top:50%;
  left:12%;
  width: 120px;
  height:130px;
  transform: translate(-12%,-50%);
  background: url('../../assets/images/together-before.png') no-repeat;
}
.together_head::after{
  content:'';
  position: absolute;
  top:50%;
  right:10%;
  width:140px;
  height: 230px;
  transform: translate(-10%,-50%);
  background: url('../../assets/images/together-after.png') no-repeat;
}
.leadership_tolead{
  display: flex;
  align-items: center;
}
.leadership_lead_after{
  font-family: 'Sketching Universe';
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  color:#202020;
  padding: 0;
  margin: 0;
}
.leadership_lead_before{
  width: 80px;
  height: 80px;
  background: #21409A;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#fff;
  font-size:40px;
  font-weight: 700;
}
.pl-2{
  padding-left: 25px;
}
.teammate{
  padding: 100px 0px;
  background: #F6FBFF;
}
.joinasteam{
  padding: 60px 0px;
  text-align: center;
  background: #fff;
}
.joinasteam_wrap h3{
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  color: #21409A;
  padding: 0 0 10px;
  margin: 0 ;
}
.joinasteam_wrap p{
  font-size: 40px;
  font-weight: 500;
  line-height: 60px;
  color: #202020;
  padding: 0;
  margin: 0 auto 50px;
  width: 60%;
}
.web{
  display: block
}
.mobile_view{
  display: none
}
.wehelp{
  background: #fff;
  padding:0 0 30px;
}

#why-us .section-header h1 {
  color: #fff;
}

@media (max-width: 1440px){
  .section-header h1 {
    font-size: 32px !important;
    line-height: 50px !important;
  }
}

.section-header h1 {
  font-size: 40px;
  line-height: 80px;
  color: #202020;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.facebook-tracker{
  display: none;
}

.head-flex{
  display: flex !important; justify-content: space-between;
}

.sub-color{
  color: #078CEB;
}

.owl-service-color{
  color:#21409A;
}

.margin-top-60{
  margin-top: 60px;
}

.sage-tool{
  height:70px !important;
}

.calendly-inline-widget{
  position: relative;
  min-width:320px;
  height:630px;
}

.margin-left-5{
  margin-left: 5px;
}

.margin-left-2{
  margin-left: 2px;
}

.footer-contact-mail{
  color: #ff689b;
}

@media screen and (min-width:1200px) and (max-width:1370px) {
  .icons img{
    margin-bottom: 0px !important;
  }

  #services .box {
    padding: 20px 15px 15px;
  }
}
/**blog **/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;900&display=swap');
.blog_wrapp{
  padding: 125px 0px;
}
.breadcrumb{
  align-items: baseline !important;
}
.breadcrumb-item a, .breadcrumb-item.active{
  font-family: 'Poppins', sans-serif;
  color:#3C3C3C;
  font-size:14px;
  line-height: 22px;
  font-weight: 700;
}
.blog_wrapp .breadcrumb-item.active{
  color:#9B9B9B !important;
}
.breadcrumb-item+.breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, ">");
}
.blog_head_inline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.blog_head_inline h3{
  font-family: 'Poppins', sans-serif;
  color:#3C3C3C;
  font-size:30px;
  line-height: 45px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}
.blog_head_inline .form-control{
  height:42px;
  border-radius: 4px;
  box-shadow: 0px 0px 8px 0px #0000001F;
  padding: 0px 10px 0px 40px ;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}
.search_icon{
  position: relative;
  width:30%;
}
.search_pos{
  position: absolute;
  top:50%;
  left:15px;
  transform: translateY(-50%);
}
.search_icon::-webkit-input-placeholder{
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}
.blog_wrapp img{
  border-radius: 5px;
}
.blog_text_wrap{
  padding: 0px 35px;
}
.blog-tagline{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0px 20px;
}
.blog-tagline h3, .related_articles h3{
  font-family: 'Poppins', sans-serif;
  color:#3C3C3C;
  font-size:16px;
  line-height: 26px;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.related_articles h3{
  font-weight: 700;
  padding: 0 0 15px;
}
.blog-tagline h3 span{
  color: #078CEB;
}
.blog_text_wrap h4{
  font-family: 'Poppins', sans-serif;
  color:#3C3C3C;
  font-size:24px;
  line-height: 36px;
  font-weight: 600;
  padding: 0 0 20px;
  margin: 0;
}
.blog_text_wrap p, .each_blog_textwrap h3, .related_articles p{
  font-family: 'Poppins', sans-serif;
  color: #3C3C3C;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  padding: 0 0 30px;
  margin: 0;
  width: 82%;
}
.related_articles p{
  width: 100%;
  padding: 0px;
}
.related_articles p span{
  display: block;
  text-align: right;
  color:#9A9A9A;
  font-size:12px;
  line-height: 18px;
  padding: 15px 0px 0px;
}
.blog_text_wrap small, .each_blog_textwrap h5{
  font-family: 'Poppins', sans-serif;
  color: #3C3C3C;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  padding: 0px;
  margin: 0;
}
.each_blog_textwrap h5{
  color:#9A9A9A;
}
.each_blog_textwrap h5 span{
  display: block;
}
.tagline_hr{
  margin:3rem 0rem;
}
.each_blog_wrap{
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  /* display: flex; */
  align-items: center;
  flex-direction: column;
}

.each_blog_wrap img{
  border-radius: 5px 5px 0px 0px;
}
.each_blog_textwrap{
  border-radius: 0 0 5px 5px;
}
.each_blog_textwrap{
  background: #fff;
  padding: 20px;
}
.each_blog_textwrap h3{
  font-weight: 600;
  padding: 0 0 20px;
  width: 90%;
}
.blog-author-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.related_articles{
  padding: 0px 20px;
}
.request_quote{
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  padding: 20px;
  width: 90%;
}
.request_quote label, .subscribe_form label{
  font-family: 'Poppins', sans-serif;
  color: #3C3C3C;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  padding: 0px 0px 5px;
}
.request_quote .search_icons .form-control{
  padding: 0px 10px 0px 35px;
  height:42px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color:#7B7B7B;
  border: 1px solid #A7A7A7;
  border-radius: 3px;  
}
.request_quote .form-control, .subscribe_form .form-control{
  padding: 0px 10px;
  height:42px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color:#7B7B7B;
  border: 1px solid rgb(167, 167, 167);
  border-radius: 3px;
}
.request_quote .form-control:focus , .subscribe_form .form-control .form-control:focus{
  color: #7B7B7B;
  outline: 0;
  border-color: transparent;
  box-shadow:0 0 0 0.25rem rgb(167 167 167 / 40%) !important;
}
.required{
  color:#EC002A;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}
.search_icons{
  position: relative;
}
.search_icon_pos{
  position: absolute;
  top:60%;
  left:5%;
  transform:translate(-5%,-60%)
}
.download_quote, .subscribe_btn{
  padding: 15px;
  background: #21409A !important;
  border:1px solid #21409A !important;
  border-radius: 44px;
  font-size:14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  width: 100%;
  display: block;
  text-align: center;
  transition: background .25s all ease-in-out;
}
.subscribe_btn{
  background: #EFEFEF;
  border:1px solid #EFEFEF;
  color:#3C3C3C;
}
.download_quote:hover, .subscribe_btn:hover{
  background: #fff;
  color:#fff !important;
  transition: box-shadow .25s all ease-in-out;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
.subscribe_btn:hover{
  color:#3C3C3C;
}
.related_articles h4, .shared_blog h3, .subscribe_form h3{
  font-family: 'Poppins', sans-serif;
  color: #3C3C3C;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding: 0px 0px 20px;
  margin: 0;
}
.related_articles ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.related_articles ul li{
  
  border:.5px solid #7B7B7B;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  color: #7B7B7B;
  padding: 10px 20px;
}
.related_articles ul li.active{
  background: #EBEBEB;
}
.related_articles ul li a{
  color: #7B7B7B;
}
.shared_blog ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}
/**blog details**/
.blog_detail_text_wrap{
  padding: 40px 0px 10px;
  width: 95%;
}
.blog_detail_text_wrap  h5,.blog_detail_text_wrap h4 {
  font-family: 'Poppins', sans-serif;
  color:#9B9B9B;
  font-size:14px;
  line-height: 21px;
  font-weight: 500;
  /* padding: 0 0 5px; */
  margin: 0;
}
.blog_detail_text_wrap h4 span{
  display: block;
}
.blog_detail_text_wrap h3, .more_related_article h3{
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  color: #3C3C3C;
  padding: 0 0 5px;
  margin: 0;
}
.blog_detail_text_wrap h1, .more_related_article h1{
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  color: #3C3C3C;
  padding: 0 0 20px;
  margin: 0;
}
.blog_detail_text_wrap p, .secondary_text p, .secondary_text ul li,  ul.numbers li{
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  color: #3C3C3C;
  padding: 0 0 15px;
  margin: 0;
}
.blog_detail_text_wrap p{
  padding-top: 10px;
  margin: 0;
}
.secondary_text ul,  ul.numbers{ 
  margin: 0;
}
 ul.numbers{  
  list-style:decimal;
}
.blog_detail_text_wrap .secondary_text h3{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  color: #3C3C3C;
  padding: 0 0 10px;
  margin: 0;
}
.author_image{
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(84, 230, 212,.6);
  font-size:20px;
  color:#5254F1;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.author_details{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.subscribe_form{
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 12%);
  border-radius: 5px;
  padding: 20px;
  width: 100%;
}
.subscribe_form h3{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  color: #3C3C3C;
  padding: 0 0 10px;
  margin: 0;
}

#blog_prev_next{
  padding: 60px 0px 0;
}

.blog-pagination .pagination{
  border:0px !important;
}
.custom-pagination{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-pagination .page-item {
  padding: 5px 10px;
}
.custom-pagination  .page-link{
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3C3C3C;
  padding: 0px;
  margin: 0;
}
.custom-pagination  .page-link.active{
  background: rgb(84, 230, 212,.6);
  border-radius: 100%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post_direction{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post_direction a{
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  font-size:14px;
  line-height: 21px;
  color: #3C3C3C;
  font-weight: 600;
  padding: 0;
  margin-bottom: 20px;
}
.post_direction a:hover{
  text-decoration: underline;
}
.post_previous{
  padding-right: 20px;
}
.post_next{
  padding-left: 20px;
}
.service_image img{
  mix-blend-mode: darken;

}
.services_link a.nav-link.active , .services_link a.nav-link{
    width: 120px;
    height: 120px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    outline: 1px solid #BFBFBF;
    outline-offset: -8px;
    font-size: 12px;
    text-align: center;
}
.services_link a.nav-link{
  background:#f4f4f4;
  color: #8e8e8e;
  box-shadow: 2px 2px 10px 1px #cbcbcb;
}
.services_link a.nav-link img{
  width: 40px;
  height: 30px;
  object-fit: cover;
  margin-bottom: 10px;
}
.services_link .nav-pills>li:not(:first-child) {
  float: left;
  padding: 0 10px 20px;
}
.services_wrap{
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  padding: 20px;
  width: 98%;
  margin: 0 auto;
  height: 100%;
}
.services_wrap img{
  width: 40px;
  height: 35px;
  object-fit: contain;
}
.pl-15{
  padding-left: 15px;
}
.services_link .nav.nav-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#about-security .heading-people-content p{
  text-align: center !important;
}
ul.alpha_num{
  list-style: lower-alpha;
}
.services_link .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #ffffff;
  background-color: #003e8b;
}
.service_image{
  text-align: center;
  margin: 0 auto;
}

.sc_tab_head {
  font-weight: 700;
  font-size: 19px !important;
}
.navigation li a.active, .sc_tab_head {
  color: #3c3c3c!important;
  font-weight: 700;
}

.accordion-header button {
  background: #fff;
  color: #3c3c3c!important;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}
.accordion-button:not(.collapsed) {
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(var(--bs-accordion-border-width)*-1) 0 var(--bs-accordion-border-color);
  color: var(--bs-accordion-active-color);
}
.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}
.accordion-body, .accordion-button, .accordion-header, .collapsed {
  background: #fff;
}
.blog_details_page .blog-author.bottom {
  background: #fff;
  border-radius: 20px;
  color: #030E1F;
  padding: 30px;
}
.blog_details_page .blog-author {
  margin: 0;
}
.blog_details_page .blog-author.bottom {
  background: #fff;
  border-radius: 20px;
  color: #030E1F;
  padding: 30px;
}
.blog_details_page .blog-author .media {
  border: none;
}
.blog_details_page .widget-category h5, .blog_details_page .blog-author h5 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
  display: block;
  color: inherit;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  text-rendering: optimizelegibility;
}
.text_wrap {
  color: #030E1F;
  font-family: "Montserrat", sans-serif !important;
}

.blog_details_page .blog-author .media .text_wrap {
  color: #2e2e38;
}
.blog_details_page .blog-author .media .media-heading {
  display: inline-block;
}
.blog_details_page .blog-author.bottom .media .text_wrap {
  color: #030E1F;
  font-family: "Montserrat", sans-serif !important;
}
.blog_details_page .blog-author .media .media-heading h3 {
  /* float: left; */
  /* display: inline-block; */
  margin: 0;
  text-transform: capitalize;
  font-size: 18px;
  color: inherit;
  font-weight: 700;
  line-height: 27px;
  font-family: "Montserrat", sans-serif;
  text-rendering: optimizelegibility;
}
.blog_details_page .widget-category h5:after, .blog_details_page .blog-author h5:after {
  display: block;
  content: '';
  width: 150px;
  margin: 5px 0;
  border-bottom: 1px solid #ed5f34;
}
.blog_details_page .blog-author .images_wrap {
  margin-bottom: 10px;
  height: auto;
}
.blog_details_page .blog-author .images_wrap a {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  display: inline-block;
}
.blog_details_page .blog-author .images_wrap img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.images_wrap img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}
.author-social.author-social-bottom.text-left {
  margin-bottom: 15px;
}
.author-social .st-custom-button {
  display: inline-block;
}
.blog_details_page .author-social.author-social-bottom a {
  width: 150px;
}
.blog_details_page .author-social a {
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 5px;
  margin-left: 0px;
  margin-right: 20px;
  color: #FFF;
  background-color: #0A66C2;
}
.blog_details_page .blog-author .media .media-heading .job_title {
  /* float: left; */
  color: #030e1f80;
  /* padding-left: 15px; */
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.shared_blog img{
  width: 22px;
}

.alert-box {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
/* #faq .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
} */

@media (max-width: 991px) {
  .blog-author-mobile .text-left{
    text-align: center !important;
  }
 
  .blog_details_page .widget-category h5:after, .blog_details_page .blog-author h5:after {
    width: auto !important;
  }
  .blog_details_page .blog-author .media .media-heading {
    display: block;
  } 
  .media-heading {  
    text-align: center;
  }
  .blog_details_page .blog-author .images_wrap a {
      width: 100%;
      border-radius: 100%;
      display: flex;
      justify-content: center;
     
  }
  .blog_details_page .blog-author .images_wrap img {
    /* height: 100%; */
    width: 150px;
  }
  .blog_details_page .author-social a{
    margin-right: 0 !important;
  }
  
  .blog_details_page .blog-author.bottom {
    background: #f6fbff;
  }
  .accordion-body, .accordion-button, .accordion-header, .collapsed {
    background: #f6fbff;
  }
  .accordion-header button {
    background: #f6fbff;
  }

  .download_qt {
      align-items: center;
      bottom: 20px;
      display: flex !important;
      justify-content: center;
      position: fixed;
      right: 0;
      z-index: 9;
  }
  .c1_c1_btn {
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      line-height: 21px;
      text-align: center;
  }

  .c1_c1_btn {
      background: #21409A !important;
      border: none;
      border-radius: 25px!important;
      height: 50px;
      width: 175px;
  }
}