/* Common */
@font-face {
  font-family: 'neue-haas-grotesk';
  src: url(../../assets/fonts/neue-haas-grotesk/NHaasGroteskTXPro-55Rg.ttf);
}

@font-face {
  font-family: 'neue-haas-grotesk';
  src: url(../../assets/fonts/neue-haas-grotesk/NHaasGroteskTXPro-65Md.ttf);
  font-weight: 600;
}

@font-face {
  font-family: 'neue-haas-grotesk';
  src: url(../../assets/fonts/neue-haas-grotesk/NHaasGroteskTXPro-75Bd.ttf);
  font-weight: 900;
}

@font-face {
  font-family: 'BwStretch';
  src: url(../../assets/fonts/bw/BwStretch-Thin.otf);
  font-weight: 100;
}

@font-face {
  font-family: 'BwStretch';
  src: url(../../assets/fonts/bw/BwStretch-Light.otf);
  font-weight: 200;
}

@font-face {
  font-family: 'BwStretch';
  src: url(../../assets/fonts/bw/BwStretch-Regular.otf);
  font-weight: 300;
}

@font-face {
  font-family: 'BwStretch';
  src: url(../../assets/fonts/bw/BwStretch-Medium.otf);
  font-weight: 400;
}

@font-face {
  font-family: 'BwStretch';
  src: url(../../assets/fonts/bw/BwStretch-Bold.otf);
  font-weight: 600;
}

@font-face {
  font-family: 'BwStretch';
  src: url(../../assets/fonts/bw/BwStretch-Black.otf);
  font-weight: 700;
}

@font-face {
  font-family: 'BwStretch';
  src: url(../../assets/fonts/bw/BwStretch-Heavy.otf);
  font-weight: 900;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  /* font-family: 'Poppins', sans-serif; */
  font-family: 'neue-haas-grotesk';
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button:focus {
  outline: none !important;
  outline: none !important;
}

a:hover {
  text-decoration: unset !important;
  text-decoration: none !important;
}

.bg-span {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.bg-span1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: transparent;
  background-image: linear-gradient(330deg, rgba(192, 0, 0, 0.4) 0%, rgba(255, 111, 13, 0.1) 100%);
}

.commn-cls {
  position: relative;
  float: left;
  width: 100%;
}

/* Loader */
.progress {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #eceff7;
  border-radius: 0;
}

.bar {
  background-color: #2768fe;
  width: 0%;
  height: 5px;
  border-radius: 3px;
}

.loading h1 {
  text-transform: uppercase;
  font-size: 20px;
  color: #2768fe;
  margin-top: 17px;
  font-weight: 700;
  font-family: BwStretch;
  letter-spacing: 1px;
}

.loading {
  position: absolute;
  right: 0;
  font-size: 40px;
  left: 0;
  text-align: center;
  top: 40%;
}

.loading img {
  display: inline-block;
  width: 70px;
  height: 70px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
  }
}

@-moz-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-30px);
  }

  60% {
    -moz-transform: translateY(-15px);
  }
}

@-o-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
  }

  40% {
    -o-transform: translateY(-30px);
  }

  60% {
    -o-transform: translateY(-15px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

/* To Top */
.back-to-top,
.back-to-top:hover {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
  background-color: #113e96;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 8px;
  z-index: 100;
}

.owl-carousel .owl-item img {
  border-radius: 0;
  width: 100%;
  height: auto;
}

/* Header */
#mainNavi {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

/* #mainNavi {
  border-bottom: 1px solid transparent;
  background-color: #ffff;
} */
#mainNavi {
  transition: background-color 0.2s;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

#mainNavi.is-fixed {
  position: fixed;
  top: 0;
  transition: transform 0.2s;
  /* background-color: rgba(255, 255, 255, 0.9); */
  background-color: #fff;
}

#mainNavi.is-fixed .navbar-nav>li.nav-item>a {
  color: #212529;
}

#mainNavi.is-fixed .navbar-nav>li.nav-item>a:focus,
#mainNavi.is-fixed .navbar-nav>li.nav-item>a:hover,
#mainNavi .navbar-nav>li.nav-item>a.active {
  color: #297bcd;
}

#mainNavi.is-visible {
  /* transform: translate3d(0, 100%, 0); */
  top: 0;
}

#mainNavi .navbar-brand {
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

#mainNavi .navbar-nav>li.nav-item {
  position: relative;
}

/* #mainNavi .navbar-nav>li.nav-item>a.nav-link {
  color: #fff;
} */

#mainNavi .navbar-nav>li.nav-item>a.nav-link:focus,
#mainNavi .navbar-nav>li.nav-item>a.nav-link:hover {
  color: #fff;
}

#mainNavi.is-fixed .navbar-nav>li.nav-item>a.nav-link:focus,
#mainNavi.is-fixed .navbar-nav>li.nav-item>a.nav-link:hover {
  color: #113e96;
}

#mainNavi .navbar-nav>li.nav-item>a.nav-link,
#mainNavi .navbar-nav>li.nav-item>a.nav-link.active {
  color: #fff;
}

#mainNavi.is-visible .navbar-nav>li.nav-item>a.nav-link,
#mainNavi.is-visible .navbar-nav>li.nav-item>a.nav-link.active {
  color: #113e96;
}

#mainNavi .navbar-nav.headerlinks>li.nav-item>a.nav-link:hover:before,
#mainNavi .navbar-nav.headerlinks>li.nav-item>a.nav-link.active:before {
  left: 0;
  right: auto;
  width: 100%;
}

#mainNavi .navbar-nav.headerlinks>li.nav-item>a.nav-link:before {
  position: absolute;
  height: 3px;
  width: 0;
  bottom: -1px;
  right: 0;
  background: #fff;
  content: "";
  display: block;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
}

#mainNavi.is-visible .navbar-nav.headerlinks>li.nav-item>a.nav-link:before {
  background: #113e96;
}

/* #mainNavi .navbar-brand {
  padding: 10px 0;
} */

#mainNavi .navbar-brand img {
  width: 220px;
}

#mainNavi.is-fixed .navbar-brand img.logonor {
  display: block;
}

#mainNavi.is-fixed .navbar-brand img.logowh {
  display: none;
}

#mainNavi .navbar-brand img.logonor {
  display: none;
}

#mainNavi .navbar-brand img.logowh {
  display: block;
}

