/*
 * Template Name: Cybermatch - Technology HTML5 Template
 * Author: shalevlevi - (https://www.fiverr.com/shalevlevi)
 * Version: 1.0
 * Copyright 2025 shalevlevi

===========================================
    
    All include section: 

    01. Google fonts
    02. Basic css
    03. Preloader css
    04. hamberger css
	05. header section css
	06. product section css
	07. newsletter section css
	08. footer section css
	09. category section css
	10. category mobile device menu section css
	11. home section css
	12. cybersecurity categories section css
	13. comparison section css
	14. shortlist section css
	15. audience section css
	16. blog section css
	17. back to top css


===========================================


*/

/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

:root {
	--White-Color: #ffffff;
	--Primary-Color: #403F4C;
	--Common-Color: #0066FF;
	--Head-Color: #3D3D3D;
	--Black-Color: #000000;

	--body-font: 15px;
	--Text-size01: 25px;
	--Text-size02: 20px;
	--Text-size03: 17px;
	--Text-size04: 50px;
	--Text-size05: 40px;
	--Text-size06: 70px;
	--Text-size07: 13px;
	--Text-size08: 30px;
	--Text-size09: 35px;
}


/*======================
   02. Basic css
========================*/
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 24px;
	font-size: var(--body-font);
	font-weight: 400;
	background: var(--White-Color);
	color: var(--Primary-Color);
	font-family: "TikTok Sans", sans-serif;
	text-transform: capitalize;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus, input:focus, textarea:focus {
	outline: 0;
}

h1, h2, h3, h4, h5, h6, h7 {
	font-family: "Funnel Display", sans-serif;
}

.mt_5 {
	margin-top: 5px;
}

.mt_10 {
	margin-top: 10px;
}

.mt_15 {
	margin-top: 15px;
}

.mt_20 {
	margin-top: 20px;
}

.mt_25 {
	margin-top: 25px;
}

.mt_30 {
	margin-top: 30px;
}

.mt_35 {
	margin-top: 35px;
}

.mt_40 {
	margin-top: 40px;
}

.head_text01 {
	font-size: var(--Text-size02);
	font-weight: 700;
	line-height: 25px;
	color: var(--Head-Color);
}

.head_text02 {
	font-size: var(--Text-size05);
	font-weight: 300;
	line-height: 50px;
	color: var(--Common-Color);
}

.item_wrap {
	border-radius: 40px 40px 40px 0;
	background: #FCFDFF;
	border: 1px solid #0066FF1A;
	position: relative;
	padding: 25px 15px;
	margin-left: 10px;
}

.item_wrap::before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border: 1px solid #0066FF1A;
    bottom: -10px;
    left: -10px;
    z-index: 1;
}

.item_wrap::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: -1.5px;
    width: 5px;
    height: 8px;
    background: #FCFDFF;
    z-index: 1;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.item_wrap2 {
	padding: 25px 40px;
	border-radius: 40px 40px 0 40px;
	background: #FCFDFF;
	border: 1px solid #0066FF1A;
	position: relative;
	margin-right: 10px;
}

.item_wrap2::before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border: 1px solid #0066FF1A;
    bottom: -10px;
    right: -10px;
    z-index: 1;
}

.item_wrap2::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: -1.1px;
    width: 4.4px;
    height: 8px;
    background: #FCFDFF;
    z-index: 1;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

/*======================
   03. Preloader css
========================*/
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.loader3 {
	width: 50px;
	height: 50px;
	display: inline-block;
	padding: 0;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: var(--Common-Color);
	-webkit-animation: loader3 1.5s linear infinite;
	        animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	-webkit-animation-delay: -0.9s;
	        animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}

/*======================
   04. hamberger css
========================*/
.hamburger_menu {
    cursor: pointer;
    display: none;
    z-index: 999;
}

.hamburger_menu span {
    background: var(--Common-Color);
    width: 30px;
    height: 3px;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.hamburger_menu:hover .line_top {
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
}

.hamburger_menu:hover .line_bottom {
	-webkit-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	        transform: translateY(100%);
}

.hamburger_menu .line_top.current {
	-webkit-transform: translateY(200%) rotate(135deg);
	    -ms-transform: translateY(200%) rotate(135deg);
	        transform: translateY(200%) rotate(135deg);
}

.hamburger_menu .line_center.current {
	opacity: 0;
}

.hamburger_menu .line_bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	    -ms-transform: translateY(-325%) rotate(-135deg);
	        transform: translateY(-325%) rotate(-135deg);
}

/*======================
   05. header section css
========================*/
header {
	position: fixed;
	height: 100px;
	z-index: 1000;
	width: 100%;
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	background: var(--White-Color);
	top: 0;
	left: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.10);
	        box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.10);
}

header .container {
	max-width: 1750px !important;
}

header .logo img {
    max-width: 182px;
    width: 100%;
}

header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

header nav #menu i {
    font-size: var(--body-font);
    margin: 0 2px 0 0;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
}

header nav #menu li {
    display: inline-block;
    padding: 41px 15px;
}

header nav #menu li:hover .sub_menu {
    visibility: visible;
    opacity: 1;
}

header nav #menu li:hover > a {
	 color: var(--Common-Color);
}

header nav #menu li a {
    font-size: var(--body-font);
    color: var(--Primary-Color);
    padding: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: relative;
}

