/**
* ===========================================
*					Generic Css
* ============================================
*/

html {
	font-size: 100%;
}
body { 
	background: #fff; 
	color: #022581;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
}
a { 
	text-decoration: none;
	transition: color .2s ease,
		background-color .2s ease;
}
img,
svg {
	height: auto;
	max-width: 100%;
}
header, 
section, 
footer,
article {
	width: 100%;
}

h2 {
	line-height: 1.5;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	margin-bottom: 1.5rem;
	font-weight: bold;
	line-height: 1.4;
}
.sc-pd-extra-small{
	padding-top: 2rem;
	padding-bottom: 2rem;	
}
.sc-pd-small{
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;	
}
.sc-pd-med{
	padding-top: 5rem;
	padding-bottom: 5rem;		
}
.sc-pd-large {
	padding-top: 7rem;
	padding-bottom: 7rem;		
}
.bg-img {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.bg-blue{
	background-color: #022581;
}
.bg-lightblue{
	background-color: #1D51DB;
}
.bg-lightgrey {
	background-color: #EDEDED;
}

.btn {
	color: #000057;
	background: #08dfda;
	display: inline-block;
	padding: 0.75em 1.25em;
	font-weight: 500;
	border-radius: 8px;
	font-size: 1em;
	line-height: 1.2;
	border: 2px solid #08dfda;
	font-weight: bold;
}
.btn--shadow {
	box-shadow: 0 10px 30px rgba(2,37,129,0.5);
}
.btn--shadow:hover{
	box-shadow: none;
}
.btn:hover {
	color: #08dfda;
	background: transparent;
}
.btn--lightblue {
	color: #fff;
	border-color: #1D51DB;
	background-color: #1D51DB;
}
.btn--lightblue:hover {
	color: #1D51DB;
	border-color: #1D51DB;
	background-color: transparent;
}
.btn--yellow {
	background-color: #F9AE06;
	border-color: #F9AE06;
	color: #fff;
}
.btn--yellow:hover {
	background-color: transparent;
	border-color: #F9AE06;
	color: #F9AE06;
}
.btn--red {
	background: #ff0001;
	border-color: #ff0001;
	color: #fff;
}
.btn--red:hover {
	color: #ff0001;
}
.btn--blue {
	background: #022581;
	border-color: #022581;
	color: #fff;
}
.btn--blue:hover {
	color: #022581;
	background-color: #fff;
}
.btn--sky {
	background: #009fe3;
	border-color: #009fe3;
	color: #fff;
}
.btn--sky:hover {
	color: #009fe3;
}
.btn--white {
	background: #fff;
	border-color: #fff;
	color: #000057;
}
.btn--white:hover {
	color: #fff;
}
.btn--perple {
	background: #5454d4;
	border-color: #5454d4;
	color: #fff;
}
.btn--orange {
	background-color: #F9AE04;
	color: #fff;
	border-color: #F9AE04;
}
.btn--orange:hover {
	background-color: #fff;
	color:  #F9AE04;
	border-color:  #F9AE04;
}
.btn--perple:hover {
	color: #5454d4;
}
.btn--dark--perple {
	background: #24195d;
	border-color: #24195d;
	color: #fff;
}
.btn--dark--perple:hover {
	color: #24195d;
}
.btn--outline--blue {
	background: #0000;
	color: #001039;
	border: 2px solid #001039;
}
.btn--outline--blue:hover {
	background: #001039;
	color: #fff;
}
.btn--outline--white {
	background: #0000;
	color: #fff;
	border: 2px solid #fff;
}
.btn--outline--white:hover {
	background: #fff;
	color: #000057;
}
.btn--outline--yellow {
	color: #F9AE06;
	background-color: #0000;
	border-color: #F9AE06;
}
.btn--outline--yellow:hover {
	color: #fff;
	background-color: #F9AE06;
}
.btn--outline--lightblue {
	color: #1D51DB;
	background-color: #0000;
	border-color: #1D51DB;
}
.btn--outline--lightblue:hover {
	color: #fff;
	background-color: #1D51DB;
}

.fw-Poppins {
	font-family: 'Poppins', sans-serif;
}
.fw-500 {
	font-weight: 500;
}
.text-bigger, .text-bigger p {
	font-size: 1.325rem;
}
.text-big, .text-big p {
	font-size: 1.325rem;
}
.text-med , .text-med p {
	font-size: 1.125rem;
}
.text-blue {
	color: #020359;
}
.text-light-blue{
	color: #1D51DB;
}
.text-yellow{
	color: #F9AE06;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	margin-bottom: 1.5rem;
}
p {
	margin-bottom: 1.5rem;
}

/**
* ======================================================================================
*									Header Css
* =======================================================================================
*/
.siteheader {
	position: absolute;
	padding: 1rem 0;
	z-index: 1009;
}
.siteheader-menu li {
	list-style: none;
	position: relative;
	display: inline-block;
	padding: 0 1rem;
}
.siteheader-menu li a {
	display: block;
	color: #fff;
}
.site-logo {
	display: inline-block;
	width: 170px;
	max-width: 100%;
}
.product-business-arrow {
	position: absolute;
	display: inline-block;
	transform: rotate(225deg);
	right: 70px;
	top: calc(100% - 50px);
}

/**
* ======================================================================================
*									Footer Css
* =======================================================================================
*/
.sitefooter{
	font-size: 1rem;
	background-color: #022581;
}
.footer-top{
	border-bottom: 1px solid #7b8198;
}
.footer-logo img{
	max-width: 175px;
}
.footer-social li {
	display: inline-block;
	width: 60px;
	height: 60px;
	text-align: center;
	background: #009fe3;
	border-radius: 50%;
	line-height: 60px;
	margin-left: 5px;
}
.footer-social li img {
	max-height: 26px;
	vertical-align: middle;
}
.footer-menu li {
	display: block;
	text-align: center;
}
.footer-menu li a {
	color: #fff;
	display: block;
	line-height: 1;
}
.footer-copyright {
	font-size:1rem;
}

/**
* ======================================================================================
*									HomePage
* =======================================================================================
*/
.sc-home-hero {
	color: #fff;
	padding-top: 0;
}
.sc-home-hero .hero-content {
	padding-top: 100px;
	padding-bottom: 80px;
}
.sc-home-hero .hero-content{
	width: 760px;
	max-width: 100%;
}
.sc-home-hero h1 {
	font-weight: 700;
}
.sc-home-hero h3{
	color : #ff0001;
	font-weight: 700;
}
.scan--box .form-control,
.scan--box button {
	box-shadow: 0 10px 30px rgb(0 0 0 / 25%);
}
.scan--box .your-domain-name::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #cccbce;
}
.scan--box .your-domain-name::-moz-placeholder { /* Firefox 19+ */
	color: #cccbce;
}
.scan--box .your-domain-name:-ms-input-placeholder { /* IE 10+ */
	color: #cccbce;
}
.scan--box .your-domain-name:-moz-placeholder { /* Firefox 18- */
	color: #cccbce;
}
.scan--box .your-domain-name {
	background: #fff;
	padding: 1.125rem 1.5rem;
	border-radius: 7px;
	border: none;
}
.scan--box .your-domain-name:focus-visible {
	outline: none;
}
.sc-take-action {
	background-color: #dcdcdc;
	color: #001039;
}
.sc-dark-web .dark-web-content {
	width: 100%;
	max-width: 600px;
}
.sc-dark-web .dark-web-content.dark-web-content-left h2{
	line-height: 1.5;
}
.sc-Monitoring {
	background: rgb(222, 222, 220);
	background: -o-linear-gradient(left, rgba(222, 222, 220, 1) 0%, rgba(176, 180, 180, 1) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(222, 222, 220, 1)), to(rgba(176, 180, 180, 1)));
	background: linear-gradient(90deg, rgba(222, 222, 220, 1) 0%, rgba(176, 180, 180, 1) 100%);
	overflow: hidden;
}
.sc-Monitoring .monitoring--img {
	margin-bottom: -320px;
}
.sc-Breaches h2 {
	margin-bottom: 1rem;
}
.sc-Breaches .Breaches--box {
	background: #fff;
	border: 1px solid #022581;
	border-radius: 10px;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
}
.sc-Breaches .Breaches--box h5 {
	color: #1D51DB;
}
.sc-Breaches .Breaches--box h5 span {
	color: #5454d4;
	font-weight: 700;
}
.sc--Knowledge {
	background: rgb(222, 222, 220);
	background: -o-linear-gradient(left, rgba(222, 222, 220, 1) 0%, rgba(176, 180, 180, 1) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(222, 222, 220, 1)), to(rgba(176, 180, 180, 1)));
	background: linear-gradient(90deg, rgba(222, 222, 220, 1) 0%, rgba(176, 180, 180, 1) 100%);
	color: #000000;
}
.sc--Knowledge .Knowledge--box {
	border-radius: 10px;
	overflow:hidden;
	box-shadow: 0px 8px 20px 0px rgb(0 0 0 / 10%);
	-webkit-box-shadow: 0px 8px 20px 0px rgb(0 0 0 / 10%);
	-moz-box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.1);
}
.sc--Knowledge .Knowledge--box .Knowledge-body {
	background:#fff;
	padding: 1.75rem;
	color: #31356a;
}
.Knowledge-base-slider .owl-nav .owl-prev-icon, .Knowledge-base-slider .owl-nav .owl-next-icon, .Latest-feeds-slider .owl-nav .owl-prev-icon, .Latest-feeds-slider .owl-nav .owl-next-icon {
	position: absolute;
	top: 50%;
	transform: translate(0px, -50%);
	padding: 4px;
	border-radius: 50%;
	display: inline-block;
	width: 40px;
	height: 40px;
	text-align: center;
	background: #0000;
	border: 1px solid #001039;
}
.sc-Latest-feeds .feeds-date {
	color: #999999;
	font-size: 0.9rem;
}
.sc-Latest-feeds .feeds-date a {
	color: #999999;
}
.sc-protect-business {
	background: #1D51DB;
}
.sc-protect-business h1 {
	color: #0c183d;
	font-weight: 700;
}
.knowledge__box {
	display: block;
	width: 630px;
	max-width: 100%;
}
.product-business-box {
	display: block;
	width: 600px;
	max-width: 100%;
}
/**
* ======================================================================================
*									Support
* =======================================================================================
*/
.sc-support-hub {
	background: #F4F4F4;
	font-weight: 300;
}
.sc-support-hub h3 {
	color: #022581;
}
.sc-support-hub h3 span{
	color: #F9AE06;
}
.sc-support-FAQ h4, .sc-support-info h4 {
	color: #020359;
	font-size: calc(1.275rem + .4vw);
}
.support-divider {
	border-top: 1px solid #020359;
	opacity: 0.5;
}
.info-con-box dl, 
.info-con-box ol, 
.info-con-box ul {
	margin-top: 0;
	margin-bottom: 1.5rem;
}
.info-title-box {
	background: #fff;
	padding-bottom: 2rem;
	color: #1D51DB;
	cursor: pointer;
	position: relative;
	font-size: 1.25rem;
	font-weight: 600;
}
.info-con-box h5 {
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
}
.info-con-box h5:not(:first-child) {
	padding-top: 2rem;
	position: relative;
}
.info-con-box h5:not(:first-child):before {
	content: "";
	background: #1D51DB;
	height: 0.5px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.info-con-box ul {
	list-style: none;
	padding: 0;
}
.info-con-box ul li {
	position: relative;
	padding-left: 1.5rem;
}
.info-con-box ul li:after {
	content: "";
	position: absolute;
	background: #F9AE06;
	width: 11px;
	height: 3px;
	left: 0;
	top: 15px;
}
.info-con-box {
	color: #022581;
	display:none;
	padding-bottom: 1rem;
	border-bottom: 0.5px solid #1D51DB;
}
.sc-support-info .info-title-box {
	position: relative;
	font-size: 1.25rem;
	font-weight: bold;
	opacity: .4;
	margin-bottom: 3rem;
}
.sc-support-info .info-title-box::after {
	content: '';
	display: block;
	position: absolute;
	width: 45px;
	height: 7px;
	left: 50%;
	bottom: 0;
	opacity: 0;
	transform: translatex(-50%);
	background-color: #F9AE06;
}
.sc-support-info .info-title-box.active {
	opacity: 1;

}
.sc-support-info .info-title-box.active::after{
	opacity: 1;
}
.sc-support-info .info-title-box .info-minus-icon, .sc-support-info  .info-title-box.active .info-plus-icon {
	display:none;
}
.sc-support-info .info-title-box.active .info-minus-icon {
	display:block;
}

/**
* ======================================================================================
*									Knowledge Base
* =======================================================================================
*/
.sc--hero {
	padding-top: 150px;
	padding-bottom: 60px;
	color: #fff;
	min-height: 55vh;
	background-color: #1D51DB;
}
.sc--hero h2 {
	font-weight: 400;
}
.sc--hero h1 {
	margin-bottom :1rem;
}
.sc--hero h4 {
	font-weight: 400;
}
.sc-knowledge-base ul {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}
.sc-knowledge-base ul li {
	padding-left: 20px;
	position: relative;
}
.sc-knowledge-base ul li:before{
	content: "";
	position: absolute;
	left: 0;
	top: 15px;
	height: 2px;
	width: 7px;
	background-color: #696871;
}
.sc-knowledge-base h2:not(.h1) {
	font-weight: 400;
	line-height: 1.6;
}
.sc-knowledge-base h2 span {
	color: #1D51DB;
}
.sc--FAQ {
	background: #f4f4f4;
}
.FAQ--box .FAQ--content {
	display: none;
}
.FAQ--box.active .FAQ--content {
	font-size: 1rem;
	display: block;
	padding: 1rem 1.75rem;
}
.FAQ--box .FAQ--title {
	background: #fff;
	padding: 1rem 4rem 1rem 1.5rem;
	box-shadow: 0px 1px 6px 0px rgb(0 0 0 / 25%);
	-webkit-box-shadow: 0px 1px 6px 0px rgb(0 0 0 / 25%);
	-moz-box-shadow: 0px 1px 6px 0px rgb(0 0 0 / 25%);
	border-radius: 10px;
	margin-bottom: 1.25rem;
	color: #022581;
	cursor: pointer;
	position:relative;
}
.FAQ--box .FAQ--title:after {
	content: "";
	background-image: url(../images/plus-blue.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 25px;
	width: 25px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0px, -50%);
}
.FAQ--box.active .FAQ--title:after{
	background-image: url(../images/minus-blue.svg);
}
.sc--secured {
	background : #ff0000;
	color : #fff;
}
.sc-knowledge-base--box {
	display: block;
	max-width: 600px;
}
.why-matter {
	background-image: url(../images/mattericons.png);
	background-repeat: no-repeat;
	background-position: center;
}
.why-matter p {
	margin-bottom: 0.5rem;
}

/**
* ======================================================================================
*									 About Us
* =======================================================================================
*/
.sc--about-hero .hero-content span {
	color: #F9AE06;
}
.sc-made-product {
	background : #000c32;
	color: #fff;
}

/**
* ======================================================================================
*									Product
* =======================================================================================
*/
.sc-Product-hero img {
	position: relative;
}
.sc-Product-hero {
	padding-top: 0;
	background-color: #1D51DB;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center right;
}
.sc-Product-hero h3 {
	font-weight: 400;
	color: #009ee2;
}
.sc-Product-secured {
	background: #1D51DB;
}
.sc-product-knowledge {
	background: #E5E5E5;
}
.sc-product-knowledge .btn--large {
	font-size: 1.35rem;
}
.sc-product-business {
	background-color: #1D51DB;
}
.sc-product-business .product-mobile-img {
	position: absolute;
	left: 0;
	bottom: -15%;
	max-width: 38%;
}
.sc-made-product {
	padding-top: 13rem;
	padding-bottom: 13rem;
}
.sc-made-product img {
	position: absolute;
	right: 0;
	top: -210px;
}


/**
* ======================================================================================
*								Contact Pop Up
* =======================================================================================
*/
#contact-enquiry .modal-header .btn-close {
	background: none;
	opacity: 1;
}
#contact-enquiry .modal-header .btn-close:focus {
	outline: none;
	box-shadow: none;
}
#contact-enquiry .form-group .form-control:focus, .btn-check-submit:focus{
	box-shadow: none;
}
#contact-enquiry .form-group .form-control{
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #1D51DB;
	padding: 1rem 0;
}
#contact-enquiry .form-group .form-control::-webkit-input-placeholder { 
	color: #C3C3C3;
}
#contact-enquiry .form-group .form-control:-ms-input-placeholder { 
	color: #C3C3C3;
}
#contact-enquiry .form-group .form-control::placeholder {
	color: #C3C3C3;
}
.btn-check-submit{
	color: #fff;
	background-color: #1D51DB;
	border: 1px solid #1D51DB;
	padding: 1em 2em;
}
.btn-check-submit:hover{
	color: #1D51DB;
}

