body {
	margin:0;
	padding:0;
	font-family: 'Poppins', sans-serif;
 	font-size:14px;
 	box-sizing: content-box;
 }
* { margin:0; padding:0; }


/*=========== Preloader ============*/
.ctn-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
}

.ctn-preloader .animation-preloader {
  z-index: 1000;
}

.ctn-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000000;
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

.ctn-preloader .animation-preloader .txt-loading {
  font: bold 5em "Poppins", sans-serif;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  -webkit-animation: letters-loading 4s infinite;
  animation: letters-loading 4s infinite;
  color: #000000;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: -3px;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.ctn-preloader.dark .animation-preloader .spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}

.ctn-preloader.dark .animation-preloader .txt-loading .letters-loading {
  color: rgba(255, 255, 255, 0.2);
}

.ctn-preloader.dark .animation-preloader .txt-loading .letters-loading:before {
  color: #fff;
}

.ctn-preloader p {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #3b3b3b;
}

.ctn-preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.ctn-preloader .loader .row {
  height: 100%;
}

.ctn-preloader .loader .loader-section {
  padding: 0px;
}

.ctn-preloader .loader .loader-section .bg {
  background-color: #ffffff;
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.ctn-preloader .loader.dark_bg .loader-section .bg {
  background: #111339;
}

.ctn-preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.ctn-preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}

@media screen and (max-width: 767px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 3.5em "Poppins", sans-serif;
  }
}

@media screen and (max-width: 500px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }
  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 2em "Poppins", sans-serif;
  }
}

/*====================================================*/


/** Top Header Begin **/
.top-header .logo {
  max-width: 270px;
  max-height:50px;
}
.top-header ul.navbar-nav {
  align-items: center;
}
.top-header { margin:0; padding:0; }
.top-header .navbar { margin:0; padding:13px 0; }
.top-header .navbar-nav li { margin:0 23px;}
.top-header .navbar-nav li:last-child { margin-right:0; }
.top-header .navbar-nav li:focus,
.top-header .navbar-nav li:focus-visible {
  outline: none;
}
.top-header .navbar-nav li a {
  color:#333333;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.top-header .navbar-nav a.nav-link { padding:0; }

/** Top Header End **/

/** Banner Begin **/
.banner_area {
  background-color: #fbfbfd;
  padding: 130px 0;
  position: relative;
  /*z-index: 0;
  overflow: hidden;*/
}
.banner_area .banner_area-content {
  display: grid;
  grid-template-columns: 500px auto;
}
.banner_area .banner_area-content .prototype_content {
  max-width: 500px;
}
.banner_area .banner_area-content .prototype_content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #222d39;
  max-width: 400px;
  margin-bottom: 20px;
}
.banner_area .banner_area-content .prototype_content ul.list-unstyled {
  margin: 0 0 40px 0;
  padding: 0;
}
.banner_area .banner_area-content .prototype_content ul.list-unstyled li {
  display: flex;
  list-style: none;
  margin-bottom:0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #677294;
}
.banner_area .banner_area-content .prototype_content ul.list-unstyled li i {
  padding-top: 7px;
  padding-right: 5px;
}
.banner_area .banner_area-content .banner-img  img {
  width: 48%;
  position: absolute;
  right: 30px;
}

.banner_area .prototype_content .banner_subscribe .subcribes {
  display: block;
}

.prototype_content .banner_subscribe .subcribes .form-control {
  max-width: 370px;
  width: 100%;
  border-radius: 3px;
  background-color: white;
  border: 0px;
  height: 50px;
  color: #222d39;
  padding-left: 30px;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(12, 0, 46, 0.06);
  box-shadow: 0px 2px 3px 0px rgba(12, 0, 46, 0.06);
  font: 300 14px/28px "Poppins", sans-serif;
  border: 1px solid transparent;
}

.prototype_content .banner_subscribe .subcribes .form-control.placeholder {
  color: #aeb4ba;
}