#mainNavi .navbar-toggler {
  font-size: 0.75rem;
  padding: 0.75rem;
  text-transform: uppercase;
}

#mainNavi .navbar-nav>li.nav-item>a.nav-link {
  padding: 30px 24px !important;
  line-height: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: 600;
  cursor: pointer;
}

#mainNavi .navbar-nav.logbtns>li.nav-item>a.nav-link {
  padding: 22px 6px !important;
}

#mainNavi .navbar-nav.logbtns>li.nav-item>a.nav-link span {
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 5px 20px;
  background-color: #f9f9f9;
}

#mainNavi .nav-item .dropdown-menu {
  transform: translate3d(0, 10px, 0);
  visibility: hidden;
  opacity: 0;
max-height: 0;
  display: block;
padding: 0;
margin: 0;
  transition: all 200ms linear;
}
#mainNavi .nav-item.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
max-height: 999px;
  transform: translate3d(0, 0px, 0);
}
#mainNavi .dropdown-menu {
padding: 3px 5px!important;
margin: 0;
font-size: 13px;
letter-spacing: 1px;
color: #113e96;
background-color: #fcfaff;
border: none;
border-radius: 3px;
box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  transition: all 200ms linear;
}
#mainNavi .dropdown-toggle::after {
display: none;
}

#mainNavi .dropdown-item {
  padding: 13px 20px;
  color: #113e96;
  border-radius: 2px;
  transition: all 200ms linear;
  text-transform: uppercase;
}
#mainNavi .dropdown-item:hover, 
#mainNavi .dropdown-item:focus {
color: #113e96;
background-color: #eceff7;
}
#mainNavi .dropdown-item.active, .dropdown-item:active {
  color: #113e96;
  background-color: #eceff7;
  border-bottom: 3px solid #113e96;
}


/* Main Banner */

/* new */
#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}
#bar{
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #113e96;
}
#progressBar{
  width: 100%;
  background: #EDEDED;
}

#owl-demo.owl-theme .owl-controls{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}
#owl-demo.owl-theme .owl-controls .owl-buttons div{
  font-size: 15px;
  padding: 6px 12px;
  border: 1px solid transparent;
  width: 36px;
  height: 36px;
}
#owl-demo.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  background-color: #113e96;
  border: 1px solid #fff;
}
#owl-demo.owl-theme .owl-controls .owl-prev{
  float: left;
  margin-left: 4%;
}
#owl-demo.owl-theme .owl-controls .owl-next{
  float: right;
  margin-right: 4%;
}

/* .mainBanner{
  margin-top: 100px;
} */
/* .bannImg {
  background-image: url("../../assets/images/main_bg11.png");
  background-color: #fff;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100%;
} */
.slideone {
  background-image: url("../../assets/images/banner/learn-bg.png");
  background-color: #fff;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 731px;
}

.slidetwo {
  background-image: url("../../assets/images/banner/itsol-bg.png");
  background-color: #fff;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 731px;
}

.slidethree {
  background-image: url("../../assets/images/banner/cybersecurity-bg.png");
  background-color: #fff;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 731px;
}

.mainBanner .owl-carousel .owl-item img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.webdis{
  display: block !important;
}
.resdis{
  display: none !important;
}

.mainBanner .slider-caption {
  /* position: absolute;
  left: 0;
  top: 27%; */
  z-index: 999;
  width: 100%;
}

.mainBanner .slider-caption h4 {
  font-size: 36px;
  color: #000;
  line-height: 40px;
  margin-bottom: 32px;
  display: block;
}

/* .mainBanner .slider-caption h1 {
  font-size: 48px;
  color: #fff;
  line-height: 70px;
  margin: 0 0 20px;
  font-weight: 900;
  text-transform: uppercase;
} */

.mainBanner .slider-caption h1 {
  font-size: 48px;
  color: #fff;
  line-height: 70px;
  margin: 0 0 20px;
  font-weight: 900;
  text-transform: uppercase;
}
.mainBanner .slider-caption h1:first-child {
  line-height: 42px;
}
.mainBanner .slider-caption h1 span{
  font-weight: 500;
  font-size: 28px;
}

.mainBanner .slidetwo .slider-caption h1,
.mainBanner .slidetwo .slider-caption p {
  color: #113e96;
}

.mainBanner .slider-caption p {
  font-size: 18px;
  color: #fff;
  width: 95%;
  margin: 0;
}

.mainBanner .mainbann .owl-nav {
  position: absolute;
  top: 48%;
  left: 4%;
  right: 4%;
}

.mainBanner .mainbann .owl-nav button.owl-next,
.mainBanner .mainbann .owl-nav button.owl-prev {
  outline: 0;
  position: relative;
  width: 45px;
  height: 45px;
  color: #fff;
  font-size: 22px;
  line-height: 44px;
  margin-right: 5px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.70);
}

.mainBanner .mainbann .owl-nav button.owl-prev {
  float: left;
}

.mainBanner .mainbann .owl-nav button.owl-next {
  float: right;
}

.mainBanner .mainbann .owl-nav button.owl-next:hover,
.mainBanner .mainbann .owl-nav button.owl-prev:hover {
  border-color: #fff;
  background-color: #fff;
  color: #113e96;
}

/* commn pad */
.home-services-area, .home-partners, .home-blog, .home-products, .services-what-we, .our-solutions-traning, .our-solutions-cloud, .why-zero, .guidelines,
.blogs, .intro_sec, .home-solutions {
  padding: 80px 0;
}

/* Home Services */
.home-services-area {

}

.home-services-abimg {
  position: absolute;
  top: 42px;
  left: 50px;
}

.home-services-area ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  width: 100%;
  float: left;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 12px 26px rgb(0 0 0 / 8%);
  border: 1px solid #e1effc;
}

.home-services-area ul li {
  width: 33.333%;
  float: left;
  text-align: center;
  position: relative;
  padding: 20px 0;
  cursor: pointer;
  border-right: 1px solid #e1effc;
}

.home-services-area ul li .service-info {
  position: relative;
  z-index: 99;
  padding: 20px 10px;
}

.home-services-area ul li:last-child .service-info {
  border-right: none;
}

.home-services-area .service-info .service_img {
  width: 95px;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  background-color: #f9f9f9;
  border-radius: 100%;
  padding: 18px;
  margin: 0 auto;
}