.other-box{
	display: none;
}
.other-box.active{
	display: block;
}
.other-reason-text-box{
	vertical-align: bottom;
	border: none;
	border-bottom: 1px solid #406ce0;
	height: 39px;
}
.other-reason-text-box:focus{
	outline: none;
}
/**
* ======================================================================================
*									common Page
* =======================================================================================
*/
.sc-page-hero .row{
	height: 150px;
}


/**
* ======================================================================================
*									Support
* =======================================================================================
*/
.sc-Support-hero h1, .sc-Support-hero h4 {
	margin-bottom: 0;
}
.sc-Support-hero h1 span {
	color: #F9AE06;
}

/**
* ======================================================================================
*									Single Post
* =======================================================================================
*/

.single-post .siteheader {
	position: relative;
	background: #0c183d;
}
.sc-related-post .head-blue h3{
	color: #020359;
}

/**
* ======================================================================================
*									Contact us
* =======================================================================================
*/
.sc-Contact-hero h1 {
	margin-bottom: 0;
}
.sc-Contact-hero h2 {
	font-weight: 400;
}
.sc-contact {
	margin-top: -70px;
}
.sc-contact .contact-us-box li {
	line-height: 1.8;
	font-size: 1.125rem;
}
.sc-contact .contact-us-box li a {
	color:#fff;
}
.sc-contact .contact-us-box li:not(:last-child) {
	margin-bottom: 1.5rem;
}
.sc-contact .contact-us-box li img {
	vertical-align: top;
	margin-top: 8px;
}
.sc-contact .contact-us-box {
	background-color: #022581;
	padding: 2.75rem 3.5rem;
	border-radius: 20px;
	color: #fff;
	height: 100%;
}
.Enquiry-Now-Form {
	padding: 2.6rem 3.5rem 1.5rem 3.5rem;
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0 2px 8px rgb(0 0 0 / 20%);
	height: 100%;
}
.Enquiry-Now-Form .form-control {
	border: none;
	border-bottom: 1px solid #1D51DB;
	border-radius: 0;
	padding: .7rem 0rem;
}
.Enquiry-Now-Form .form-control::-webkit-input-placeholder { /* Edge */
	color: #C3C3C3;
}
.Enquiry-Now-Form .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #C3C3C3;
}
.Enquiry-Now-Form .form-control::placeholder {
	color: #C3C3C3;
}
.Enquiry-Now-Form .form-group .form-control:focus {
	box-shadow: none;
}
.Enquiry-Now-Form .btn-check-radio {
	font-weight: 500;
	color: #1D51DB;
	background-color: transparent;
	border: 1px solid #1D51DB;
	padding: 0.557em 1.2em;
}
.Enquiry-Now-Form .btn-check-radio:hover , .Enquiry-Now-Form .btn-check:checked+.btn-check-radio {
	color: #fff;
	background-color: #F9AE06;
	border: 1px solid #F9AE06;
}
.Enquiry-Now-Form .btn:focus, .Enquiry-Now-Form .btn-check:focus+.btn {
	box-shadow: none;
}