.prototype_content .banner_subscribe .subcribes .form-control:-moz-placeholder {
  color: #aeb4ba;
}

.prototype_content .banner_subscribe .subcribes .form-control::-moz-placeholder {
  color: #aeb4ba;
}

.prototype_content .banner_subscribe .subcribes .form-control::-webkit-input-placeholder {
  color: #aeb4ba;
}
/** Banner End **/

/** SMES are at Risk Section Begin **/
.prototype_service_area_three {
    overflow: hidden;
}
/*.prototype_service_area_two, .prototype_service_area_three {overflow: hidden;}*/
.prototype_service_area_three .prototype_service_info h2 {
	color: #222d39;
	font-weight: 600;
	line-height: 45px;
	font-size: 30px;
	text-align: center;
	margin-bottom: 50px;
}
.prototype_service_area_three .prototype_service_info p {
	color: #677294;
	font-weight: 300;
	line-height: 30px;
	font-size: 20px;
	text-align: center;
	margin-bottom: 50px;
}

.prototype_service_info {
	padding: 150px 0px 175px;
	position: relative;
	z-index: 0;
}
.symbols-pulse {
	position: absolute;
	top: 58%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}
.symbols-pulse > div {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 23rem;
	height: 23rem;
	border-radius: 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(227, 221, 246, 0.1)), color-stop(65%, rgba(227, 221, 246, 0.2)), to(rgba(227, 221, 246, 0.1)));
	background-image: -webkit-linear-gradient(top, rgba(227, 221, 246, 0.1) 0%, rgba(227, 221, 246, 0.2) 65%, rgba(227, 221, 246, 0.1) 100%);
	background-image: -o-linear-gradient(top, rgba(227, 221, 246, 0.1) 0%, rgba(227, 221, 246, 0.2) 65%, rgba(227, 221, 246, 0.1) 100%);
	background-image: linear-gradient(-180deg, rgba(227, 221, 246, 0.1) 0%, rgba(227, 221, 246, 0.2) 65%, rgba(227, 221, 246, 0.1) 100%);
	z-index: -1;
}
.symbols-pulse .pulse-1 {
	-webkit-transform: translate(-50%, -50%) scale(0.67);
	-ms-transform: translate(-50%, -50%) scale(0.67);
	transform: translate(-50%, -50%) scale(0.67);
}
.symbols-pulse .pulse-2 {
	-webkit-transform: translate(-50%, -50%) scale(1.05);
	-ms-transform: translate(-50%, -50%) scale(1.05);
	transform: translate(-50%, -50%) scale(1.05);
}
.symbols-pulse .pulse-3 {
	-webkit-transform: translate(-50%, -50%) scale(1.63);
	-ms-transform: translate(-50%, -50%) scale(1.63);
	transform: translate(-50%, -50%) scale(1.63);
}
.symbols-pulse .pulse-4 {
	-webkit-transform: translate(-50%, -50%) scale(2.1);
	-ms-transform: translate(-50%, -50%) scale(2.1);
	transform: translate(-50%, -50%) scale(2.1);
}
.symbols-pulse .pulse-x {
	will-change: transform;
	-webkit-animation: pulsate 3s infinite;
	animation: pulsate 3s infinite;
}

@-webkit-keyframes pulsate {
	0% {
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(0.5);
	transform: translate(-50%, -50%) scale(0.5);
	}
	100% {
	opacity: 0;
	-webkit-transform: translate(-50%, -50%) scale(4);
	transform: translate(-50%, -50%) scale(4);
	}
}

@keyframes pulsate {
	0% {
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(0.5);
	transform: translate(-50%, -50%) scale(0.5);
	}
	100% {
	opacity: 0;
	-webkit-transform: translate(-50%, -50%) scale(4);
	transform: translate(-50%, -50%) scale(4);
	}
}