.home-services-area .service-info img {
  width: 100%;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.home-services-area .service-info h6 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  margin-top: 22px;
  color: #113e96;
  transition: all ease-in-out 0.15s;
  -webkit-transition: all ease-in-out 0.15s;
}

.home-services-area .service-info p {
  color: #6b6b84;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-services-area .service-info a {
  color: #113e96;
}

.home-services-area ul li:hover p,
.home-services-area ul li:hover h6,
.home-services-area ul li:hover a {
  color: #fff;
}

.home-services-area ul li:hover:after {
  height: 346px;
  opacity: 1;
}

.home-services-area ul li:after {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 0;
  background: #113e96;
  content: "";
  border-radius: 5px;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  z-index: 1;
}

.service-corner {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* Home Solutions */
.home-solutions {
  background-color: #eceff7;
}

.home-solutions-abimg {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.home-solutions .nav-pills li a {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 4px;
  margin-bottom: 8px;
  color: #113e96;
  background-color: rgb(255, 255, 255, 0.5);
}

.home-solutions .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #113e96;
}

.home-solutions .nav-pills li a i {
  margin-right: 15px;
}

.home-solutions .tab-content img {
  min-height: 188px;
  object-fit: cover;
  border-radius: 5px;
}

.home-solutions .tab-content p {
  color: #6b6b84;
  line-height: 1.6;
  font-size: 16px;
  margin: 0 0 6px;
}

.home-solutions .tab-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 4px;
}

/* btn */
.default-btn {
  background-color: transparent;
  color: #113e96;
  border: 2px solid #113e96 !important;
  margin-top: 8px;
  float: right;
  text-align: center;
}

.btnbgwh{
  background-color: #fff;
}
.default-btn i {
  transition: .5s;
  display: none;
}

.default-btn:hover i {
  /* left: 73%; */
  display: inline-block;
  vertical-align: middle;
}

.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
  color: #113e96;
  border-radius: 5px;
  padding: 8px 33px;
  font-size: 16px;
  text-decoration: unset !important;
}

.default-btn:hover {
  color: #fff;
  border-color: #113e96;
  background-color: #113e96;
  padding: 8px 20px;
}

.home-contact .default-btn {
  font-size: 18px;
  padding: 15px 66px !important;
  border: 2px solid #fff !important;
}

.home-contact .default-btn:hover {
  padding: 15px 60px 15px 40px !important;
}

.default-btn i {
  /* position: absolute;
  left: 25px;
  top: 32%; */
  /* transform: translateY(-50%); */
  font-size: 16.5px;
  padding-left: 10px;
  transition: .5s;
}

.home-contact .default-btn i {
  font-size: 24px !important;
  display: none;
}

.home-contact .default-btn:hover i {
  left: 80%;
  display: inline-block;
}

/* home contact */
.home-contact {
  padding: 60px 0;
  background-color: #113e96;
  background-image: linear-gradient(to bottom right, #092866, #113e96);
}

.home-contact .section-title {
  padding-bottom: 30px;
  margin-bottom: 0;
}

/* Section title */
.section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 55px;
  margin-bottom: 0;
}

.section-title .sub-title {
  position: relative;
  display: block;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ff5d22;
  letter-spacing: 0.02rem;
  text-align: center;
  font-size: 26px;
  line-height: 2.3rem;
  font-weight: 600;
  font-family: 'Karla', sans-serif;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: 50px;
  font-weight: 200;
  color: #113e96;
  font-family: 'BwStretch';
  letter-spacing: 4px;
}

.section-title h2 span {
  font-weight: 400;
  font-family: 'BwStretch';
}

/* Home Partners */
.home-partners {
  background-image: url("../../assets/images/dotted-bg.png");
  background-position: bottom;
  background-repeat: repeat;
  background-size: contain;
  position: relative;
  height: 100%;
}

.home-partners img {
  padding: 0 20px;
}

#our_partner.owl-theme .owl-controls, #our_blogs.owl-theme .owl-controls{
  padding-top: 15px;
}

/* home-blog */
.home-blog {
  background-image: url("../../assets/images/blog-bg.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100%;
}

.blog-card {
  background-color: #fff;
  margin-bottom: 0;
  margin-left: 15px;
  border: 1px solid #f2f2f2;
}

.blog-card img {
  height: 100% !important;
  object-fit: cover;
  position: relative;
}

.blog-card-content {
  padding: 20px !important;
}

.blog-card h5 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 24px;
  margin-bottom: 16px;
  line-height: 1.4em;
}

.blog-card h5 a {
  color: #113e96;
  text-decoration: unset;
}

.blog-card h5::before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  height: 7px;
  width: 100%;
  background-image: url(../../assets/images/line.png);
}

.blog-card .date {
  position: relative;
  padding-left: 50px;
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: 'BwStretch';
}

.blog-card .date strong {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 46px;
  font-weight: 700;
  line-height: 46px;
}