header nav #menu li:last-child a{
	margin-right: 0;
}

header nav #menu li a i {
	-webkit-transition: .4s;
	-o-transition: .4s;
	transition: .4s;
	color: var(--Common-Color);
}

header nav #menu li:hover a i {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
}

header nav #menu li a::before {
	content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    background: var(--Common-Color);
    width: 0;
    height: 1px;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

header nav #menu li a.active::before,
header nav #menu li a:hover::before,
header nav #menu li:hover > a::before {
    width: 100%;
}

header nav #menu>li>a.active,
header nav #menu>li>a:hover,
header nav .sub_menu li a.active {
	color: var(--Common-Color) !important;
}

header nav .sub_menu {
    width: 215px;
    position: absolute;
    display: block;
    text-align: left;
    padding: 10px 0;
    margin: 0;
    border-radius: 4px;
    top: 120px !important;
    right: 20px !important;
    left: auto !important;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-top: 2px solid var(--Common-Color) !important;
    background: var(--White-Color);
    border: transparent;
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
	-webkit-box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.10);
	        box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.10);
}

header nav .sub_menu.dropdown-menu.show {
    top: 80% !important;
}

header nav .sub_menu li {
    display: block !important;
    padding: 8px 20px !important;
}

header nav .sub_menu li a {
    display: inline-block;
}

header nav .sub_menu li a::before {
    bottom: -5px !important;
    left: 0% !important;
}

header nav .search_box {
	width: 226px;
	height: 28px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	border-radius: 100px;
	border: 1px solid var(--Common-Color);
	position: relative;
}

header nav .search_box input {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: transparent;
	color: var(--Primary-Color);
	background: transparent;
	padding-left: 15px;
	resize: none;
}

header nav .search_box input::-webkit-input-placeholder {
	color: rgba(64, 63, 76, 0.50);
}

header nav .search_box input::-moz-placeholder {
	color: rgba(64, 63, 76, 0.50);
}

header nav .search_box input:-ms-input-placeholder {
	color: rgba(64, 63, 76, 0.50);
}

header nav .search_box input::-ms-input-placeholder {
	color: rgba(64, 63, 76, 0.50);
}

header nav .search_box input::placeholder {
	color: rgba(64, 63, 76, 0.50);
}

header nav .search_box button {
    position: absolute;
    color: var(--Common-Color);
    right: 4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    border: transparent;
    background: transparent;
    font-size: 13px;
}