/*================ prototype_service_area css =============*/
.prototype_service_area_three {
  margin: 0;
}
.service_item {
  background: #fff;
  -webkit-box-shadow: 0px 30px 40px 0px rgba(3, 115, 156, 0.1);
  box-shadow: 0px 30px 40px 0px rgba(3, 115, 156, 0.1);
  padding: 20px 40px;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
  -webkit-transition: border 0.2s linear;
  -o-transition: border 0.2s linear;
  transition: border 0.2s linear;
  overflow: hidden;
}
.prototype_service_area_three .service_item h4 {
  font-size: 20px;
  color: #3f4451;
  font-weight: 600;
  line-height: 28px;
  margin:0 0 20px 0;
}
.prototype_service_area_three .service_item p,
.prototype_service_area_three.implement-our-free .service_item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #677294;
  text-align: left;
  margin: 0;
}

.service_item .icon.s_icon_two {
  background-image: -moz-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
  background-image: -webkit-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
  background-image: -ms-linear-gradient(40deg, #e03827 0%, #f9a47a 100%);
  -webkit-box-shadow: 0px 14px 30px 0px rgba(224, 56, 39, 0.4);
  box-shadow: 0px 14px 30px 0px rgba(224, 56, 39, 0.4);
}
.service_item .icon.s_icon_three {
  background-image: -moz-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
  background-image: -webkit-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
  background-image: -ms-linear-gradient(40deg, #2c82ed 0%, #38d0fc 100%);
  -webkit-box-shadow: 0px 14px 30px 0px rgba(44, 130, 237, 0.4);
  box-shadow: 0px 14px 30px 0px rgba(44, 130, 237, 0.4);
}
.service_item .icon.s_icon_four {
  background-image: -moz-linear-gradient(40deg, #e09520 0%, #fae926 100%);
  background-image: -webkit-linear-gradient(40deg, #e09520 0%, #fae926 100%);
  background-image: -ms-linear-gradient(40deg, #e09520 0%, #fae926 100%);
  -webkit-box-shadow: 0px 14px 30px 0px rgba(224, 149, 32, 0.4);
  box-shadow: 0px 14px 30px 0px rgba(224, 149, 32, 0.4);
}
.service_item img {
  margin-right: -25px;
  width: auto;
}

/** Significantly reduce Begin **/
.agency_featured_area {
  padding-top: 160px;
  background: #fbfbfd;
}
.agency_featured_area h2 {
  color: #222d39;
  font-weight: 600;
  line-height: 40px;
  font-size: 30px;
  text-align: center;
  margin: 0 0 .5rem 0;
}
.agency_featured_area_two {
  padding-bottom: 150px;
}
.features_info {
  position: relative;
  padding-bottom: 170px;
}
.agency_featured_area .agency_featured_item .agency_featured_img img {
  width: 100%;
}
.features_info .dot_img {
  position: absolute;left: 0;top: 28px;
}
.features_info.feature_info_two {
  padding-bottom: 70px;
}
.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 161, 39, 0.161);
  display: block;
  position: absolute;
  left: -9px;
  top: 15px;
}
.dot .dot1 {
  position: absolute;
  left: 50%;
  margin-top: -4px;
  margin-left: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #feb85d;
}
.dot .dot2 {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(254, 184, 93, 0.8);
  -webkit-animation: pulsate 3s infinite;
  animation: pulsate 3s infinite;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  will-change: transform;
}
.dot.middle_dot {
  left: 49.8%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  top: auto;
}
.agency_featured_item {
  margin-top: 130px;
}
.agency_featured_item .agency_featured_content {
  position: relative;
  padding: 0 70px;
}
.agency_featured_item.agency_featured_item_two .agency_featured_content {
  padding-left: 49px;
  padding-right: 0;
}
.agency_featured_item .agency_featured_content h3 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 500;
  color: #222d39;
  margin: 32px 0px 25px;
}
.agency_featured_item .agency_featured_content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: #677294;
}

.agency_featured_area .agency_featured_item.agency_featured_item_two {
  padding-top: 100px;
}
.agency_featured_item.agency_featured_item_two .agency_featured_content .dot {
  left: -30px;
}

/** Assess Your Cyber Security Risk Begin **/
.assess-your-cyber-security-risk {
  margin: 0;
  padding: 120px 0;
  background-color: #fbfbfd;
}
.assess-your-cyber-security-risk h2 {
  font-size: 30px;
  font-weight: 600;
  color: #222d39;
  line-height: 50px;
  margin: 0 0 .5rem 0;
}
.assess-your-cyber-security-risk p {
  font-size: 16px;
  font-weight: 300;
  color: #677294;
  line-height: 26px;
  margin: 0;
}
.assess-your-cyber-security-risk .sec_title {
  margin-bottom: 70px;
}

.assess-your-cyber-security-risk button p:focus-visible,
.assess-your-cyber-security-risk button h5:focus-visible,
.assess-your-cyber-security-risk button:focus-visible {
  outline: none;
}
.assess-your-cyber-security-risk button.nav-link {
  margin-bottom: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 3px 0px rgba(12, 0, 46, 0.04);
  box-shadow: 0px 2px 3px 0px rgba(12, 0, 46, 0.04);
  border: 0px;
  border-radius: 0px;
  padding: 25px 50px;
  -webkit-transition: background 0.5s ease 0s;
  -o-transition: background 0.5s ease 0s;
  transition: background 0.5s ease 0s;
  text-align: left;
}
.assess-your-cyber-security-risk button.nav-link h5 {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #222d39;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}

.assess-your-cyber-security-risk button.nav-link p {
  margin-bottom: 0px;
  font-size: 15px;
  font-weight: 300;
  color: #677294;
  -webkit-transition: color 0.5s ease 0s;
  -o-transition: color 0.5s ease 0s;
  transition: color 0.5s ease 0s;
}
.assess-your-cyber-security-risk button.nav-link.active h5,
.assess-your-cyber-security-risk button.nav-link.active p {
  color: #fff;
}
.assess-your-cyber-security-risk .tab_img img {
  width: 100%;
}

/** Implement Our Free Cyber Begin  **/
.implement-our-free {
	padding: 120px 0;
}
.implement-our-free .custom_container h2 {
	font-size: 30px;
	color: #051441;
	font-weight: 600;
	line-height: 40px;
	text-align: center;
	margin-bottom: 0.5rem;
}
.implement-our-free .custom_container p {
	font-size: 18px;
	color: #677294;
	font-weight: 300;
	line-height: 34px;
	text-align: center;
	margin:0 0 1rem 0;
}
.implement-our-free .custom_container .row.s_service_info {
	margin-top: 70px;
}

.implement-our-free .s_service_item .icon {
	width: 82px;
	height: 82px;
	border-width: 1px;
	border-style: solid;
	border-radius: 50%;
	line-height: 82px;
	font-size: 30px;
	text-align: center;
	margin-bottom: 34px;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.implement-our-free .s_service_item .icon.icon_1 {
	background-color: rgba(10, 188, 123, 0.059);
	border-color: rgba(10, 188, 123, 0.3);
	color: #0abc7b;
}

.implement-our-free .s_service_item .icon.icon_2 {
	border-color: rgba(231, 178, 18, 0.3);
	background-color: rgba(214, 167, 25, 0.059);
	color: #d6a719;
}

.implement-our-free .s_service_item .solid_overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #fff;
	z-index: -1;
	opacity: 1;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.implement-our-free .s_service_item h5 {
	font-size: 19px;
	color: #051441;
	font-weight: 600;
	line-height: 28px;
	text-align: left;
	margin:0 0 1rem 0;
	-webkit-transition: color 0.2s ease;
	-o-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
.implement-our-free .s_service_item p {
	font-size: 16px;
	color: #677294;
	font-weight: 400;
	line-height: 28px;
	text-align: left;
	margin:0 0 1rem 0;
}
.implement-our-free .s_service_item:hover .solid_overlay {
	opacity: 0;
}

.implement-our-free .s_service_item:hover .learn_btn_two,
.implement-our-free .s_service_item:hover h5,
.implement-our-free .s_service_item:hover p {
	color: #fff;
}

.implement-our-free .s_service_item:hover .icon {
	border-color: rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.059);
	color: #fff;
}

.implement-our-free .learn_btn_two {
	color: #051441;
	font-size: 15px;
	display: inline-block;
	margin-top: 7px;
	position: relative;
	-webkit-transition: color 0.2s ease;
	-o-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
.implement-our-free a.learn_btn_two {
	text-decoration: none;
}
.implement-our-free .learn_btn_two:before {
	content: "";
	height: 1px;
	width: 0;
	position: absolute;
	left: 0;
	background: #fff;
	bottom: 0;
	-webkit-transition: width 0.2s ease;
	-o-transition: width 0.2s ease;
	transition: width 0.2s ease;
}

.implement-our-free .learn_btn_two i {
	font-size: 13px;
	padding-left: 5px;
	vertical-align: middle;
}

.implement-our-free .learn_btn_two:hover {
	color: #fff;
}

.implement-our-free .learn_btn_two:hover:before {
	width: 100%;
}

.implement-our-free .learn_btn_two:hover i {
	padding-left: 10px;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}


/** Distribute Security Awareness Posters Begin **/
.portfolio_area {
  padding: 120px 0;
  background-color: #fbfbfd;
  overflow: hidden;
}
.portfolio_area h2 {
  font-size: 30px;
  font-weight: 600;
  color: #051441;
  line-height: 40px;
  margin: 0 0 20px 0;
  text-align: center;
}
.portfolio_area p {
  font-size: 18px;
  font-weight: 300;
  color: #677294;
  line-height: 34px;
  margin: 0 0 1rem 0;
  text-align: center;
}
.portfolio_gallery .portfolio_item .portfolio_img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.portfolio_gallery .portfolio_item .portfolio_img img {
  max-width: 100%;
  width: 100%;
}
.portfolio_gallery .portfolio_item .portfolio_img .img_rounded {
  border-radius: 6px;
}
.portfolio_gallery .portfolio_item .portfolio_img .hover_content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(44, 44, 57, 0.7);
  opacity: 0;
  -webkit-transition: opacity 300ms linear;
  -o-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}
.portfolio_gallery .portfolio_item .portfolio_img .hover_content .img_popup {
  width: 50px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  display: block;
  right: 50px;
  top: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.portfolio_gallery .portfolio_item .portfolio_img .hover_content .img_popup:hover {
  background: #fff;
  color: #282835;
}
.portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description {
  bottom: 0;
  padding-left: 50px;
  padding-bottom: 48px;
  width: 100%;
}
.portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description h3 {
  -webkit-transform: translateY(25px);
  -ms-transform: translateY(25px);
  transform: translateY(25px);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  font-size: 16px;
  color: #fff;
}
.portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description .links {
  overflow: hidden;
}
.portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description .links a {
  -webkit-transform: translateY(25px);
  -ms-transform: translateY(25px);
  transform: translateY(25px);
  color: #fff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.portfolio_gallery .portfolio_item .portfolio_img .hover_content .portfolio-description .links a:before {
  background: #fff;
}
.leaf {
  position: absolute;
}
.portfolio_gallery .portfolio_item .portfolio_img .hover_content.h_content_two .img_popup {
  right: 30px;
  top: 30px;
}
.portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content a {
  text-decoration: none;
}
.portfolio_gallery .portfolio_item .portfolio_img .hover_content.h_content_two .portfolio-description {
  padding-left: 30px;
  padding-bottom: 30px;
}
.portfolio_gallery .portfolio_item .portfolio_img .hover_content.h_content_two .portfolio-description .links a {
  font-size: 14px;
}
.portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content {
  opacity: 1;
}
.portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content .img_popup {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content .portfolio-description h3, .portfolio_gallery .portfolio_item .portfolio_img:hover .hover_content .portfolio-description a {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.portfolio-description .portfolio-title {
  overflow: hidden;
  display: inline-block;
}
.portfolio-description h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 22px;
  margin-bottom: 0px;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  color: #282835;
}
.portfolio-description .links {
  overflow: hidden;
}
.portfolio-description .links a {
  font-size: 15px;
  color: #677294;
  font-weight: 300;
  position: relative;
  display: inline-block;
  margin-right: 8px;
  -webkit-transition: color 0.01s linear;
  -o-transition: color 0.01s linear;
  transition: color 0.01s linear;
}
.portfolio-description .links a:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.portfolio_fullwidth_area {
  padding-top: 100px;
}

/** Cyber security should be easy Begin **/
.partner_logo_area_two {
	padding-top: 120px;
}
.partner_logo_area_two .row.mb-100 {
	margin: 100px 0 100px;
}
.partner_logo_area_two .sec_title {
	margin-bottom: 60px;
	text-align: center;
}
.partner_logo_area_two h2 {
	font-size: 30px;
	font-weight: 600;
	line-height: 40px;
	color: #051441;
	margin: 0 0 .5rem 0;
}
.partner_logo_area_two p {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	color: #677294;
	margin: 0 auto;
    max-width: 1050px;
}
.saas_features_area_two {
  padding-top: 90px;
}
.partner_info {
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.partner_info .logo_item {
  width: calc(100% / 5);
  margin-bottom: 60px;
}

.partner_info .logo_item img {
  max-width: 100%;
  -webkit-filter: contrast(0.3%);
  filter: contrast(0.3%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.partner_info .logo_item:hover img {
  -webkit-filter: contrast(100%);
  filter: contrast(100%);
}

.partner_logo_area_two h5 {
  margin: 25px 0px 10px;
  color: #677294;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  line-height: 26px;
}

.subscribe_form_info {
  border-style: solid;
  border-width: 1px;
  border-color: #f3f6f9;
  border-radius: 6px;
  background-color: white;
  -webkit-box-shadow: 0px 30px 50px 0px rgba(12, 0, 46, 0.1);
  box-shadow: 0px 30px 50px 0px rgba(12, 0, 46, 0.1);
  padding: 120px 0px;
  margin-bottom: -150px;
  z-index: 2;
  position: relative;
}
.subscribe_form_info h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: #222d39;
  margin-bottom: 50px;
}
.subscribe_form_info .subscribe-form {
  max-width: 370px;
  margin: 0 auto;
}

.subscribe_form_info .subscribe-form .form-control.placeholder {
  color: #b4bacc;
}
.subscribe_form_info .subscribe-form .form-control:-moz-placeholder {
  color: #b4bacc;
}
.subscribe_form_info .subscribe-form .form-control::-moz-placeholder {
  color: #b4bacc;
}
.subscribe_form_info .subscribe-form .form-control::-webkit-input-placeholder {
  color: #b4bacc;
}
.subscribe_form_info .subscribe-form .btn_four {
  padding: 16px 44px;
  -webkit-box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
  box-shadow: 0px 20px 30px 0px rgba(61, 100, 244, 0.16);
}
.subscribe_form_info .subscribe-form .btn_hover {
  overflow: hidden;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.subscribe_form_info .subscribe-form .btn_four:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/** Testimonial Begin **/
.app_testimonial_area {
	background: #fbfbfd;
	padding-top: 200px;
	padding-bottom: 140px;
	overflow: hidden;
	position: relative;
}
.app_testimonial_area .author_info h6 {
	color: #222d39;
	font-size: 18px;
	font-weight: 500;
	margin: 0;
}
.app_testimonial_area .author_info p {
	color: #959cb1;
    font-size: 14px;
    margin-bottom: 0px;
}
.app_testimonial_area .text_shadow {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
}
.app_testimonial_area .text_shadow:before {
	content: attr(data-line);
	position: absolute;
	left: 0px;
	width: 100%;
	text-align: center;
	color: #f6f6fa;
	font-weight: 700;
	background-image: -webkit-linear-gradient(310deg, #672dde 0%, #4069eb 100%);
	background-image: -o-linear-gradient(310deg, #672dde 0%, #4069eb 100%);
	background-image: linear-gradient(140deg, #672dde 0%, #4069eb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: "Poppins", sans-serif;
	font-size: 200px;
	line-height: 200px;
	z-index: -1;
	text-transform: uppercase;
	top: 50%;
	opacity: 0.02;
}
.app_testimonial_slider {
	max-width: 690px;
	margin: 0 auto;
}
.nav_container {
  position: relative;
  z-index: 1;
}
.nav_container .owl-prev, .nav_container .owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  -webkit-box-shadow: 0px 3px 4px 0px rgba(12, 0, 46, 0.06);
  box-shadow: 0px 3px 4px 0px rgba(12, 0, 46, 0.06);
  font-size: 20px;
  color: #222d39;
  border: 0px;
  line-height: 50px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}
.nav_container .owl-prev {
  left: 15px;
}
.nav_container .owl-next {
  right: 15px;
}
.nav_container .owl-dots {
  margin-top: 30px;
}
.nav_container .owl-dots .owl-dot span {
  background: #cfcfe7;
  border-color: #cfcfe7;
}
.nav_container .owl-dots {text-align: center;margin-top: 75px;}

.owl-dots .owl-dot:focus {
  outline: none;
}

.shap {
	position: absolute;
	opacity: 0.02;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	border-radius: 45px;
	left: 90px;
	z-index: -1;
}
.shap.one {
	background-image: -moz-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
	background-image: -webkit-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
	background-image: -ms-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
	width: 650px;
	height: 510px;
	top: -155%;
}
.shap.two {
	background-image: -moz-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
	background-image: -webkit-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
	background-image: -ms-linear-gradient(140deg, #7d0df0 0%, #0cb6e7 100%);
	width: 666px;
	height: 330px;
	top: -145%;
	left: 290px;
}
.app_testimonial_item .author-img {
	width: 70px;
	height: 70px;
	border-radius: 100%;
	overflow: hidden;
	margin: 0 auto 15px;
}
.app_testimonial_item .author-img img {
	width: auto;
	border-radius: 100%;
	max-width: 100%;
}
.app_testimonial_item .author_info {
	margin-bottom: 35px;
}
.app_testimonial_slider .app_testimonial_item p {
	color: #677294;
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	margin-bottom: 1rem;
}

/** Model **/
.free-cyber-security-program {
	margin: 0;
}
.free-cyber-security-program .modal-dialog {
	max-width: 600px;
}
.free-cyber-security-program .modal-dialog .modal-content {
	border-radius: 0;
}
.free-cyber-security-program h1.modal-title {
	font-size: 40px;
	font-weight: 700;
	line-height: 40px;
	color: #222d39;
	margin: 0 0 10px 0;
}
.free-cyber-security-program .modal-content .modal-header,
.free-cyber-security-program .modal-content .modal-body,
.free-cyber-security-program .modal-content .modal-footer {
	padding: 40px;
}
.free-cyber-security-program .modal-content .modal-header {
	padding: 40px 10px 0 40px;
	border-bottom: 0;
	position: relative;
}
.free-cyber-security-program .modal-content .modal-body {
	padding: 5px 40px 20px 40px;
}
.free-cyber-security-program .modal-content .modal-body p {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color:#677294;
	margin: 0 0 20px 0;
}
.free-cyber-security-program button.btn-close {
	position: absolute;
	top: 10px;
	right: 10px;
}
#information-security .modal-header,
#enable-two-factor .modal-header,
#phishing-awareness .modal-header,
#password-awareness .modal-header {
	border-bottom: 0;
	padding: 0;
}
#information-security .modal-header button.btn-close,
#enable-two-factor .modal-header button.btn-close,
#phishing-awareness .modal-header button.btn-close,
#password-awareness .modal-header button.btn-close {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 99;
    background-color: #fff;
    opacity: 1;
}
#information-security .modal-body img,
#enable-two-factor .modal-body img,
#phishing-awareness .modal-body img,
#password-awareness .modal-body img {
	width: 100%;
    max-width: 500px;
    height: auto;
}

/** Step Two: Cyber Aware **/
.step-two-cyber-aware {
  padding: 120px 0;
}
.step-two-cyber-aware .custom_container .row {
  grid-row-gap:24px;
}
.step-two-cyber-aware .custom_container p {
  font-size: 16px;
  line-height: 26px;
  color: #677294;
  font-weight: 300;
  margin-bottom: 100px;
}
.step-two-cyber-aware .custom_container .service_item h4 {
  font-size: 20px;
  color: #3f4451;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  margin:0 0 20px 0;
}
.step-two-cyber-aware .custom_container .service_item p {
  font-size: 16px;
  color: #677294;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  margin:0 0 1rem 0;
}


/** Deliver Short Begin **/
.deliver-short {
  padding: 120px 0 90px;
  background-color: #fbfbfd;
}
.deliver-short h2 {
  text-align: center;
}
.deliver-short h3 {
  font-weight: 500;
  font-size: 32px;
  color: #222d39;
  margin-bottom: .5rem;
  text-align: left;
}
.deliver-short p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #677294;
  margin: 0 0 30px 0;
}
.deliver-short .p_feature_item {
  margin-top: 90px;
}
.deliver-short h4 {
  font-weight: 500;
  font-size: 24px;
  color: #677294;
  margin:0;
  padding-bottom: 40px;
}
.deliver-short ul.nav.nav-pills li {
  margin: 0 25px;
}
.deliver-short ul.nav.nav-pills li button {
  background-color: transparent;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #677294;
  border-radius: 0;
  padding: 0;
}
.deliver-short .tab-content {
  margin: 50px 0;
}




/** Footer Begin **/
.footer-section {
  background-color: #eff2f9;
  padding: 27px 0px;
  color: #7f88a6;
}
.footer-section .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-section .footer-main .copyright {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #7f88a6;
}
.footer-section .footer-main ul.list-unstyled {
  display: flex;
  margin-bottom: 0;
}
.footer-section .footer-main ul.list-unstyled li {
  padding:0 18px 0 0;
}
.footer-section .footer-main ul.list-unstyled li + li:before {
  content: "";
  width: 1px;
  height: 12px;
  background: #b1b7ca;
  display: inline-block;
  margin-right: 18px;
  vertical-align: middle;
}
.footer-section .footer-main ul.list-unstyled li:last-child {
  padding-right: 0;
}
.footer-section .footer-main ul.list-unstyled li a {
  color: #7f88a6;
  text-decoration: none;
  padding: 0;
  margin: 0;
}
/** End Footer **/

.mfp-bg.mfp-fade.mfp-fade-side.mfp-ready,
.mfp-fade.mfp-fade-side.mfp-ready {
	display: none;
}


/*--- navbar shadow when fixed---*/
.top-header.navbar_fixed {
  -webkit-box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
  box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
}
.top-header.navbar_fixed .navbar-nav li:last-child a {
  box-shadow: none;
}
.top-header .navbar-light .navbar-nav li:last-child  a.active {
  border-width: 2px;
}

/*--- fixed image align with dotted line---*/
@media screen and (min-width: 1400px) {
  .agency_featured_item.ct_item_two  {
    padding-top: 30px!important;
  }
  .agency_featured_item.ct_item_two .agency_featured_img img {
    max-width: 580px;
    top: -10px;
    position: relative;
  }
  .agency_featured_item.ct_item_three  {
    margin-top: 80px!important;
  }
  .agency_featured_item.ct_item_three .agency_featured_img img {
    max-width: 580px;
  }

}
.landing-link {
  background: none !important;
}