.blog-card .read-more-btn a {
  position: relative;
  font-size: 15px;
  color: #113e96;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.blog-card .read-more-btn a i {
  position: relative;
  opacity: 0;
  top: 1px;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.blog-card .read-more-btn a:hover i {
  opacity: 1;
}

.home-blog .owl-nav {
  position: relative;
  text-align: center;
  margin-top: 60px;
}

.home-blog .owl-nav button.owl-next,
.home-blog .owl-nav button.owl-prev {
  outline: 0;
  position: relative;
  width: 45px;
  height: 45px;
  color: #113e96;
  font-size: 22px;
  line-height: 44px;
  margin-right: 5px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #113e96;
}

.home-blog .owl-nav button.owl-next:hover,
.home-blog .owl-nav button.owl-prev:hover {
  border-color: #113e96;
  background-color: #113e96;
  color: #fff;
}


/* Home About */
.home-about {
  padding: 100px 0;
}

.home-about-img {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}

.home-about-img img {
  border-radius: 5px;
  width: 100%;
  height: auto;
}

.home-about-txt h3 {
  color: #297bcd;

  font-weight: 500;
}

.home-about-txt h2 {
  font-size: 40px;
  color: #222222;

  font-weight: 700;
  margin: 15px 0;
}

.home-about-txt p {

  font-size: 18px;
  color: #555555;
  line-height: 28px;
  margin: 0 0 6px;
}

.home-about-txt .aboutus {
  display: inline-block;
  color: #fff;
  border-radius: 3px;
  line-height: 44px;
  padding: 0 25px;

  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #297bcd;
  margin-top: 24px;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.home-about-txt .aboutus:hover {
  background-color: #1b5b9b;
  color: #fff;
  text-decoration: unset;
}

/* Home products */
.home-products {
  background-color: #f5faff;
}

.home-product-title h3 {
  color: #297bcd;

  font-weight: 500;
  margin-bottom: 10px;
}

.home-product-title h2 {
  font-size: 40px;
  color: #222222;

  font-weight: 700;
  margin-bottom: 25px;
}

a.view-more {
  display: inline-block;
  color: #fff;
  border-radius: 3px;
  line-height: 44px;
  padding: 0 25px;

  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #297bcd;
  margin-top: 24px;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  float: right;
}

a.view-more:hover {
  background-color: #1b5b9b;
  color: #fff;
  text-decoration: unset;
}

.home-products .home-product-left {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.post-thumb a {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  right: 0;
  top: -100px;
  bottom: 0;
  margin: auto;
  background: none;
  text-align: center;
  line-height: 48px;
  font-size: 16px;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
  z-index: 99;
  color: #fff;
  opacity: 0;
  border: 2px solid #fff;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.home-products .home-product-left .post-thumb:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  content: "";
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#cc000000', GradientType=0);
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.home-products .home-product-left:hover .post-thumb a {
  opacity: 1;
  top: 0;
}

.home-products .home-product-left:hover .post-thumb:after {
  height: 100%;
}

.home-products .home-product-left .post-txt {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px;
}

.home-products .home-product-left .post-txt h5 {

  line-height: 30px;
  font-weight: 700;
  font-size: 22px;
}

.home-products .home-product-left .post-txt h5 a {
  color: #fff;
  text-decoration: unset !important;
}

.home-products .home-product-left:hover .post-txt h5 a {
  color: #297bcd;
}

.home-products .home-product-left .post-txt p {

  font-size: 16px;
  margin: 0 0 8px;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home-products .home-product-right {
  background: #fff;
  border-radius: 0;
  margin-bottom: 18px;
  padding: 20px;
  width: 100%;
  float: left;
  box-shadow: 0 5px 20px rgb(0 0 0 / 7%);
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.home-products .home-product-right .post-thumb {
  width: 47%;
  float: left;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.home-products .home-product-right .post-thumb:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2000000', endColorstr='#e6000000', GradientType=1);
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.home-products .home-product-right .post-txt {
  width: 53%;
  float: left;
  padding-left: 15px;
}

.home-products .home-product-right .post-txt h5 {

  line-height: 30px;
  margin: 11px 0 8px;
  font-weight: 700;
}

.home-products .home-product-right .post-txt h5 a {
  color: #222;
  text-decoration: unset !important;
}

.home-products .home-product-right .post-txt p {
  font-size: 16px;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.rm {
  color: #297bcd;

  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.home-products .home-product-right:hover {
  box-shadow: 0 5px 20px rgb(0 0 0 / 15%);
}

.home-products .home-product-right:hover .post-thumb a {
  opacity: 1;
  top: 0px;
}

.home-products .home-product-right:hover .post-thumb:after {
  opacity: 1;
}

.home-products .home-product-right:hover .post-txt h5 a {
  color: #297bcd;
}

/* Home Partners */
.home-partners .our_partner .item .our_partner_info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  padding: 12px 20px;
  z-index: 99;
  display: flex;
  align-items: center;
}

.home-partners .our_partner .item .our_partner_info h4 {

  font-weight: 700;
  margin-bottom: 0;
}

.home-partners .our_partner .item .our_partner_info i {
  margin-left: auto;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  font-size: 24px;
}

.home-partners .our_partner .item:hover .our_partner_info i {
  margin-left: auto;
  opacity: 1;
}

.home-partners .our_partner .owl-nav {
  position: relative;
  text-align: center;
  margin-top: 60px;
}

.home-partners .our_partner .owl-nav button.owl-next,
.home-partners .our_partner .owl-nav button.owl-prev {
  outline: 0;
  position: relative;
  width: 45px;
  height: 45px;
  color: #113e96;
  font-size: 22px;
  line-height: 44px;
  margin-right: 5px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #113e96;
}

.home-partners .our_partner .owl-nav button.owl-next:hover,
.home-partners .our_partner .owl-nav button.owl-prev:hover {
  border-color: #113e96;
  background-color: #113e96;
  color: #fff;
}

/* Home Contact */
.home_contactform {

}

/* Footer */
footer {
  background: url(../../assets/images/footer-bg.png) no-repeat;
  width: 100%;
  float: left;
  padding: 30px 0 0;
  background-size: contain;
  background-position: center;
  background-color: #eceff7;
}

footer .topfooter {
  padding-top: 3rem;
  padding-bottom: 3rem;
  /* background-color: #0a0a0a; */
}

.footer-heading {
  font-size: 20px;
  font-weight: 700;
  color: #113e96;
  border-left: 6px solid #113e96;
  padding-left: 10px;
  margin-bottom: 22px;
  font-family: 'BwStretch';
  letter-spacing: 1px;
}

.footer-links-out {}

.footer-links {
  color: #113e96;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 16px;
}

.footer-links a {
  color: #113e96;
}

.footer-links a:hover {
  text-decoration: underline;
  /* color: #297bcd; */
}

.socialicons {}

.socialicons li {}

.socialicons li a {
  color: #113e96;
}

.socialicons li a:hover {
  color: #fff;
  text-decoration: unset;
}

.socialicons li a:hover span {
  background-color: #113e96;
}

.socialicons li a span {
  text-align: center;
  background-color: #fff;
  border: 5px solid rgb(30, 72, 155, 0.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  padding: 5px;
}

.socialicons li a i {
  font-size: 20px;
  margin: 0 auto;
}

.copyright {
  background-color: rgba(105, 114, 139, 0.3);
  padding: 16px;
}

.copyright a {
  color: #113e96;
  /* text-decoration: unset; */
  font-weight: 600;
}

.copyright a:hover {
  color: #113e96;
}


/* Services Page */
/* Banner */
.sub-banner {
  background: url(../images/services/sub-header-bg.svg)no-repeat bottom left;
  background-color: #113e96;
  padding: 160px 0 80px;
  color: #fff;
}

.sub-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 15px;
}

.sub-banner p {
  font-size: 18px;
  font-weight: 400;
}

/* what we do */
.services-what-we {

}

.home-services-abimg {
  top: -30px;
  left: -30px;
}

.home-services-abimg2 {
  position: absolute;
  bottom: -30px;
  right: -30px;
}

#accordion {
  position: relative;
  z-index: 10;
}

.collapse-head-out {
  box-shadow: 0px 0px 30px 0px rgb(42 22 139 / 12%);
  margin: 0 0 15px;
  padding: 15px 26px 10px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #F2F2F2;
}

.collapse-head {
  display: flex;
  align-items: center;
  text-decoration: unset !important;
}

.collapse-head .fa-minus {
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  margin-left: auto;
  color: #113e96;
  font-size: 14px;
  display: inline-block;
  float: right;
  padding-top: 12px;
}

.collapse-head.collapsed .fa-minus {
  display: none;
}

.collapse-head .fa-plus {
  display: none;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  margin-left: auto;
  color: #113e96;
  font-size: 14px;
  float: right;
  padding-top: 12px;
}

.collapse-head.collapsed .fa-plus {
  display: inline-block;
}

.collapse-head .service_img {
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  background-color: #f9f9f9;
  border-radius: 100%;
  padding: 10px;
  margin-right: 12px;
  display: inline-block;
}

.collapse-head .service_img img {
  width: 28px;
  height: 28px;
}

.collapse-head h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #113e96;
  transition: all ease-in-out 0.15s;
  -webkit-transition: all ease-in-out 0.15s;
  margin: 0;
  display: inline-block;
}

.services-what-we .service-info {
  padding: 10px 0;
}

.services-what-we .service-info .service_img {
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  background-color: #f9f9f9;
  border-radius: 100%;
  padding: 20px;
  margin-right: 15px;
}

.services-what-we .service-info .service_img img {
  width: 60px;
  height: 60px;
}

.services-what-we .service-info img {
  width: 100%;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.services-what-we .service-info p {
  color: #6b6b84;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

/* Note */
.what-we-note {
  background-image: url(../images/services/note-bg.png);
  background-color: #211e3b;
  padding: 20px 20px;
  border-radius: 10px;
  margin-top: 15px;
}

.what-we-note p {
  color: #fff;
  font-style: italic;
  margin-bottom: 0;
}

.what-we-note p b {
  color: #ff5d22;
}

/* Main Services */
.main-services {
  background-image: url(../images/services/services-bg.png) !important;
  background-size: cover !important;
  background-position: right top !important;
  background-repeat: no-repeat !important;
  /* padding: 170px 0 80px; */
  padding: 80px 0 80px;
}

.main-services .service-info-out {
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-color: #ff5d22;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 0 none transparent;
  border-right: 0 none transparent;
  border-bottom: 0 none transparent;
}

.border-line {
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  width: 3px;
  height: 65px;
  margin-top: 0;
  margin-left: -1.5px;
  background-color: #ff5d22;
}

.main-services .service-info {
  padding: 0 15px;
}

.main-services .service-info .service_img {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  transition: all .35s cubic-bezier(.38, 3, .57, 1.6);
  transform: translate3d(0px, 0, 0);
  margin-bottom: 15px;
}

.main-services .service-info:hover .service_img {
  transition: all .35s cubic-bezier(.38, 3, .57, 1.6);
  transform: translate3d(0px, -6px, 0);
}

.main-services .service-info img {
  width: 100%;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.main-services .service-info h6 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  margin-top: 22px;
  color: #113e96;
  transition: all ease-in-out 0.15s;
  -webkit-transition: all ease-in-out 0.15s;
}

.main-services .service-info p {
  color: #6b6b84;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.res-dev {
  background: url(../images/services/sub-header-bg.svg)no-repeat bottom left;
  background-color: #113e96;
  padding: 80px 0;
  overflow: hidden;
}

.half-circle {
  position: absolute;
  top: -240px;
  width: 356px;
  min-height: 356px;
  min-width: 356px;
  left: 5%;
  background-color: #ff5d22;
  border-radius: 50%;
}

.res-dev-card {
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%) !important;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%) !important;
  overflow: hidden;
  /* margin-bottom: -100px; */
}

/* .res-dev-card .res-dev-img {
  height: 100%;
} */

.res-dev-card .res-dev-img img {
  height: 100%;
  object-fit: cover;
  position: relative;
}

.res-dev-info {
  padding: 48px;
}

.res-dev-info h6 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #000;
  transition: all ease-in-out 0.15s;
  -webkit-transition: all ease-in-out 0.15s;
}

.res-dev-info p {
  color: #6b6b84;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.white-strip {
  background-color: #fff;
  padding-bottom: 180px;
}


/* Solutions Page */
/* training */
.our-solutions-traning {
  overflow: hidden;
  z-index: -2;
}

.service-what-we-img {
  padding-bottom: 15px;
}

.solution-info p {
  color: #6b6b84;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  margin-bottom: 0;
}


.tree-structure {
  list-style: none;
  clear: both;
  margin-top: 24px;
  margin-bottom: 0;
}

.tree-structure li {
  position: relative;
}

.tree-structure li p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  color: #113e96;
  text-decoration: none;
  font-weight: 700;
  vertical-align: middle;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: calc(100% - 50px);
  vertical-align: top;
}

.tree-structure li p:hover {
  padding-left: 5px;
}

.tree-structure>li>.num {
  display: inline-block;
  background: #113e96;
  min-width: 24px;
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
  padding: 3px 9px;
  margin-right: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

.tree-structure>li>.num:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #939393;
  top: 5px;
  left: 12px;
  z-index: -1;
}

.tree-structure>li:last-child>.num:after {
  height: calc(100% - 44px);
}

.tree-structure ol {
  padding: 0 0 20px 45px;
}

.tree-structure ol li {
  list-style-type: none;
  padding: 8px 0
}

.tree-structure ol li .num {
  position: relative;
}

.tree-structure ol li p {
  color: #6b6b84;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: unset;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  width: 100%;
}

.tree-structure .num {
  background-color: #6b6b84;
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
  padding: 3px 7px;
  margin-right: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
}

.tree-structure ol li .num:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 100%;
  margin: auto;
  width: 33px;
  height: 1px;
  background-color: #939393;
}

.tree-structure ol li ul li p {
  margin-bottom: 5px;
}

.tree-structure ol li ul li ul li p {
  margin-bottom: 0;
}

.tree-structure li ol li ul li ol li label {
  font-size: 15px;
  line-height: 22px;
  color: #6b6b84;
}

.tree-structure li ol li ul li ol {
  padding: 0 0 20px 30px;
}
.tree-structure .form-check{
  padding-left: 0;
}

/* Cloud solutions */
.our-solutions-cloud {
  background-color: #eceff7;
  overflow: hidden;
}

.solution-info h5 {
  color: #113e96;
  font-size: 22px;
  font-weight: 600;
}

.cloud-card-icon i {
  font-size: 18px;
  color: #113e96;
}

.cloud-card-info h6 {
  color: #113e96;
  font-size: 17px;
  font-weight: 600;
}

.our-solutions-cloud .solution-info p {
  margin-bottom: 20px;
}

/* Cybersecurity */
.our-solutions-cybersecurity {
  padding: 200px 0 0;
  background-color: #fff;
}

.solutions-abimg2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 0.2 !important;
}

.our-solutions-cybersecurityinn {
  background-image: url(../images/solutions/cyberbgblue.webp) !important;
  background-size: cover !important;
  background-position: right bottom !important;
  background-repeat: no-repeat !important;
  padding: 0 0 80px;
}

.cyber-abimg1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.solution-cybersecurity {
  z-index: 10;
  margin-top: -120px;
}

.solcybercard {
  padding: 20px 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 12px 26px rgb(0 0 0 / 8%);
  border: 1px solid #F2F2F2;
}

/* Why zero-trust */
.why-zero,
.blogs {
  background-image: url("../../assets/images/why-zero.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.why-zero-card-main {
  margin-bottom: 60px;
}

.why-zero-img {
  z-index: 10;
}

.why-zero-card-out {
  display: flex;
  align-items: end;
  margin-bottom: -40px;
}

.why-zero-card {
  box-shadow: 0px 0px 30px 0px rgb(42 22 139 / 12%);
  margin: 0 0 15px;
  padding: 15px 15px 15px 75px;
  border-radius: 10px;
  background-color: #fff;
  margin-left: -80px;
}

.why-zero-card p {
  font-style: italic;
  font-size: 17px;
  color: #6b6b84;
}

.why-zero {

}

.why-zero-card2 {}

.why-zero-card2 img {
  width: 50px;
}

.why-zero-card2 h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  margin-top: 22px;
  color: #113e96;
  transition: all ease-in-out 0.15s;
  -webkit-transition: all ease-in-out 0.15s;
}

.why-zero-card2 p {
  color: #6b6b84;
}

/* Blogs */
.blogs {
  padding-bottom: 50px;
}

.blog-card-out {
  margin-bottom: 30px;
}

/* Blog Details */
.blog-img {
  margin-bottom: 30px;
}

.blog-heading {
  margin-bottom: 4px;
}

.blog-heading h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
}

.blog-upload-info {
  margin-bottom: 15px;
}

.blog-upload-info span i {
  color: #113e96;
  margin-right: 6px;
}

.blog-upload-info img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.blog-content {}

.blog-content p {
  color: #6b6b84;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.blockquote {
  margin: 30px 0;
}

.blockquote p i {
  color: #221638;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}

.blog-heading h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: #000;
  transition: all ease-in-out 0.15s;
  -webkit-transition: all ease-in-out 0.15s;
}

.blog-list {}

.blog-list ul {
  margin-bottom: 30px;
}

.blog-list ul li {
  color: #6b6b84;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.blog-author {
  padding: 24px;
  border-radius: 8px;
}
.blog-authortxt{
  position: relative;
  max-width: 84%;
}
.blog-author img {
  width: 100px;
  height: 100px;
  transform: scale(1);
  border: 2px solid #113e96;
  padding: 6px;
  margin-right: 15px;
}

.blog-author .blog-authorname {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #113e96;
  line-height: 32px;
  font-family: poppins, sans-serif;
}

.blog-author .aboutauthor {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #ff5733;
  line-height: 32px;
  font-family: poppins, sans-serif;
}

.blog-author p {
  color: #6b6b84;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

.other-blogs {
  padding: 20px 15px;
  border-radius: 8px;
}

.other-blogs h5 {
  font-size: 17px;
  font-weight: 600;
}

.other-blogs img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

.other-blogs h5 {
  font-size: 17px;
  font-weight: 600;
}

.other-blogs a {
  color: #113e96;
}

.other-blogs h6 {
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 0;
  max-width: 80%;
}

.other-blogs-inn {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.other-blogs-inn:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}


/* Solutions page */
.solcard h5 {
  font-weight: 600;
  font-size: 17px;
  line-height: 20px;
  /* margin-top: 22px; */
  color: #113e96;
  transition: all ease-in-out 0.15s;
  -webkit-transition: all ease-in-out 0.15s;
}
.solcard h6 {
  font-weight: 600;
}
.solcard p {
  color: #6b6b84;
  margin-bottom: 0;
  padding-bottom: 15px;
}
.solcard .form-check {
  color: #6b6b84;
  margin-bottom: 0;
  padding-bottom: 6px;
}
.solcard .form-check .course_img{
  position: relative;
  width: 80px;
  height: 80px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 4px;
  background-color: #fff;
  margin-left: 15px;
}
.solcard .form-check .course_img img{
  width: 100%;
  height: 100%;
}
.solcard .form-check .course_title{
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 30px 15px 15px 30px;
  margin-top: -15px;
  background-color: #fff;
}
.instructor-title a{
  color: #ff5d22 !important;
}
.courses_ol_out {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.ztcontact label {
  font-weight: 600;
  font-size: 14px;
  color: #444444;
}
.disc_radio {
  padding: 13px;
  border-radius: 5px;
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: start !important;
}
.disc_radio input{
  margin-top: 5px !important;
}
.disc_radio label{
  font-weight: normal;
}
.form-check-label {
  font-weight: normal !important;
}
.ui-widget.ui-widget-content {
  width: 100%;
}


/* Contact page */
.intro_sec {
  overflow: hidden;
}

.contactinn-left {
  border-right: 1px dotted #dee2e6;
}

.contactinn-right {
  padding-left: 30px;
}

.main_heading {
  margin-bottom: 36px;
}

.main_heading h1 {
  font-family: 'BwStretch';
  margin-bottom: 15px;
}

.main_heading p {
  font-size: 17px;
  color: #fff;
  margin-bottom: 0;
}

.contactinn-info h5 {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin-bottom: 5px;
}

.contactinn-info h5 i {
  background-color: #fff;
  border-radius: 50%;
  padding: 6px;
  font-size: 13px;
  color: #000;
}

.ztcontact {
  padding-left: 48px;
  padding-right: 48px;
}

.ztcontact .form-group input {
  height: auto;
  /* height: 52px; */
}

.ztcontact .form-group .form-control {
  position: relative;
    display: block;
    width: 100%;
    font-size: 15px;
    color: #738299;
    line-height: 24px;
    /* font-weight: 600; */
    background-color: #fff;
    border-radius: 4px;
    padding: 9px 15px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(225, 229, 233);
    -o-border-image: initial;
    border-image: initial;
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;

  /* position: relative;
  display: block;
  width: 100%;
  font-size: 15px;
  color: #738299;
  line-height: 30px;
  font-weight: 600;
  background-color: #fff;
  border-radius: 6px;
  padding: 9px 15px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(225, 229, 233);
  -o-border-image: initial;
  border-image: initial;
  -webkit-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  transition: all 300ms ease 0s; */
}

.ztcontact .form-group select.form-control:not([size]):not([multiple]) {
  height: auto;
  padding: 11px 15px;
}

.leftbox-out {
  background: url(../images/services/sub-header-bg.svg)no-repeat bottom left;
  background-color: #113e96;
}

.leftbox {
  position: relative;
  padding: 0% 15px 0% 12%;
  z-index: 10;
}

.leftbox h1,
.leftbox p {
  color: #fff;
}

.leftbox .subheading_decoration0 {
  margin: 0;
}

.rightbox {
  position: relative;
  padding: 8% 0% 8% 00;
  z-index: 10;
}

.contactinfo {
  margin-bottom: 40px;
}

.contactinfo p {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.contactinfo p i {
  margin-right: 15px;
  font-size: 22px;
}

.followbtn {
  font-weight: 600;
}

.guidelines{
  overflow: hidden;
}

/* Cart */
.cartuser p{
  color: #6b6b84;
  font-size: 16px;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}
.cartuser p span{
  font-size: 15px;
  color: #212529;
  font-weight: 600;
}
.checkouttable th{
  font-weight: 600;
  font-size: 16px;
  color: #113e96 !important;
  transition: all ease-in-out 0.15s;
  -webkit-transition: all ease-in-out 0.15s;
}
.checkouttable td{
  color: #6b6b84;
  font-size: 16px;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

@media (max-width:1400px) {
  .leftbox {
    padding: 100px 15px 100px 17%;
  }

  .rightbox {
    padding: 100px 17% 100px 0;
  }
}

@media (max-width:1024px) {
  .leftbox {
    padding: 100px 15px 100px 8%;
  }

  .rightbox {
    padding: 100px 8% 100px 0;
  }
}

@media (max-width:768px) {

  .leftbox {
    padding: 60px 15px 60px 15px;
  }

  .rightbox {
    padding: 0;
  }
}

@media (max-width:600px) {
  .ztcontact {
    padding: 20px !important;
  }
}

/* Thank u */
.thanku-out {
  padding: 7% 0;
}

.thanku-out h1 {
  text-transform: uppercase;
  font-size: 65px;
  color: #113e96;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: BwStretch;
  letter-spacing: 1px;
}

.thanku-out p, .guidelines p {
  color: #6b6b84;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}

/* Multistep form */
.close {
  z-index: 100;
  position: relative;
}


/* Responsive */
@media (max-width:1100px) {

  /* why zero trust */
  #mainNavi .navbar-nav>li.nav-item>a.nav-link {
    padding: 30px 12px !important;
  }

  .cyber-abimg1 {
    top: -2px;
  }

}

@media (max-width:1100px) and (min-width:800px) {
  .thanku-out {
    padding: 30% 0;
  }
}

@media (max-width:768px) {
  .respad{
    padding-bottom: 30px;
  }
  .navbar-light .navbar-toggler {
    color: #fff;
    border-color: #fff;
  }

  #mainNavi.is-fixed .navbar-toggler {
    color: #113e96;
    border-color: #113e96;
  }

  #mainNavi .navbar-nav>li.nav-item>a.nav-link {
    padding: 15px 12px !important;
  }

  .navbar-collapse {
    background-color: #fff;
  }

  #mainNavi .navbar-nav>li.nav-item>a.nav-link,
  #mainNavi .navbar-nav>li.nav-item>a.nav-link.active {
    color: #113e96;
  }

  #mainNavi .navbar-nav.headerlinks>li.nav-item>a.nav-link:before {
    background-color: #113e96;
    height: 2px;
    bottom: 0;
  }

  #mainNavi.is-visible,
  #mainNavi.is-fixed {
    transform: unset !important;
    top: 0;
  }

  #mainNavi {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-collapse {
    background-color: #fff;
    border-radius: 10px;
    margin-top: 10px;
  }

  .headerlinks {
    padding: 15px !important;
  }

  .section-title .sub-title {
    font-size: 22px;
  }

  .section-title h2 {
    font-size: 42px;
  }

  .home-solutions .nav-pills.flex-column {
    -ms-flex-direction: unset !important;
    flex-direction: unset !important;
  }

  .home-solutions .nav-pills .nav-item {
    width: 33.333%;
  }

  .home-solutions .tab-content>.tab-pane{
    padding: 0;
  }

  .footerlogo-out {
    display: none;
  }

  .othrblogs {
    margin-top: 30px;
  }
}