/**
* ======================================================================================
*								Pricing plans
* =======================================================================================
*/
.sc-pricing-tbl {
	background-color: #E5E5E5;
}
.sc-pricing-tbl .pricing-box {
	background-color: #fff;
	border-radius: 30px;
	padding: 3.5rem 4rem;
	color: #1D51DB;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.sc-pricing-tbl .pricing-box.pricing-box-odd {
	color: #F9AE06;
}
.check-icon {
	position: relative;
	padding-left: 1.75rem;
	padding-top: 6px;
	padding-bottom: 6px;
	font-size: 1.125rem;
	color: #022581;
}
.check-icon::after {
	position: absolute;
	content: "";
	background-image: url(../images/circle-check.svg);
	height: 18px;
	width: 18px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	left: 0;
	top: 15px;
}
.check-icon-yellow::after{
	background-image: url(../images/circle-check-orang.svg);
}
.sc-pricing-tbl .pricing-box .pricing-title {
	font-weight: 700;
}
.sc-pricing-tbl .pricing-box .pricing-title span{
	font-size: 1.25rem;
	font-weight: 500;
}

/**
* ======================================================================================
*									Personal And Business
* =======================================================================================
*/
.sc-personal-business h1, .sc-personal-business h2 {
	margin-bottom: 0;
}
.sc-personal-business h1 span{
	color: #F9AE06;
}
.sc-safeweb {
	background-color: #E5E5E5;
}
.sc-safeweb .safeweb-box{
	background-color: #fff;
	padding: 3rem;
	border-radius: 20px;
}
.safeweb-box-head .monthly-charge span{
	font-size: 1.25rem;
	font-weight: 400;
}