.custom_btn {
	border-radius: 100px;
	background: -o-linear-gradient(337deg, #06F 26.92%, #00D7F4 100.7%);
	background: linear-gradient(113deg, #06F 26.92%, #00D7F4 100.7%);
	height: 28px;
	padding: 0 15px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	color: var(--White-Color);
	font-size: var(--body-font);
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

.custom_btn:hover {
	background: -o-linear-gradient(337deg, #00D7F4 26.92%, #06F 100.7%);
	background: linear-gradient(113deg, #00D7F4 26.92%, #06F 100.7%);
	color: var(--White-Color);
}

header .header_btn_one {
	margin-left: 44px;
}

header .header_btn_two {
	display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 23, 23, 0.62);
    z-index: 999;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    visibility: hidden;
    opacity: 0;
}

.overlay_add {
    visibility: visible;
    opacity: 1;
}


/*========================
   06. product section css
==========================*/
.product_wrapper {
    margin-top: 100px;
    padding-top: 146px;
}

.product_wrapper .product_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.product_wrapper .product_menu {
    width: 245px;
    position: sticky;
    top: 140px;
    left: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.product_wrapper .product_menu ul li a {
	font-size: var(--Text-size01);
	font-weight: 300;
	line-height: 25px;
	color: var(--Common-Color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 13px;
	border-radius: 40px;
	background: rgba(255, 255, 255, 0.30);
	margin-bottom: 10px;
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

.product_wrapper .product_menu ul li a:hover {
	background: rgba(64, 63, 76, 0.04);
}

.product_wrapper .product_menu ul li a img {
	width: 25px;
	margin-right: 16px;
}

.product_wrapper .product_item_wrap {
	margin-left: 25px;
}

.moreless-button {
    font-size: var(--body-font);
    font-weight: 700;
    color: var(--Head-Color);
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
            text-decoration-style: solid;
    -webkit-text-decoration-skip: ink;
            text-decoration-skip-ink: auto;
    text-decoration-thickness: 2px;
    background-image: url(../img/icon05.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center right;
    padding-right: 15px;
    display: none;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.moreless-button:hover {
	color: var(--Common-Color);
}

.product_wrapper .product_item_wrap .product_item01 p {
	font-size: var(--Text-size03);
	line-height: 23px;
}

.product_wrapper .product_item_wrap .product_item02 .price_box {
	margin-right: 50px;
}

.product_wrapper .product_item_wrap .product_item02 .price_box .item_wrap2 {
	background: rgba(0, 102, 255, 0.10) !important;
	width: 192px !important;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	text-align: center;
}

.product_wrapper .product_item_wrap .product_item02 .price_box .item_wrap2::before {
	background: rgba(0, 102, 255, 0.10) !important;
}

.product_wrapper .product_item_wrap .product_item02 .price_box .item_wrap2::after {
	background: transparent !important;
}

.product_wrapper .product_item_wrap .product_item02 .price_box .custom_btn {
	margin-top: 25px !important;
}

.product_wrapper .product_item_wrap .product_item02 .price_box h2 {
	font-size: var(--Text-size01);
	font-weight: 800;
	font-family: "TikTok Sans", sans-serif !important;
}

.product_wrapper .product_item_wrap .product_item02 ul li {
    line-height: 28px;
}

.product_wrapper .product_item_wrap .price_detail_box {
	max-width: 192px;
	width: 100%;
	margin-right: 50px;
}

.product_wrapper .product_item_wrap .product_item02 .href_link {
	color: var(--Primary-Color);
}

.product_wrapper .product_item_wrap .product_item03 ul {
    max-width: 309px;
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.product_wrapper .product_item_wrap .product_item03 ul li {
	line-height: 28px;
}

.product_wrapper .product_item_wrap .social_media_wrap {
    max-width: 570px;
    width: 100%;
    padding-top: 5px;
}

.product_wrapper .product_item_wrap .social_media_wrap a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: var(--Black-Color);
	height: 40px;
	padding: 0 6px;
	border-radius: 10px;
	border: 1px solid var(--Primary-Color);
	margin: 10px 10px 0 0;
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

.product_wrapper .product_item_wrap .social_media_wrap a:hover {
	opacity: 0.7;
}

.product_wrapper .product_item_wrap .social_media_wrap a img {
	width: 23px;
	margin-right: 1px;
}

/*===========================
   07. newsletter section css
=============================*/
.newsletter_wrapper {
    padding: 165px 0 105px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.newsletter_wrapper .newsletter_mini_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 310px;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
    display: none;
}

.newsletter_wrapper .newsletter_wrap {
    border-radius: 40px 40px 40px 0;
    padding: 65px 90px;
    background: -o-linear-gradient(337deg, #06F 26.92%, #00D7F4 100.7%);
    background: linear-gradient(113deg, #06F 26.92%, #00D7F4 100.7%);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 19px;
}

.newsletter_wrapper .newsletter_wrap::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    bottom: -18px;
    left: -18px;
    z-index: 1;
    background: var(--Common-Color);
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.10);
            box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.10);
}

.newsletter_wrapper .newsletter_wrap .custom_margin {
	margin: 0 10px;
}

.newsletter_wrapper .newsletter_wrap .newsletter_shape {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--Primary-Color);
    border-radius: 40px 40px 40px 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.newsletter_wrapper .newsletter_wrap h2 {
	font-size: var(--Text-size04);
	font-weight: 800;
	line-height: 43px;
	color: var(--White-Color);
	width: 224px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.newsletter_wrapper .newsletter_wrap p {
    font-size: var(--Text-size03);
    line-height: 19px;
    color: var(--White-Color);
    width: 224px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.newsletter_wrapper .newsletter_wrap .input_info {
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.80);
	height: 97px;
	padding-left: 27px;
	font-size: var(--Text-size03);
	color: var(--Primary-Color);
	border: transparent;
	max-width: 496px;
	width: 100%;
}

.newsletter_wrapper .newsletter_wrap button {
	height: 97px;
	background: var(--White-Color);
	border-radius: 100px;
	padding: 6px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	border: transparent;
}

.newsletter_wrapper .newsletter_wrap button span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 100px;
    border: 2px solid var(--Common-Color);
    color: var(--Common-Color);
    font-size: var(--Text-size03);
    font-weight: 800;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 16px;
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.newsletter_wrapper .newsletter_wrap button:hover span {
	background: var(--Common-Color);
	color: var(--White-Color);
}

.newsletter_wrapper .newsletter_wrap .check_item {
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.80);
    padding: 10px 5px;
    display: inline-flex;
    align-items: center;
}

.newsletter_wrapper .newsletter_wrap .check_item .dropdown {
    text-align: center;
    padding: 0 24px;
    border-radius: 100px;
    height: 80px;
    font-size: var(--Text-size03);
    background: rgba(255, 255, 255, 0.40);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 17px;
    cursor: pointer;
    margin: 0 5px;
}

.newsletter_wrapper .newsletter_wrap .check_item .dropdown.active {
	background: var(--White-Color) !important;
}

/*=======================
   08. footer section css
=========================*/
footer {
	padding: 90px 0 0 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

footer .footer_logo img {
	width: 182px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

footer .footer_menu_wrap {
	max-width: 1250px !important;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 auto;
}

footer .footer_menu_wrap .footer_menu_item {
    margin-top: 110px;
    width: 224px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

footer .footer_menu_wrap .footer_menu_item h3 {
	font-size: var(--Text-size02);
	font-weight: 900;
	color: var(--White-Color);
}

footer .footer_menu_wrap .footer_menu_item ul {
    list-style: disc;
    color: #ffffff;
    padding: 15px 0 0 20px;
}

footer .footer_menu_wrap .footer_menu_item ul li a {
	font-size: var(--Text-size03);
	color: var(--White-Color);
	display: block;
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

footer .footer_menu_wrap .footer_menu_item ul li a:hover {
	text-decoration: underline;
}

footer .footer_social_wrap {
	border-top: 1px solid var(--White-Color);
	margin-top: 60px;
	padding: 20px 0;
	text-align: center;
}

footer .footer_social_wrap ul li {
	display: inline-block;
}

footer .footer_social_wrap ul li a {
	width: 25px;
	height: 25px;
	border-radius: 3px;
	background: rgba(19, 23, 56, 0.50);
	-webkit-box-shadow: 0 5px 10px 0 rgba(19, 23, 56, 0.20);
	        box-shadow: 0 5px 10px 0 rgba(19, 23, 56, 0.20);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin: 0 6px;
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

footer .footer_social_wrap ul li a:hover {
	opacity: 0.6;
}

footer .footer_social_wrap ul li a img {
	width: 14px;
}

/*=======================
   09. category section css
=========================*/
.category_wrapper {
	margin-top: 100px;
	padding: 110px 0 0 0;
}

.category_wrapper .category_menu {
    max-width: 250px;
    width: 100%;
    padding: 24px 13px !important;
    position: sticky;
    top: 120px;
    left: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.category_wrapper .category_menu .category_para {
    line-height: 19px;
    padding-bottom: 25px;
}

.category_wrapper .category_menu .card {
    border-radius: 40px;
	background: var(--White-Color);
	-webkit-box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.05);
	        box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.05);
	border: transparent !important;
}

.category_wrapper .category_menu .card .card-body {
    color: var(--Head-Color);
    padding: 10px 17px 20px 17px;
}

.category_wrapper .category_menu .card-header {
    background-color: transparent;
    border: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}

.category_wrapper .category_menu .card-header button {
    width: 100%;
    height: 100%;
    text-align: left;
    border: transparent;
    background: transparent;
    font-size: var(--body-font);
    color: var(--Common-Color);
    line-height: 20px;
    font-weight: 300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 17px;
    font-family: "Funnel Display", sans-serif;
}

.category_wrapper .category_menu .card-header button img {
	width: 20px;
	margin-right: 16px;
}

.category_wrapper .category_menu .card-header button:focus {
	outline: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.category_wrapper .category_menu .card-header i {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-size: var(--Text-size01);
    color: var(--Common-Color);
    position: absolute;
    right: 16px;
    top: 15px;
    pointer-events: none;
}

.category_wrapper .category_menu .card-header button[aria-expanded="true"] ~ i{
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.category_wrapper .category_menu h3 {
	font-size: var(--body-font);
	font-weight: 700;
	color: var(--Head-Color);
	line-height: 25px;
}

.checkbox input[type=checkbox] {
	display: none;
}

.checkbox label {
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.checkbox label span {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    border: 1px solid #06F;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 6px;
    -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
            transform: translateY(-1px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.checkbox label span i {
    font-size: 10px;
    color: var(--Common-Color);
    display: none;
}

.checkbox input:checked + label span i {
	display: block;
}

.category_search_info {
	width: 100%;
	height: 34px;
	border-radius: 3px;
	border: 1px solid var(--Common-Color);
	padding-left: 10px;
	color: rgba(61, 61, 61, 0.50);
	font-size: 12px;
	text-transform: capitalize;
}

.radio_box input[type=radio] {
	display: none;
}

.radio_box label {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.radio_box label span {
	width: 15px;
	height: 15px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--Common-Color);
	margin-right: 6px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.radio_box label span i {
    font-size: 9px;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
    display: none;
}

.radio_box input:checked + label span i {
	color: var(--Common-Color);
	display: block !important;
}

.category_wrapper .category_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.category_wrapper .category_wrap .breadcrumb {
	padding: 0 !important;
	background-color: transparent !important;
}

.category_wrapper .category_wrap .breadcrumb li a {
	color: var(--Head-Color);
}

.category_wrapper .category_wrap .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 10px;
    color: var(--Common-Color);
    content: ">";
    font-weight: 700;
}

.category_wrapper .category_wrap .breadcrumb-item+.breadcrumb-item {
    padding-left: 10px;
}

.category_wrapper .category_wrap .breadcrumb-item.active {
	font-weight: 700 !important;
	color: var(--Head-Color) !important;
}

.category_wrapper .category_item_box_wrap {
	padding-left: 34px;
}

.category_wrapper .category_wrap .category_item_box01 h2,
.category_wrapper .category_item_box03 h2 {
	color: var(--Common-Color);
	font-size: var(--Text-size05);
	font-weight: 300;
	line-height: 50px;
}

.category_wrapper .category_wrap .category_item_box01 p {
	font-size: var(--Text-size03);
}

.category_wrapper .category_wrap .category_item_box02 {
    max-width: 260px !important;
    width: 100%;
    margin: 40px 0 0 20px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 32px 24px 38px 24px;
}

.category_wrapper .category_wrap .category_item_box02 h3 {
	color: var(--Head-Color);
	font-size: var(--Text-size02);
	font-weight: 600;
	line-height: 22px;
}

.category_wrapper .category_wrap .category_item_box02 span {
	width: 35px;
	height: 1px;
	background: var(--Common-Color);
	display: inline-block;
	margin: 10px 0 10px 0;
}

.category_wrapper .category_wrap .category_item_box02 p {
	line-height: 19px;
	color: var(--Head-Color);
}

.category_wrapper .category_wrap .category_item_box02 input {
	width: 100%;
	height: 40px;
	border-radius: 40px;
	background: var(--White-Color);
	-webkit-box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.05);
	        box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.05);
	padding-left: 10px;
	color: var(--Head-Color);
	border: transparent;
}

.category_wrapper .category_wrap .category_item_box02 input::-webkit-input-placeholder {
	color: rgba(0, 102, 255, 0.38);
}

.category_wrapper .category_wrap .category_item_box02 input::-moz-placeholder {
	color: rgba(0, 102, 255, 0.38);
}

.category_wrapper .category_wrap .category_item_box02 input:-ms-input-placeholder {
	color: rgba(0, 102, 255, 0.38);
}

.category_wrapper .category_wrap .category_item_box02 input::-ms-input-placeholder {
	color: rgba(0, 102, 255, 0.38);
}

.category_wrapper .category_wrap .category_item_box02 input::placeholder {
	color: rgba(0, 102, 255, 0.38);
}

.category_wrapper .category_wrap .category_item_box02 button {
	width: 100%;
	height: 40px;
	border: transparent;
	border-radius: 100px;
	color: var(--White-Color);
	font-weight: 700;
	background: -o-linear-gradient(337deg, #06F 26.92%, #00D7F4 100.7%);
	background: linear-gradient(113deg, #06F 26.92%, #00D7F4 100.7%);
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

.category_wrapper .category_wrap .category_item_box02 button:hover {
	background: -o-linear-gradient(337deg, #00D7F4 26.92%, #06F 100.7%);
	background: linear-gradient(113deg, #00D7F4 26.92%, #06F 100.7%);
}

.category_wrapper .category_wrap .review_item_box {
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

.category_wrapper .category_wrap .review_item_box:hover {
	opacity: 0.8;
}

.category_wrapper .category_wrap .review_item_box .number_text {
    width: 72px !important;
    height: 72px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background: rgba(0, 102, 255, 0.10) !important;
    color: var(--Primary-Color);
    font-size: var(--Text-size04);
    font-weight: 300;
    border-radius: 20px 20px 0 20px !important;
    padding: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.category_wrapper .category_wrap .review_item_box .number_text::before {
    border: 1px solid transparent;
    bottom: -8px;
    right: -8px;
    background: rgba(0, 102, 255, 0.10) !important;
}

.category_wrapper .category_wrap .review_item_box .number_text::after {
	background: transparent !important;
}

.category_wrapper .category_wrap .review_item_box .man_img {
	width: 100px;
	height: 100px;
	border-radius: 20px;
	margin-right: 15px;
	-webkit-box-shadow: 0 15px 30px rgba(0, 102, 255, 0.10);
	        box-shadow: 0 15px 30px rgba(0, 102, 255, 0.10);
}

.category_wrapper .category_wrap .review_item_box .review_icon_wrap {
    border-radius: 20px;
    background-clip: padding-box;
    position: relative;
    z-index: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.category_wrapper .category_wrap .review_icon_sub {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3px 4px;
    background: var(--White-Color);
    border-radius: 20px;
}

.category_wrapper .category_wrap .review_item_box .review_icon_wrap::before {
    background-image: -o-linear-gradient(337deg, #06F 26.92%, #00D7F4 100.7%);
    background-image: linear-gradient(113deg, #06F 26.92%, #00D7F4 100.7%);
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    z-index: -1;
    border-radius: 20px;
}

.category_wrapper .category_wrap .review_item_box .review_icon_wrap img {
    margin: 0 2px;
    width: 15px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.category_wrapper .category_wrap .review_item_box span {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-right: 15px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: var(--Head-Color);
}

.category_wrapper .category_wrap .review_item_box span img {
	width: 15px;
	margin-right: 4px;
}

.category_wrapper .category_wrap .review_item_box p {
	font-size: var(--Text-size03);
	line-height: 23px;
	color: var(--Head-Color);
}

.category_wrapper .pagination_nav ul li .left_arrow,
.category_wrapper .pagination_nav ul li .right_arrow {
	background: transparent !important;
	color: var(--Common-Color) !important;
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

.category_wrapper .pagination_nav ul li .left_arrow:hover,
.category_wrapper .pagination_nav ul li .right_arrow:hover {
	color: var(--White-Color) !important;
}

.category_wrapper .pagination_nav ul li a {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background: rgba(0, 102, 255, 0.10);
	color: var(--Primary-Color);	
	margin: 0 3px;
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

.category_wrapper .pagination_nav ul li a.active,
.category_wrapper .pagination_nav ul li a:hover {
	background: var(--Common-Color) !important;
	color: var(--White-Color);
}

.category_wrapper .category_item_box03 {
	margin-top: 115px;
}

.category_wrapper .category_item_box03 p,
.category_wrapper .category_item_box03 ul li {
	font-size: var(--Text-size03);
	line-height: 23px;
}

.category_wrapper .category_item_box03 ul {
    list-style: disc;
    padding-left: 25px;
}

/*============================================
   10. category mobile device menu section css
==============================================*/
.category_offcavas_wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--White-Color);
    z-index: 11;
	-webkit-box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.05);
	        box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.05);
	padding: 20px 0;
	display: none;
}

.category_offcavas_wrapper::before,
.category_offcavas_wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	height: 100%;
	width: 50px;
	background: var(--White-Color);
	z-index: 11;
}

.category_offcavas_wrapper::before {
	left: 0;
}

.category_offcavas_wrapper::after {
	right: 0;
}

.category_offcavas_wrapper .dropdown-toggle {
    border: transparent;
    height: 40px;
    padding: 0 15px;
    border-radius: 40px;
    background: var(--White-Color);
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.05);
            box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.05);
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    color: var(--Common-Color);
}

.category_offcavas_wrapper .dropdown-toggle img {
	width: 20px;
	margin-right: 4px;
}

.category_offcavas_wrapper .dropdown-menu .para {
	font-weight: 300 !important;
	color: var(--Common-Color) !important;
}

.category_offcavas_wrapper .dropdown-toggle i {
	color: var(--Common-Color);
	margin-left: 4px;
}

.category_offcavas_wrapper .dropdown-menu {
    padding: 15px;
    border-radius: 20px;
    background: var(--White-Color);
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.05);
            box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.05);
    border: transparent !important;
    min-width: 13rem !important;
}

.category_offcavas_wrapper .dropdown-menu h3 {
	font-size: var(--body-font);
	font-weight: 700;
	color: var(--Head-Color);
}

.category_offcavas_wrapper .radio_box label,
.category_offcavas_wrapper .checkbox label {
	font-size: 15px;
}

.category_offcavas_wrapper .offcavas_slider .slick-list {
	overflow: visible !important;
} 

.category_offcavas_wrapper .offcavas_slider .slick-arrow {
    background: transparent;
    border: transparent;
    margin: 0;
    color: var(--Common-Color);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 111;
    font-size: var(--Text-size01);
}

.category_offcavas_wrapper .offcavas_slider .slick-prev {
	left: 10px;
}

.category_offcavas_wrapper .offcavas_slider .slick-next {
	right: 10px;
}



/*=====================
   11. home section css
=======================*/
.home_wrapper {
    width: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 100px;
    padding: 150px 0 0 0;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.10);
            box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.10);
}

.home_wrapper .home_box h1 {
	color: var(--Common-Color);
	font-size: var(--Text-size06);
	font-weight: 300;
	line-height: 70px;
	text-transform: capitalize;
}

.home_wrapper .home_box h2 {
	font-size: var(--Text-size01);
	font-weight: 300;
	font-family: "TikTok Sans", sans-serif;
	line-height: 30px;
}

.home_wrapper .home_box .form_box {
	max-width: 886px;
	width: 100%;
	height: 70px;
	border-radius: 100px;
	border: 1px solid var(--Primary-Color);
	background: rgba(235, 235, 240, 0.87);
	position: relative;
	overflow: hidden;
	margin: 60px auto 20px auto;
}

.home_wrapper .home_box .form_box label {
    font-size: var(--body-font);
    color: var(--Primary-Color);
    position: absolute;
    top: 50%;
    left: 0;
    padding-left: 17px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 0.5;
}

.home_wrapper .home_box .form_box label .label2 {
	display: none;
}

.home_wrapper .home_box .form_box input {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border: transparent;
	background: transparent;
	padding-left: 17px;
}

.home_wrapper .home_box .form_box input:focus~label {
	display: none !important;
}

.home_wrapper .home_box .form_box button {
    position: absolute;
    height: 48px !important;
    border: transparent !important;
    padding: 0 25px !important;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 10px;
    z-index: 1;
    cursor: pointer !important;
    margin: 0 !important;
}

.home_wrapper .home_box .form_box button p {
	font-weight: 800 !important;
    font-family: "Funnel Display", sans-serif;
    color: var(--White-Color);
}

.home_wrapper .home_box .form_box button span {
	display: none !important;
}

.home_wrapper .home_box p,
.home_wrapper .home_box p a {
	font-size: var(--Text-size07);
	font-weight: 300;
	line-height: 20px;
	color: rgba(64, 63, 76, 0.50);
}

.home_wrapper .home_box p a:hover,
.home_wrapper .home_box p a.active {
	color: var(--Common-Color);
}

.home_wrapper .home_service_wrap .home_service_container {
	max-width: 920px;
	width: 100%;
	margin: 0 auto;
}

.home_wrapper .home_service_wrap .home_service_slider {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.home_wrapper .home_service_wrap {
    background: var(--White-Color);
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.10);
            box-shadow: 0 15px 30px 0 rgba(0, 102, 255, 0.10);
    padding: 25px 0;
    width: 100%;
    margin-top: 160px;
}

.home_wrapper .home_service_wrap a {
    color: var(--Common-Color);
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 15px;
    text-align: left;
    margin-right: 100px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.home_wrapper .home_service_wrap a img {
	width: 25px;
	margin-right: 10px;
}

/*=========================================
   12. cybersecurity categories section css
===========================================*/
.cybersecurity_categories_wrapper {
	padding: 158px 0 85px 0;
}

.head_wrap .header_bar {
	width: 225px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
} 

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

.cybersecurity_categories_wrapper .cybersecurity_categories_slider .slick-list {
	overflow: visible !important;
}

.cybersecurity_categories_wrapper .cybersecurity_categories_item {
    display: inline-block !important;
    background: rgba(0, 102, 255, 0.10);
    padding: 30px 20px;
    width: 355px !important;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 30px 11px 0;
    border: transparent !important;
}

.cybersecurity_categories_wrapper .cybersecurity_categories_item::before,
.cybersecurity_categories_wrapper .cybersecurity_categories_item::after {
	background: rgba(0, 102, 255, 0.10);
}

.cybersecurity_categories_wrapper .cybersecurity_categories_item h3 {
    font-size: var(--Text-size08);
    line-height: 30px;
    font-weight: 800;
}

.cybersecurity_categories_wrapper .cybersecurity_categories_item p {
	line-height: 15px;
}

.cybersecurity_categories_wrapper .cybersecurity_categories_btn {
	border-radius: 100px;
	border: 1px solid var(--Common-Color);
	height: 28px;
	padding: 0 15px;
	color: var(--Primary-Color);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-top: 40px;
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

.cybersecurity_categories_wrapper .cybersecurity_categories_btn:hover {
	background: var(--Common-Color);
	color: var(--White-Color);
}

.cybersecurity_categories_wrapper .cybersecurity_categories_btn i {
    color: var(--Common-Color);
    margin-left: 10px;
    -webkit-transition: 0.4s all 
ease-in-out;
    -o-transition: 0.4s all 
ease-in-out;
    transition: 0.4s all 
ease-in-out;
    font-size: 13px;
}

.cybersecurity_categories_wrapper .cybersecurity_categories_btn:hover i {
	color: var(--White-Color);
}

/*===========================
   13. comparison section css
=============================*/
.comparison_wrapper {
	padding: 85px 0 80px 0;
	overflow: hidden;
}

.comparison_wrapper .container {
	max-width: 1520px !important;
}

.comparison_wrapper .comparison_item {
	width: 355px !important;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	background: var(--White-Color) !important;
	-webkit-box-shadow: 0 15px 30px rgba(0, 102, 255, 0.10);
	        box-shadow: 0 15px 30px rgba(0, 102, 255, 0.10);
	padding: 40px 20px !important;
	border: transparent !important;
	margin: 30px 24px 40px 0 !important;
}

.comparison_wrapper .comparison_item::before,
.comparison_wrapper .comparison_item::after {
	background: var(--White-Color) !important;
	border: transparent !important;
}

.comparison_wrapper .comparison_item h3 {
	font-size: var(--Text-size08);
	font-weight: 800;
	line-height: 30px;
	text-transform: uppercase;
}

.comparison_wrapper .comparison_item p {
	line-height: 15px;
}

.comparison_wrapper .comparison_item a {
	background: var(--Common-Color) !important;
	margin-top: 50px;
}

.comparison_wrapper .comparison_item a:hover {
	opacity: 0.8;
}

.comparison_wrapper .comparison_slider .slick-arrow {
	background: transparent;
	border: transparent;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	color: var(--Common-Color);
	z-index: 11;
}

.comparison_wrapper .comparison_slider .slick-prev {
	left: -30px;
}

.comparison_wrapper .comparison_slider .slick-next {
	right: -30px;
}

/*===========================
   14. shortlist section css
=============================*/
.shortlist_wrapper {
	padding: 80px 0 80px 0;
	position: relative;
}

.shortlist_wrapper .shortlist_shape {
    position: absolute;
    width: 370px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    right: 5%;
    bottom: 15%;
}

.shortlist_wrapper .head_wrap {
	padding-bottom: 40px;
}

.shortlist_wrapper .shortlist_mini_slider .slick-list {
    height: 490px !important;
}

.shortlist_wrapper figure .shortlist_shape {
    max-width: 370px;
    width: 100%;
    position: absolute;
}

.shortlist_wrapper .shortlist_item {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(0, 102, 255, 0.10) !important;
    border: transparent !important;
    border-radius: 0 40px 40px 40px !important;
    padding: 20px !important;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 375px !important;
    margin: 20px 0 0 0 !important;
    text-align: left !important;
    cursor: pointer;
}

.shortlist_wrapper .shortlist_item::before {
    width: 17px !important;
    height: 17px !important;
    bottom: auto !important;
    top: -10px !important;
}

.shortlist_wrapper .shortlist_item::after {
    bottom: auto !important;
    top: 2px !important;
    left: 2px !important;
}

.shortlist_wrapper .shortlist_item::before,
.shortlist_wrapper .shortlist_item::after {
	background: rgba(0, 102, 255, 0.10) !important;
}

.shortlist_wrapper .shortlist_item img {
	width: 32px !important;
	margin-right: 28px !important;
}

.shortlist_wrapper .shortlist_item p {
	font-size: var(--Text-size02) !important;
}

.shortlist_wrapper .short_catogory_btn {
    height: 34px;
    border-radius: 100px;
    border: 1px solid var(--Common-Color);
    padding: 0 35px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 100px 23% 0 0;
    color: var(--Primary-Color);
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.shortlist_wrapper .short_catogory_btn:hover {
	background: var(--Common-Color);
	color: var(--White-Color);
}

.shortlist_wrapper .shortlist_mini_slider .slick-arrow {
	background: transparent;
	border: transparent;
	color: var(--Common-Color);
	z-index: 11;
}

.shortlist_wrapper .shortlist_mini_slider .slick-prev,
.shortlist_wrapper .shortlist_mini_slider .slick-next {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.shortlist_wrapper .shortlist_mini_slider .slick-prev {
    top: -20px;
}

.shortlist_wrapper .shortlist_mini_slider .slick-next {
    bottom: -40px;
}

.shortlist_wrapper figure {
	margin: 50px 0 0 0 !important;
}

.shortlist_wrapper figure img {
	border-radius: 20px !important;
	overflow: hidden;
	border: 1px solid var(--Black-Color);
	-webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	max-width: 590px !important;
    width: 100%;
    cursor: pointer;
}

/*===========================
   15. audience section css
=============================*/
.audience_wrapper {
    position: relative;
    padding: 30px 0 320px 0;
    overflow: hidden;
}

.audience_wrapper .audience_shape01,
.audience_wrapper .audience_shape02 {
	position: absolute;
}

.audience_wrapper .audience_shape01 {
    bottom: 0;
    left: 0;
    width: 295px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.audience_wrapper .audience_shape02 {
	right: 4.5%;
    bottom: 0%;
    width: 200px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.audience_wrapper .audience_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.audience_wrapper .audience_head {
    max-width: 270px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 100px 90px 0 0;
}

.audience_wrapper .audience_head h3 {
	color: var(--Common-Color);
	font-size: var(--Text-size09);
	font-weight: 300;
} 

.audience_wrapper .audience_wrap .audience_btn {
	height: 34px;
	padding: 0 35px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	color: var(--Primary-Color);
	border: 1px solid var(--Common-Color);
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
	border-radius: 100px;
}

.audience_wrapper .audience_wrap .audience_btn:hover {
	background: var(--Common-Color);
	color: var(--White-Color);
}

.audience_wrapper .audience_box_item .audience_shape {
    width: 127px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: absolute;
    top: 18% !important;
    right: -54%;
}

.audience_wrapper .audience_box_item {
	max-width: 240px;
	width: 100%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	text-align: center;
	margin: 100px 124px 0 0;
	position: relative;
}

.audience_wrapper .audience_box_item span {
	width: 76px;
	height: 76px;
	background: rgba(0, 102, 255, 0.20);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	color: var(--Common-Color);
	font-size: var(--Text-size04);
	font-weight: 300;
	font-family: "Funnel Display", sans-serif;
	border-radius: 50%;
}

.audience_wrapper .audience_box_item p {
	font-size: var(--Text-size01);
	line-height: 25px;	
}

.audience_wrapper .audience_wrap .audience_btn02 {
	display: none !important;
}

.audience_wrapper .audience_wrap2 {
    margin-left: 240px;
}

/*===========================
   16. blog section css
=============================*/
.blog_wrapper .container {
	max-width: 1740px !important;
}

.blog_wrapper .blog_wrap {
    border-radius: 40px !important;
    margin: 0 20px 20px 0;
}

.blog_wrapper .blog_wrap .blog_item {
	display: block;
	position: relative;
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
	overflow: hidden;
}

.blog_wrapper .blog_wrap .blog_item:hover::before {
	visibility: visible;
	opacity: 0.5;
}

.blog_wrapper .blog_wrap .blog_item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: -o-linear-gradient(337deg, #06F 26.92%, #00D7F4 100.7%);
	background: linear-gradient(113deg, #06F 26.92%, #00D7F4 100.7%);
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.4s all ease-in-out;
	-o-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}

.blog_wrapper .blog_wrap .blog_item1 {
	border-radius: 40px 0 0 0 !important;
}

.blog_wrapper .blog_wrap .blog_item:hover {
	opacity: 0.8;
}

.blog_wrapper .blog_wrap .blog_item figure {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.blog_wrapper .blog_wrap .blog_item figure img {
    -webkit-transition: 0.4s all ease-in-out;
    -o-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
    width: 100%;
    height: 286px;
    -o-object-fit: cover;
       object-fit: cover;
}

.blog_wrapper .blog_wrap .blog_item:hover figure img {
	-webkit-transform: scale(1.10);
	    -ms-transform: scale(1.10);
	        transform: scale(1.10);
}

.blog_wrapper .blog_wrap .blog_item .blog_content {
	padding: 45px;
	position: absolute;
	z-index: 111;
	bottom: 0;
	left: 0;
	width: 100%;
}

.blog_wrapper .blog_wrap .blog_item p {
	font-size: var(--Text-size01);
	line-height: 37px;
	color: var(--White-Color);
	font-family: "Funnel Display", sans-serif;
	font-weight: 300;
}

.blog_wrapper .blog_wrap .blog_item3 {
	border-radius: 0 40px 0 0 !important;
	overflow: hidden;
}

.blog_wrapper .blog_wrap .blog_item4 {
	border-radius: 0 0 0 40px !important;
}

.blog_wrapper .blog_wrap .blog_item6 {
    background: -o-linear-gradient(337deg, #06F 26.92%, #00D7F4 100.7%) !important;
    background: linear-gradient(113deg, #06F 26.92%, #00D7F4 100.7%) !important;
    -webkit-box-shadow: 0 15px 30px rgba(0, 102, 255, 0.10);
            box-shadow: 0 15px 30px rgba(0, 102, 255, 0.10);
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    overflow: visible !important;
    margin-right: 20px !important;
}

.blog_wrapper .blog_wrap .blog_item6 .blog_content p {
	font-size: var(--Text-size08);
	font-weight: 800;
}

.blog_wrapper .blog_wrap .blog_item6::before {
    background: #01C1F7 !important;
    width: 32px !important;
    height: 32px !important;
    bottom: -20px !important;
    right: -20px !important;
    visibility: visible !important;
    opacity: 1 !important;
    top: auto !important;
    left: auto !important;
}

.blog_wrapper .blog_wrap .blog_item6::after {
	display: none;
}

/*======================
   17. back to top css
========================*/
.back-to-top {
	font-size: 24px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 85px;
	right: 20px;
	z-index: 999999999999;
	border-radius: 50%;
	background: var(--Common-Color);
}

.back-to-top i {
	color: #ffffff;
}