@media (max-width:799px) and (min-width:600px) {
  .thanku-out {
    padding: 16% 0;
  }
}

@media (max-width:600px) {
  #mainNavi .navbar-brand img {
    width: 150px;
  }
  #mainNavi .navbar-nav>li.nav-item>a.nav-link {
    padding: 20px 12px 10px !important;
  }
  #mainNavi .navbar-nav>li.nav-item>a.nav-link:focus, #mainNavi .navbar-nav>li.nav-item>a.nav-link:hover{
    color: #113e96 !important;
  }
  #mainNavi .navbar-toggler {
    padding: 8px;
  }
  .webdis{
    display: none !important;
  }
  .resdis{
    display: block !important;
  }
  .mainBanner .slider-caption {
    margin-bottom: 15px;
}
  .mainBanner .slider-caption h1 {
    font-size: 28px;
    line-height: 28px;
}
.mainBanner .slider-caption p {
  font-size: 15px;
  width: 100%;
}
.slideone, .slidetwo, .slidethree {
  min-height: 112vh;
  height: auto;
  padding: 0 0 36px;
}
.mainBanner .owl-dots{
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 100;
  text-align: center;
}
.mainBanner .owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  background-color: #f9f9f9;
  border: 1px solid #f9f9f9;
  border-radius: 100%;
  margin-right: 6px;
}
.mainBanner .owl-carousel button.owl-dot.active {
  background-color: #113e96;
}