/**
* ======================================================================================
*									Take action Popup
* =======================================================================================
*/
#contact-enquiry .modal-content{
	background: transparent;
	padding: 0;	
	border: none;
}
#contact-enquiry .contact-enquiry-main{
	padding: 1.5rem 1.75rem;
	border-radius: 15px;
}
.cont-enq-bottom .notify--btn{
	right: 0;
	top: 0;	
}
.cont-enq-bottom .form-control {
	font-size: 13px;
}
/* #contact-enquiry .modal-content {
padding: 1.5rem 1.75rem;
border-radius: 15px;
} */
#contact-enquiry .form-check-input {
	display:none;
}
#contact-enquiry .form-check-label {
	background: #0000;
	color: #001039;
	border: 2px solid #001039;
	padding: 1rem 1.85rem;
	font-size: 1.35rem;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
}
#contact-enquiry .form-check-input:checked ~ label.form-check-label {
	background: #ff0001;
	border-color: #ff0001;
	color: #fff;
}
.Contact--Form .form-group {
	margin-bottom: 1rem;
}
.Contact--Form textarea {
	resize:none;
	height:180px;
}
.Contact--Form .form-control {
	padding: 1rem 1.5rem;
	border-radius: 10px;
	font-size: 1.15rem;
}
.Contact--Form .wpcf7-spinner {
	display: block;
	margin: 0;
}
.Contact--Form .btn  {
	border-radius: 10px;
}