.mainBanner .mainbann .owl-nav button.owl-next, .mainBanner .mainbann .owl-nav button.owl-prev{
  background-color: #113e96;
}

.home-services-area, .home-partners, .home-blog, .home-products, .services-what-we, .our-solutions-traning, .our-solutions-cloud, .why-zero, .blogs, .intro_sec, .home-solutions, .main-services, .guidelines {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.section-title {
  padding-bottom: 20px;
  margin-bottom: 0;
}
.section-title .sub-title {
  font-size: 16px;
  line-height: 22px;
}

.section-title h2, .main_heading h1 {
  font-size: 28px;
  letter-spacing: 2px;
}

.home-services-area ul li {
  width: 100%;
  border-top: 1px solid #e1effc;
  border-right: unset;
}
.home-solutions {
  overflow-x: hidden;
}
.home-solutions .nav-pills.flex-column {
  width: 100%;
  overflow-x: auto;
  display: block;
  margin-bottom: 8px;
}

.home-solutions .nav-pills .nav-item {
  width: auto;
  display: table-cell;
  padding-right: 7px;
}
.home-solutions .nav-pills li a {
  font-size: 13px;
  padding: 8px 12px;
  white-space: nowrap;
}
.home-solutions .nav-pills li a i {
  margin-right: 8px;
}

.home-solutions .tab-content {
  padding: 15px;
}
.home-solutions .tab-content img {
  margin-bottom: 15px;
}
.home-solutions .tab-content p {
  font-size: 15px;
  margin-bottom: 15px;
}
.home-solutions .default-btn{
  float: unset;
  margin: 0 auto;
}
.default-btn, .home-contact .default-btn {
  /* padding: 5px 10px 4px 45px; */
  font-size: 15px;
}
.default-btn:hover {
  /* padding: 5px 45px 4px 10px; */
}
.home-partners img {
  padding: 0 4px;
}
.mainBanner .mainbann .owl-nav button.owl-next, .mainBanner .mainbann .owl-nav button.owl-prev, .home-partners .our_partner .owl-nav button.owl-next, .home-partners .our_partner .owl-nav button.owl-prev, .home-blog .owl-nav button.owl-next, .home-blog .owl-nav button.owl-prev {
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
}
.home-partners .our_partner .owl-nav, .home-blog .owl-nav {
  margin-top: 30px;
}

.blog-card h5 a {
  font-size: 16px;
  line-height: 16px;
}
.blog-card .date strong {
  font-size: 38px;
  line-height: 39px;
}

.blog-card .date {
    padding-left: 40px;
    font-size: 14px;
}
footer {
  padding: 0;
}
footer .topfooter {
  padding-top: 40px;
  padding-bottom: 15px;
}
.footer-heading {
  font-size: 18px;
  margin-bottom: 18px;
}
.footer-links {
  font-size: 14px;
  margin-right: 0 !important;
  padding-right: 8px;
}
.socialicons {
  margin-bottom: 28px;
}
.back-to-top, .back-to-top:hover {
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  padding: 6px;
  font-size: 16px;
}
.rescen {
  font-size: 14px;
}

.sub-banner {
  padding: 120px 0 60px;
}
.sub-banner h1 {
  font-size: 26px;
  line-height: 32px;
  margin: 0 0 15px;
}
.sub-banner p {
  font-size: 15px;
  width: 100%;
}


.why-zero-card {
  padding: 15px;
  margin-left: 0;
}
.why-zero-card-out {
  margin-bottom: 0;
}
.why-zero-card-main, .why-zero-card2 {
  margin-bottom: 30px;
}
.col:last-child .why-zero-card2 {
  margin-bottom: 0;
}
.res-dev-info {
  padding: 18px;
}

.services-what-we {
  overflow: hidden;
}
.main-services .service-info p, .res-dev-info p, .services-what-we .service-info p, .what-we-note p, .solution-info p, .tree-structure ol li p, .tree-structure ol li p, .tree-structure li p, .blog-upload-info p, .blog-content p, .blockquote p i, .blog-list ul li, .blog-author p, .leftbox p, .thanku-out p, .guidelines p, .solcard p {
  font-size: 15px;
  line-height: 22px;
}
.main-services .service-info h6, .collapse-head h5, .solution-info h5, .cloud-card-info h6, .blog-heading h5, .blog-author .blog-authorname, .blog-author .aboutauthor {
  font-size: 17px;
  line-height: 26px;
}
.collapse-head-out {
  margin: 0 0 10px;
  padding: 10px 26px 10px;
}
.white-strip {
  padding-bottom: 140px;
}
.res-dev{
  padding-top: 10px;
  padding-bottom: 40px;
}

.tree-structure {
  padding-left: 0;
}

.our-solutions-cybersecurity {
  padding: 160px 0 0;
}
.our-solutions-cybersecurityinn {
  padding: 0 0 40px;
}
.blog-card {
  margin-left: 0;
}
.blog-heading h1 {
  font-size: 18px;
  line-height: 25px;
}

.resdisp{
  display: block !important;
}
.blog-author img {
  width: 80px;
  height: 80px;
  margin-right: 0;
  margin-bottom: 12px;
}
.contactinfo p i {
  margin-right: 10px;
  font-size: 18px;
}
.ztcontact .form-group .form-control {
  line-height: 25px;
  padding: 8px 12px;
}
.ztcontact .form-group input {
  height: 46px;
}
.form-group {
  margin-bottom: 12px;
}
.thanku-out h1 {
  font-size: 30px;
}
.thanku-out {
  padding: 20% 0;
}
}