/**
* ======================================================================================
*									Media Query
* =======================================================================================
*/
@media only screen and (min-width: 576px) {
	.sc-home-hero h1 {
		font-size: calc(1rem + 1vw);
	}
}
@media only screen and (min-width: 768px) {
	.half-container {
		max-width: 650px;
	}
	.Knowledge-base-slider .owl-nav .owl-prev-icon, .Latest-feeds-slider .owl-nav .owl-prev-icon {
		left: -3%;
	}
	.Knowledge-base-slider .owl-nav .owl-next-icon, .Latest-feeds-slider .owl-nav .owl-next-icon {
		right: -3%;
	}

	.footer-menu li {
		display: inline-block;
	}
	.footer-menu li a {
		margin-right: 15px;
		padding-right: 15px;
		border-right: 1px solid #fff;
	}
}
@media only screen and (min-width: 992px) {
	.half-container {
		display: block;
		max-width: 445px;
	}
	.sc-home-hero .hero-content {
		min-height: 100vh;
	}
	.siteheader {
		padding: 1.5rem 0;
	}
	.sc-dark-web .dark-web-content.dark-web-content-left {
		padding-right: 2rem;
	}
	.sc-trying-help .trying-help-con {
		max-width: 460px;
		width: 100%;
	}
	.siteheader-menu li .sub-menu {
		display: block;
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		min-width: 170px;
		box-shadow: 0 0 25px 0 rgb(0 0 0 / 8%);
		-webkit-box-shadow: 0 0 25px 0 rgb(0 0 0 / 8%);
		background-color: rgba(2,37,129,0.42);
		opacity: 0;
		z-index: 555;
		padding: 0;
		list-style: none;
		visibility: hidden;
		transition: 0.3s ease;
		-webkit-transition: 0.3s ease;
		-moz-transition: 0.3s ease;
		border-top: 1px solid #FFCD2C;
		padding: 0.5rem 0 0.5rem;
	}
	.siteheader-menu li.menu-item-has-children:hover {
		background-color: rgba(2,37,129,0.42);
	}
	.siteheader-menu li.menu-item-has-children:hover > .sub-menu {
		visibility: visible;
		opacity: 1;
	}
	.siteheader-menu li .sub-menu li {
		margin-left: 0;
		padding: 0;
		text-align: left;
		width: 100%;
	}
	.siteheader-menu li .sub-menu a {
		display: block;
		padding: 0.35rem 0.5rem 0.35rem 2rem;
		margin: 0;
		font-size: 14px;
		position: relative;
		color: #fff;
	}
	.siteheader-menu li .sub-menu a::before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translatey(-50%);
		width: 40px;
		height: 40px;
		background-image: url('../images/arrow-right-yellow.svg');
		background-repeat: no-repeat;
		background-position: center;
	}
	.sc-dark-web .dark-web-content {
		padding-right: 2rem;
	}
	.sc-personal__img {
		text-align: center;
		position: absolute;
		top: -20px;
		width: 100%;
	}
	.pricing-logo-tit {
		line-height: 0.75;
	}
	.sc-pricing-tbl .pricing-box .pricing--logo-box {
		height: 48px;
	}
}
@media only screen and (min-width: 1200px) {
	.half-container {
		max-width: 535px;
	}
	.siteheader {
		padding: 2rem 0;
	}
	.h1, h1 {
		font-size: 1.875rem;
	}
	.h2, h2 {
		font-size: 1.75rem;
	}
	.h3, h3 {
		font-size: 1.5rem;
	}
	.sc-home-hero h1 {
		font-size: calc(1.25rem + 0.9vw);
	}
}	
@media only screen and (min-width: 1400px) {
	.sc--hero h2 {
		line-height: 50px;
	}
	.half-container {
		max-width: 625px;
	}
	.mb-xl-4.5 {
		margin-bottom: 2.25rem;
	}
	.h1, h1 {
		font-size: 2.625rem;
	}
	.h2, h2 {
		font-size: 1.75rem;
	}
	.h3, h3 {
		font-size: 1.625rem;
	}
	.btn--large {
		padding: 1rem 1.85rem;
		font-size: 1.125rem;
	}
	.sc-home-hero h1 {
		font-size: calc(1.375rem + 1vw);
	}
	.sc-protect-business h1 {
		font-size: calc(1.375rem + 1.35vw);
	}	
	.sc-Product-hero h3 {
		font-size: calc(1.3rem + .785vw);
	}
	.info-title-box {
		font-size: 1.35rem;
	}
	.siteheader-menu li:not(:first-child) {
		margin-left: 1rem;
	}
}
@media only screen and (min-width: 1600px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1450px;
	}
	.half-container {
		width: 100%;
		max-width: 690px;
	}
	.Knowledge-base-slider .owl-nav .owl-prev-icon, .Latest-feeds-slider .owl-nav .owl-prev-icon {
		left: -6%;
	}
	.Knowledge-base-slider .owl-nav .owl-next-icon, .Latest-feeds-slider .owl-nav .owl-next-icon {
		right: -6%;
	}
	.sc-trying-help .trying-help-con {
		max-width: 550px;
	}
}
/**
* ======================================================================================
*									Media Query
* =======================================================================================
*/
@media only screen and (max-width: 1599px) {
	.sc-pricing-tbl .pricing-box {
		padding: 3rem;
	}
}
@media only screen and (max-width: 1399px) {
	.sc-made-product {
		padding-bottom: 12rem;
	}
	.sc-contact .contact-us-box {
		padding: 2.5rem;
	}
	.Enquiry-Now-Form {
		padding: 2.25rem 2.5rem 2.5rem 2.5rem;
	}
}
@media only screen and (max-width: 1199px) {
	.sc-dark-web .dark-web-content {
		max-width: 430px;
	}
	.sc-made-product {
		padding-top: 8rem;
		padding-bottom: 8rem;
	}
	.sc-support-info .info-title-box {
		padding-bottom: 1rem;
		margin-bottom: 2rem;
	}
	.sc-support-info .info-title-box::after {
		width: 30px;
		height: 5px;
	}
	.check-icon {
		font-size: 1.125rem;
	}
	.check-icon::after {
		top: 16px;
	}
}
@media only screen and (max-width: 991px) {
	.half-container {
		margin-left: auto;
		margin-right: auto;
	}
	.sc-Product-hero {
		padding-bottom: 0;
	}
	.text-big, .text-big p {
		font-size: 1.125rem;
	}
	.text-bigger, .text-bigger p {
		font-size: 1.25rem;
	}
	.text-med, .text-med p {
		font-size: 1rem;
	}
	.sc-dark-web .dark-web-content {
		max-width: 100%;
		padding: 4rem 0;
	}
	.sc-Monitoring .monitoring--img {
		margin-bottom: -360px;
	}
	.sc-made-product img {
		position: relative;
		height: 600px;
		top:0;
	}
	.siteheader-mobile-menu li {
		padding: 12px 0;
		position: relative;
	}
	.siteheader-mobile-menu li > a {
		display: block;
		padding: 0;
		color: #fff;
		font-size: 1.5rem;
	}
	.mobile-menu--section {
		background-color: #1D51DB;
		color: #fff;
	}
	.siteheader-mobile-menu .sub-menu {
		display: none;
		list-style: none;
		padding-left: 15px;
	}
	.siteheader-mobile-menu {
		padding-top: 4rem;
	}
	.open-children {
		position: absolute;
		right: 0;
		top: 19px;
		height: 33px;
		width: 30px;
		display: flex !important;
		justify-content: center;
		align-items: center;
		line-height: 1;
		z-index: 10;
	}
	.siteheader-mobile-menu li.menu-item-has-children.active .open-children {
		transform: rotate(180deg);
	}
	.open-children svg {
		width: 18px;
		margin: 0 auto;
	}
	.product-business-arrow {
		top: calc(100% - 120px);
		right: -50px;
		width: 120px;
		-webkit-transform: scaleX(-1) rotate(-60deg);
		transform: scaleX(-1) rotate(-60deg);
	}
	.Modal-Data-Submit-Form label[for="f_checkbox"]{
		display: unset;
	}


}
@media only screen and (max-width: 767px) {
	body {
		font-size: 1rem;
	}
	.sc-pd-med {
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}
	.sc-pd-large {
		padding-top: 4.5rem;
		padding-bottom: 4.5rem;
	}
	.sc-Monitoring .monitoring--img {
		margin-bottom: -300px;
	}
	.Knowledge-base-slider .owl-nav .owl-prev-icon, .Latest-feeds-slider .owl-nav .owl-prev-icon {
		left: -5%;
	}
	.Knowledge-base-slider .owl-nav .owl-next-icon, .Latest-feeds-slider .owl-nav .owl-next-icon {
		right: -5%;
	}
	.sc-made-product {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.footer-menu li {
		margin-bottom: 0.75rem;
	}
}
@media only screen and (max-width: 575px) {
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		padding-right: 2.25rem;
		padding-left: 2.25rem;
	}
	h1, .h1 {
		font-size: 2.375rem;
	}
	h2, .h2 {
		font-size: 1.375rem;
	}
	.btn {
		line-height: 27px;
		font-size: 1.125rem;
	}
	.btn--large {
		padding: 0.75rem 1.25rem;
		font-size: 1rem;
	}
	.footer-menu li {
		margin-bottom: 2rem;
	}
	.footer-copyright {
		font-size: 11px;
	}
	.sc-Breaches .Breaches--box h5 {
		font-size: 1.125rem;
	}
	.sc-dark-web .dark-web-content {
		padding: 3.5rem 2.25rem;
		background: #E5E5E5;
	}
	.sc-dark-web .dark-web-content p:last-child {
		margin-bottom:0;
	}
	.sc-protect-business h1 {
		font-size: 1.75rem;
	}
	.sc--secured h1 {
		font-size: 1.75rem;
		max-width: 300px;
	}
	.sc-Monitoring .monitoring--img {
		margin-bottom: -260px;
	}
	.Knowledge-base-slider .owl-nav .owl-prev-icon, .Knowledge-base-slider .owl-nav .owl-next-icon, .Latest-feeds-slider .owl-nav .owl-prev-icon, .Latest-feeds-slider .owl-nav .owl-next-icon {
		padding: 6px;
	}
	.Knowledge-base-slider .owl-nav .owl-prev-icon, .Latest-feeds-slider .owl-nav .owl-prev-icon {
		left: -2%;
	}
	.Knowledge-base-slider .owl-nav .owl-next-icon, .Latest-feeds-slider .owl-nav .owl-next-icon {
		right: -2%;
	}
	.text-bigger, .text-bigger p {
		font-size: 1.125rem;
	}
	.sc-home-hero h1 {
		margin-bottom: 2rem;
		line-height: 1.3;
	}
	.homehero-sub-con {
		background: #022581;
		color: #fff;
		padding: 2.5rem;
	}
	.homehero-sub-con p {
		margin-bottom: 0;
	}
	.sc--secured h2:first-child {
		font-size: 2.375rem;
	}
	.product-business-arrow {
		top: calc(100% - 110px);
		right: -10px;
	}
	.sc-product-business p {
		padding-right: 2rem;
	}
	.sc-Breaches .Breaches-check-box img {
		width: 30px;
		height: 30px;
	}
	.sc-contact .contact-us-box, .Enquiry-Now-Form {
		padding: 2rem;
	}
	.sc-pricing-tbl .pricing-box {
		padding: 3rem 2rem;
	}
	.check-icon {
		font-size: 1rem;
		padding-left: 1.65rem;
	}
	.check-icon::after {
		top: 13px;
		height: 17px;
		width: 17px;
	}
	.cont-enq-bottom .btn {
		line-height: 14px;
		font-size: 1rem;
		width: 100%;
		margin-top: 10px;
	}
}
@media only screen and (max-width: 375px) {
	.sc-Monitoring .monitoring--img {
		margin-bottom: -230px;
	}
}