@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
html {}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    color: #151649;
}
@font-face {
    font-family: 'Courier New';
    src: url('../fonts/CourierNewPSMT.woff2') format('woff2'),
        url('../fonts/CourierNewPSMT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

p {
    padding: 0px;
    margin: 0px;
    font-size: 15px;
    line-height: 24px;
    color: #151649;
    font-weight: 400;
    letter-spacing: .1px;
}
p:empty{
    padding: 0 !important;
    margin: 0 !important;
}

a {
    padding: 0px;
    margin: 0px;
    outline: none;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

ul li {
    padding: 0px;
    margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0px;
    margin: 0px;

}

a:hover {
    outline: none;
    text-decoration: none;
}

a:active {
    outline: none;
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

a {
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

h1,
h2,
h3,
h4,
h5 {
    padding: 0;
    margin: 0;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clear {
    clear: both;
    line-height: 0;
    font-size: 0;
}
input{
    outline: none;
}
input:focus, input:hover{
    outline: none;
}
input[type="submit"]{
    border: none;
}
img {
    max-width: 100%; 
}
.container {
    max-width: 1290px; /* From HubSpot's .in-git max-width */
    margin: 0 auto;
    padding: 0 15px; /* From HubSpot's @media query for .in-git */
}
.common_btn{
    text-transform: uppercase;
    border-radius: 100px;
    font-size: 16px;
    display: inline-block;
    line-height: 24px;
    padding: 13px 32px;
    background-color: #030303;
    border: 2px solid #030303;
    color: #fff;
    font-weight: 500;
  
}
.common_btn:hover{
    background-color: #f36709;
    color: #fff;
}
.headlineone{
    font-size: 60px;
    line-height: 110%;
    color: #030303;
    font-weight: 700;
}

.headlinetwo{
    font-size: 48px;
    line-height: 140%;
    font-weight: 600;
}
.bodyone_text{
    font-size: 20px;
    line-height: 160%;
    font-weight: 400;
}

.bodyone_text span{
    color: #FF6600;
    display: inline-block;
}
h5{
    font-size: 24px;
    line-height: 160%;
}
.heading{
    margin-bottom: 120px;
}
.heading h2{
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    font-size: 48px;
    line-height: 56px;
}
.heading span{
    font-size: 25px;
    letter-spacing: .1px;
    line-height: 40px;
    color: #030303;
    font-family: 'Courier New';
    text-transform: uppercase;
}


/**site logo**/
.site-logo {
    width: 150px; /* Adjust this value to set the desired width */
    height: auto; /* Maintains aspect ratio */
}
.footer-logo {
    width: 150px;
    height: auto;
}
/**header2**/
header{
    border-bottom: 1px solid #595A8D;
    position: fixed;
    top: 0;
    background-color: #151649;
    width: 100%;
    height: 60px; 
    padding: 0; /* 30px 0 */
    z-index: 99;
}
.menu_wrapper{
    float: left;
    width: calc(100% - 357px);
    text-align: right;
    margin-top: 0px;
}
.menu_wrapper ul li{
    display: inline-block;
    margin-right: 20px;
    position: relative;
}
.menu_wrapper ul li:last-child{
    margin-right: 0;
}
.menu_wrapper > ul > li > a{
    font-size: 16px;
    font-weight: 400;
    color: #fff !important;
}
.contact_btn{
    float: right;
    width: auto;
}
.contact_btn .common_btn_outline{
    padding: 9px 30px;
    font-size: 14px;
    border: 1px solid #000;
}
.sub-menu{
	display: none;
	position: absolute;
    top: 100%;
    background: #fff;
    z-index: 9;
    text-align: left;
    min-width: 228px;
    padding: 20px;
    border-radius: 4px;
    margin-left: -55px;
	
}
.sub-menu  li a{
	color: #000;
	font-size: 15px;
	font-weight: 700;
	display: block;
	text-transform: capitalize;
	padding: 5px 0;
}
.sub-menu  li:hover a{
	color: #FF6600;
}
.sub-menu  li{
    margin-right:0 !important;
}
.sub-menu  li p{
    font-size:12px;
}
.triger{
	position: absolute;
    right: -17px;
    top: 4px;
    width: 17px;
    cursor: pointer;
}
.triger:after{
	content: '\f107 ';
    font-family: 'FontAwesome';
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
}
.sub-menu  li:hover .triger:after{
    color: #FF6600;
}
.triger.js-toggled:after{
    content: '\f106 ';
    
}
.cloud{
    background:url(../img/cloud-computing.png)no-repeat center;
    background-size: cover;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    top: 5px;
    margin-right:10px;
}
.wordPress{
    background:url(../img/wordpress.png)no-repeat center;
    background-size: cover;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    top: 5px;
     margin-right:10px;
}
.mandged{
    background:url(../img/cyber-security.png)no-repeat center;
    background-size: cover;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    top: 5px;
     margin-right:10px;
}

.menu_wrapper > ul > li > a:hover,
.menu_wrapper > ul > li.active a{
	color: #FF6600;
}

.toggle_btn {
	position: relative;
	margin-top: 6px;
	margin-left:6px;
}

.toggle_btn:after {
	content: "\F228";
	font-family: "bootstrap-icons";
	color: #023169;
	font-size: 28px;
	margin-right: -7px;
	line-height: 28px;
}

.toggle_btn.on:after {
	content: "\F622";

}

.toggle_icon {
	position: relative;
	
}

.toggle_icon:after {
	position: absolute;
	content: '\F282 ';
	font-family: "bootstrap-icons";
	right: -20px;
	top: 4px;
	font-size: 15px;
	color: #3F3F3F;
	font-weight: 900;
	line-height: 15px;
	cursor: pointer;
}

.toggle_icon.open_submenu:after {
	content: '\F286 ';
}
header{
    border-bottom: 1px solid #fff;
    position: fixed;
    top: 0;
    background-color: #fff;
    width: 100%;
    padding: 18px 0; /* 18px 9 */
    z-index: 99;
}
.common_btn_outline{
    background-color: hsla(0, 0%, 100%, 0);
    border: 2px solid #030303;
    color: #030303;
    font-family: Inter, Arial;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
	border-radius: 40px;
    font-size: 16px;
    line-height: 24px;
    padding: 13px 20px;
	position:relative;
    text-transform: uppercase;
    overflow: hidden !important;
    z-index: 2;
}
.common_btn_outline:before {
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    border-radius: 40px;
}
.common_btn_outline:hover{
    color: #fff;
}
.common_btn_outline:hover:before {
    right: 0;
    transition: all .3s cubic-bezier(.1,.3,.3,.1);
    width: 100%;
    background-color: #030303;
    border-radius: 40px;
}
.menu_wrapper > ul > li > a{
	color:#000 !important;
}
.triger:after{
	color:#000;
}
.blog_sidebar .blog_title a{
    color:#151649;
}
.read{
	display:none;
}
@media(max-width:767px){
	.blog_sidebar{
		display:block;
		padding-top: 0;
		border-left: 0;
	}
	.view_more {
    font-size: 16px;
    padding: 6px 32px;
}
	.filters.filter-button-group ul{
		display:flex;
		overflow-x:scroll;
		margin-bottom:15px;
	}
	.blog_sidebar .blog_item {
    padding: 24px 0;
    margin-bottom: 0;
}
	.blog_banner,
	.blog_banner ,.contact_banner,.cloudflare_banner,.banner_sec{
		margin-top: 91px;
	}
}
/* Ensure bullets are displayed within blog_description class */
.blog_description ul {
    list-style-type: disc;  /* Ensure bullets are displayed */
    padding-left: 20px;  /* Indent the list */
    margin-left: 20px;  /* Indent the list further if necessary */
}

.blog_description ul li {
    padding-left: 0;  /* Ensure no extra padding */
    margin-left: 0;  /* Ensure no extra margin */
}
pre {
    background-color: #f5f5f5;  /* Light grey background */
    border: 1px solid #ccc;     /* Light grey border */
    padding: 10px;              /* Some padding */
    overflow-x: auto;           /* Horizontal scroll for long lines */
    border-radius: 5px;         /* Rounded corners */
}
pre code {
    color: #333;                /* Dark text color */
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; /* Monospaced font */
    line-height: 1.5;           /* Line height for readability */
}
pre code .keyword {
    color: #007700;             /* Example keyword color */
    font-weight: bold;          /* Bold keywords */
}

/***banner sec**/
.banner_sec{
    margin: 150px 0 0px 0;

}

.banner_left_content p{
    position: relative;
    line-height: 25px;
    margin-bottom: 24px;
    color: #53535b;
}
.banner_left_content .headlineone{
    margin-bottom: 32px;
}


.get_start_btn,.learn_more_btn{
    min-width:164px;
    border-radius: 100px;
    text-align: center;    
    font-size: 16px;
    line-height: 24px;
    padding: 10px 16px;
    margin-top: 22px;
    display: inline-block;
    text-transform: uppercase;
}
.get_start_btn{
    background-color: #030303;
    color: #fff;
    border: 1px solid #030303;
}
.get_start_btn:hover{
    background-color:transparent;
    color: #fff;
}

.learn_more_btn{
    background-color:transparent;
    color: #030303;
    border: 2px solid #030303;
    margin-left: 15px;
}
.learn_more_btn:hover{
    background-color:#fff;
    color: #151649;
}
.bottom_counter{
    background-color: #fff;
    margin-top:100px;
    margin-left: 127px;
    border-radius: 5px 5px 0 0;
}
.bottom_counter ul li{
    width: 33.33%;
    float: left;
    text-align: left;
    padding: 30px 0;
    position: relative;
}
.counting{
    font-size: 36px;
    color: #151649;
    font-weight: 700;
}
.counter_inner{
    box-shadow: 0px 0px 40px 0px rgba(1, 11, 60, 10%);
    background-color: rgba(255, 255, 255, 0%);
    border-radius: 8px;
    padding: 12px 10px 12px 10px;
    max-width: 190px;
}
.bottom_counter ul li p{
    font-size: 15px;
    line-height: 18px;
    color: #53535b;
    position: relative;
}

.bottom_counter ul li span{
    font-size: 36px;
    color: #151649;
    font-weight: 700;
    display: inline-block;
}

/**how hacked website **/
.whatwedo{
    padding: 70px 0 80px 0;
}
.whatwedo p{
    color: #53535b;
    font-size: 15px;
    line-height: 22px;
    color: #53535b;
    font-weight: 400;
}
.whatwedo h4{
    letter-spacing: .5px;
}
.whatwedo .wrapper_item:hover {
    box-shadow: 0px 30px 50px rgba(1, 11, 60, 0.1);
    transition: all .3s linear;
}


/** honeypot **/
.myblank{
    visibility: hidden;	
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}
/**rate limiting message**/
.rate-limit-message{
    color:red;
    font-size: 16px;
    margin-top: 20px;
}
.wrapper_item{
    background: rgba(251, 251, 251, 1.0);
    border-radius: 16px;
    text-align: left;
    border-radius: 10px;
    padding:25px;
    height: 100%;
    position: relative;
}
.wrapper_item img{
    border-radius: 10px;
}
.wrapper_item h4{
    margin-bottom: 32px;
    font-size: 24px;
    font-weight: 600;
    color: #151649;
}

/***why securing online sec**/
.having_secure{
    padding: 118px 0;
}

.having_secure_item{
    border: 1px solid rgba(3, 3, 3, .16);
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 40px;
    padding-left: 30px;
    margin-top: 15px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 1.0);
    border-radius: 16px;
    transition: all .3s ease-in-out;
    min-height: 172px;
    margin-left: 7px;
    margin-right: 7px;
}
.having_secure_item:hover {
    border-color: transparent;
    box-shadow: 10px 0px 20px 0px rgba(8, 0, 42, 8%);
    transition: all .3s ease-in-out;
}
.why_securing_right_content h4{
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: .5px;
    color: rgba(3, 3, 3, 1.0);
    margin-bottom: 20px;
}

.having_secure_item h4{
    margin-bottom: 15px;
}

 .having_secure_item p{
    padding-right: 10px;
    color: #53535b;
    line-height: 20px;
}
.what_we_offer_sec h4 {
    font-size: 23px;
}
.what_we_offer_sec h4 .bi{
    font-size: 30px;
}
/**what we do sec**/
.what_we_do_sec{
    padding-bottom: 70px;
    padding-top:100px;
}
.headlinetwo p{
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    color: #151649;
    margin-bottom: 24px;
    margin-top: 20px;
}
.what_we_do_sec .headlinetwo{
    max-width: 900px;
    margin-bottom: 60px;
}
.spotlight {
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    margin-bottom: 45px;
    padding: 40px;
}
.what_we_do_sec .spotlight:last-child{
    margin-bottom: 0;
}

.spotlight:nth-child(2n) {
 -moz-flex-direction: row-reverse;
 -webkit-flex-direction: row-reverse;
 -ms-flex-direction: row-reverse;
 flex-direction: row-reverse;
 background-color: #F5F7FC;
 border-radius: 20px;

}
.spotlight .image {
 -moz-order: 1;
 -webkit-order: 1;
 -ms-order: 1;
 order: 1;
 border-radius: 0;
 width: 50%;
 
}
.spotlight:nth-child(2n) .image{
    text-align: right;
}
.spotlight .content {

 -moz-order: 2;
 -webkit-order: 2;
 -ms-order: 2;
 order: 2;
 width: 50%;
 color:#707070;
}
.content h4{
    font-size: 36px;
    font-weight: 500;
    color: #151649;
    margin-bottom: 32px;
    line-height: 140%;
}
.content p{
    font-size: 20px;
    font-weight: 400;
    line-height: 160%;
    color: #151649;
    margin-bottom: 24px;
}
.content p span{
    color: #FF6600;
}
.icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 32px;
}
.content a{
    font-size: 20px;
    font-weight: 500;
    line-height: 80%;
    color: #151649;
}
.content a img{
    margin-right: 10px;
}
.case_stuies_area {
    background-image: linear-gradient(rgba(250, 249, 246, 1), rgba(250, 249, 246, 1)) !important;
    background-position: left top !important;
    background-size: auto !important;
    background-repeat: no-repeat !important;
    padding: 80px 1rem;
}
.video_img{
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}
.video_img a{
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #000;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    
}
.video_img a:before {
    animation-delay: .5s;
    animation-iteration-count: infinite;
    animation-name: ripple;
    animation-timing-function: cubic-bezier(.65,0,.34,1);
    border-radius: 100%;
    position: absolute;
    content: '';
}

.video_img a:after,.video_img a:before {
    align-items: center;
    animation-duration: 3s;
    bottom: 0;
    content: "";
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    content: '';
}

.video_img a:after {
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-name: ripple;
    animation-timing-function: cubic-bezier(.65,0,.34,1);
    border-radius: 50%;
    border: 8px solid #030303;
}
@keyframes ripple {
    0% {
        opacity: 1;
        transform: scale3d(.75,.75,1)
    }

    to {
        opacity: 0;
        transform: scale3d(1.5,1.5,1)
    }
}
.case_stuies_right{
    padding-left: 30px;
}
.case_stuies_right p{
    color: #000;
    padding: 15px 0 30px 0;
}
.case_stuies_right .heading {
    margin-bottom: 0;
}

.why_us_sec{
    padding: 150px 0 50px 0;
    background: #d7e3f0;
}
.why_us_sec .heading{
    margin-bottom: 56px;
}
.why_us_item{
    margin-bottom: 40px;
}
.why_us_item p{
    padding-top: 20px;
}
.why_us_item h4{
    font-weight: 500;
}

/**why_wpuprise**/
.why_wpuprise_content{
    background-color: #E9EAF0;
    padding: 90px;
    border-radius: 20px;
}

.slider_left_img{
    margin-right: 30px;
}
.slider_left_img img{
    border-radius: 12px;
    height: 312px;
    object-fit: cover;
}
.author_quote p{
    font-size: 22px;
    line-height: 160%;
    color: #151649;
    margin-bottom: 80px;
}
.author_info h4{
    font-size: 20px;
    line-height: 140%;
    color: #FF6600;
}
.author_info h4 span{
    font-size: 16px;
    line-height: 130%;
    color: #545454;
    display: block;
}
.wpuprise_slider_item .row{
    margin-left: 0;
    margin-right: 0;
}
.wpuprise_slider_item [class*="col-"]{
    padding-left: 0;
    padding-right: 0;
}
.why_wpuprise_content .slick-dots  li button:before{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #FF6600;
    opacity: unset;
}
.why_wpuprise_content .slick-dots  li{
    width: 10px;
}
.slick-dots li.slick-active button:before{
    background-color: #FF6600;
    opacity: unset;
}
.why_wpuprise_content .slick-dots {
    width: 82px;
    text-align: right;
    right: 80px;
    bottom: 19px;
}
.why_wpuprise_content .slick-prev {
	left: unset;
	transform: unset;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #FEB98A;
	height: 60px;
    width: 60px;
	top: unset;
    bottom: 0;
    right:156px;
}

.why_wpuprise_content .slick-next {
	right: 15px;
	transform: unset;
	z-index: 9;
	margin-top: 0px;
	background: #fff;
	background-position: center center;
	background-size: 100% 100%;
	border: 1px solid #FEB98A;
	border-radius: 50%;
	height: 60px;
    width: 60px;
	bottom: 0;
    right:0;
    top: unset;
}

.why_wpuprise_content .slick-next:after {
	content: '\f105';
	font-family: 'FontAwesome';
	color: #FEB98A;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	position: absolute;
}

.why_wpuprise_content .slick-prev:after {
	content: '\f104';
	font-family: 'FontAwesome';
	color: #FEB98A;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	position: absolute;
}

.why_wpuprise_content .slick-arrow:hover {
	background: #fff;
	border: 1px solid #FF6600;
}

.why_wpuprise_content .slick-arrow:hover:after {
	color: #FEB98A !important;
}

/**our_working_process**/
.our_working_process{
    padding: 120px 0;
}
.our_working_process .headlinetwo{
    max-width: 485px;
    margin-bottom: 50px;
}
.process_item{
    text-align: center;
    position: relative;
}
.process_item:after{
    position: absolute;
    right: 0;
    content: '';
    top: 28px;
    background: url(../img/orange-arrow-vector.png)no-repeat;
    width: 153px;
    height: 28px;
    background-size: contain;
    margin-right: -90px;
}
.process_item p{
    font-weight: 500;
}
.process_item h4{
    font-size: 24px;
    font-weight: 500;
}
.our_working_process .row [class*="col-"]:last-child .process_item:after{
    display: none;
}
.blue_icon{
    height: 102px;
    width: 102px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    line-height: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}
.process_item h4{
    margin-bottom: 24px;
}

/**get_in_touch_sec**/

.get_in_touch_sec{
    background-color: #faf9f6;
    padding: 80px 0;
}
.get_in_touch_sec .heading{
    margin-bottom: 0;
}
.get_in_touch_sec .heading h2{
    margin-bottom: 15px;
}

/**faq sec*/
.faq_sec{
   
    padding-bottom: 120px;
}
.faq-point {
	max-width: 1215px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.faq-point-box {
	margin-bottom: 22px;
}

.faq-point-box:last-child {
	margin-bottom: 0;
}

.faq-point-box-title {
	font-size: 20px;
    line-height: 24px;
    color: #303030;
    padding: 10px 40px 10px 0px;
    position: relative;
    cursor: pointer;
    font-weight: 600;
    transition: all .4s ease-in-out;
}

.faq-point-box-title::after {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 15px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 20px;
    color: #303030;
    transition: all .4s ease-in-out;
    transform: translate(0, -54%);
}
.faq-point-box-title.active::after {
    content: "\f106 ";
   
}
.faq-point-box-description {
    color: #53535b;
    font-weight: 400;
    letter-spacing: .1px;
	display: none;
    font-style: 16px;
   
}
.faq-point-box-description p{
    max-width: 1024px;
}

.faq-point-box-description.active {
	display: block;
}

/**need_to_protect_sec**/
.need_to_protect_sec{
    padding: 120px 0;
    min-height: 790px;
}
.protect_right_content_form{
    background-color: #151649;
    padding: 40px 30px;
    border-radius: 20px;
}
.protect_right_content_form h3{
    color: #fff;
    font-size: 30px;
    line-height: 160%;
    margin-bottom: 22px;
}
.input_item  input{
    height: 56px;
    padding: 0 15px;
    background-color: #fff;
    color: #4F4F4F;
    font-size: 18px;
    line-height: 130%;
    font-weight: 400;
    width: 100%;
    border-radius: 8px;
    border: none;
}
.input_item textarea{
    height: 164px;
    padding:15px;
    background-color: #fff;
    color: #4F4F4F;
    font-size: 18px;
    line-height: 130%;
    font-weight: 400;
    width: 100%;
    border-radius: 8px;
    border: none;
}
.input_item {
    margin-bottom: 24px;
    position: relative;
}
.input_item .common_btn{
    background-color: #FF6600;
    border-radius: 100px;
    color: #fff;
    font-weight: 700;
    width: 230px;
    position: relative;
    text-align: left;
    padding: 0 32px;
}
.input_item i{
    color: #fff;
    position: absolute;
    left: 182px;
    z-index: 9;
    top: 16px;
    font-size: 24px;
}
.protect_left_content ul li {
    padding-left: 40px;
    font-size: 20px;
    line-height: 160%;
    position: relative;
    color: #151649;
    margin-bottom: 15px;
    font-weight: 500;
}
.protect_left_content ul li:after{
    position: absolute;
    content: '';
    background: url(../img/orange-tick-mark.png)no-repeat;
    left: 0;
    top:4px;
    width: 22px;
    height: 22px;
}
.protect_left_content .headlinetwo p{
    font-weight: 500;
}

/**footer**/
footer{
    padding: 70px 0 30px 0;
    background-color: #15141a;
}
.footer_items li a{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #D0D0D0;
    display: block;
    transition: all .4s ease-in-out;
}
.footer_items li a:hover{
    color: #fff;
    padding-left: 5px;
    transition: all .4s ease-in-out;
}
.footer_items li{
    display: block;
    margin-bottom: 10px;
}
footer h4{
    color: #fff;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
}
.divaider_two{
    width: 100%;
    height: 1px;
    margin-top: 60px;
    margin-bottom: 30px;
    border-top: 1px solid rgba(251, 251, 251, 16%);
}
footer p{
    text-align: left;
    font-size: 12px;
    line-height: 15px;
    color: #fff;
}
.privaypolicy li {
    text-align: right;
    font-size: 12px;
    line-height: 15px;
    position: relative;
    display: inline-block;
    margin: 0 10px;
}
.privaypolicy li:after{
    position: absolute;
    content: '';
    right: -10px;
    top:0;
    background-color: #fff;
    width: 1px;
    height: 100%;
}
.privaypolicy li:last-child:after{
    display: none;
}
.privaypolicy li a{
    color: #fff;
}
.social_media_links{
    margin-top: 32px;
    display: flex;
}
.social_media_links a{
    display: flex;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transition: all .4s ease-in-out;
    
}
.social_media_links a:hover{
    transition: all .4s ease-in-out;
    background-color:rgba(239, 239, 259, 0.44);
}
.footer_description{
    max-width: 400px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-top: 30px;
}

/***contac page**/
.contact_banner{
    margin-top: 104px;
    height: 325px;
}
.breadcrumb{
    align-items: center;
    padding-top: 12px;
}
.breadcrumb a{
    color: #fff;
    font-size: 18px;
    margin-right: 30px;
    display: inline-block;
    position: relative;
}
.breadcrumb a:after{
    position: absolute;
    content: '\f105 ';
    color: #fff;
    right: -20px;
    top: 2px;
    font-size: 18px;
    font-family: 'FontAwesome';
}
.breadcrumb li:last-child a:after{
    display: none;
}
 .contact_banner_content{
    margin-top: 80px;
}
.contact_banner_content p{
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    padding-top: 24px;
}
.contac_form{
    background-color: #F5F7FC;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #151649;
}
.contact_top_area{
    margin-bottom: 40px;
}
.contact_top_area img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
}
.input_item > .intl-tel-input.allow-dropdown {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
  }
  
  .input_item > .intl-tel-input.allow-dropdown > .flag-container {
      z-index: 4;
  }
  
  .iti-flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags.png");
  }
  
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
      .iti-flag {
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/12.1.6/img/flags@2x.png");
      }
  }
  
  .contac_form label{
    display: block;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
    color: #151649;
  }
  .contac_form .intl-tel-input.separate-dial-code .selected-flag{
    background-color: #fff;
  }
  .contac_form .intl-tel-input.separate-dial-code .selected-flag:hover{
    background-color: #fff;
  }
  .contac_form .input_item > .intl-tel-input.allow-dropdown{
    width: 100%;
  }
  .contac_form select{
    height: 56px;
    padding: 0 15px;
    background: #fff url('../img/blue-arrow.png') no-repeat center right 15px;
    background-size: 14px;
    color: #151649;
    font-size: 18px;
    line-height: 130%;
    font-weight: 400;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #151649;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    outline: none;
  }
  select::-ms-expand { 
    display: none; /* remove default arrow on ie10 and ie11 */
}
 
.contac_form .input_item input{
    border:1px solid #151649;
    color: #8A8A8A;
}
.contac_form .input_item textarea{
    border:1px solid #151649;
    color: #8A8A8A;
    height: 130px;
}
.contac_form .intl-tel-input .flag-container{
    padding: 4px;
}
.contac_form .input_item input.common_btn{
    color: #fff;
    border: none;
    font-weight: 500;
}
.contact_top_area .bodyone_text {
    font-size: 17px;
    line-height: 160%;
    margin-left: 21px;
    font-weight: 500;
}









.contact_form_sec{
    padding: 120px 0 112px 0;
}
.contact_left_content .bodyone_text{
    max-width: 550px;
}
.feature_box{
    padding-left: 60px;
    margin-bottom: 32px;
    position: relative;
}
.feature_box img{
    height: 44px;
    position: absolute;
    left: 0;
    top: 0;
}
.features{
    margin-top: 40px;
}


/**cloudflare_banner*/
.cloudflare_banner{
    margin-top: 104px;
    padding-bottom: 120px;
}
.cloudflare_right_img{
    position: relative;
}
.cloudflare_right_img img{
    position: absolute;
}
.counting_area{
    width: 60%;
    position: relative;
}

.cloudflare_banner_content p{
    color: #fff;
    padding: 32px 0 20px;
}
.cloudflare_banner_content .headlineone{
    margin-top: 50px;
    
}
.counter_col {
    font-size: 48px;
    color: #FF6600;
}
.counter_col {
    flex-direction: column;
}
.counter_col p{
    display: block;
    color: #fff;
}

/**why_cloudflare page**/
.why_cloudflare{
    padding: 100px 0;
}
.why_cloudflare .headlinetwo{
    margin-bottom: 56px;
}
.why_cloudflare .wrapper_item{
    text-align: left;
    margin-bottom: 40px;
    padding: 0;
}
.wrapper_item h4{
    margin-bottom: 16px;
    margin-top: 24px;
}

/**our_cloudflare_services sec**/
.our_cloudflare_services{
    padding: 120px 0 40px 0;
    margin-bottom: 100px;
}
.our_cloudflare_services .headlinetwo{
    margin-bottom: 15px;
   
}
.our_cloudflare_services .spotlight .content{
    width: 55%;
}
.our_cloudflare_services .spotlight .image{
    width: 45%;
}
.our_cloudflare_services .spotlight{
    border-bottom:1px dashed rgba(21,22,77,0.5) ;
    border-radius: 0;
    padding: 40px 0;
}
.our_cloudflare_services .spotlight:last-child{
    border-bottom: none;
}


/**single banner**/
.single_banner p,.single_banner h3{
    color: #fff;
}
.single_banner{
    margin-bottom: 120px;
}
.single_banner h3{
    margin-bottom: 32px;
    line-height: 160%;
}
.single_banner p{
    margin-bottom: 20px;
    color: #D2D2D2;
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
}
.right_image{
    position: absolute;
    right: -15px;
    text-align: right;
    bottom: 0;
    width:auto;
}
.right_image img{
    width:350px;
}
.single_banner .get_in_touch_sec_wrapper{
    overflow: hidden;
    position: relative;
  
}
.faq_sec .headlinetwo p a{
    color: #FF6600;
}
/**blog page**/
.blog_banner ul li a{
    color: #151649;
}
.blog_banner ul li a:after{
    color: #151649;
}
.blog .headlinetwo span{
    color: #FF6600;
}
.blog_banner{
    margin-top: 104px;
}
.blog_top_area p span{
    color: #FF6600;
}
.blog_listing{
   padding: 110px 0 50px 0;
}
.blog_img_holder img{
    border-radius: 10px;

}
.blog_img_holder{
    margin-bottom: 32px;
}
.catagori{
    color: #FF6600;
    font-size: 16px;
    line-height: 100%;
}
.read{
    color: #565656;
    font-size: 16px;
    line-height: 100%;
}
.date{
    color: #565656;
    font-size: 16px;
    line-height: 100%;
}
.blog_title{
    color:#151649;
    font-size: 28px;
    line-height: 150%;
    font-weight: 700;
    margin-bottom: 16px;
}
.blog_description {
    color:#151649;
    font-size:18px;
    font-weight:160%;
}
.blog_history li{
    margin-right: 10px;
}
.blog_history li:last-child{
    margin-right: 0;
}
.blog_sidebar{
    padding-top: 40px;
}
.blog_item{
    margin-bottom: 56px;
}
.blog_sidebar .blog_img_holder{
    height: 100%;
}
.blog_sidebar .blog_img_holder img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blog_sidebar .blog_item{
    border-bottom: 1px solid #C8C8C8;
    padding: 24px;
    margin-bottom: 0;
}
.blog_sidebar{
    border-left: 1px solid #C8C8C8;
}
.view_more{
    background-color: transparent;
    border: 1px solid #FF6600;
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
    color: #FF6600;
    border-radius: 100px;
    padding: 12px 32px;
    display: inline-block;
    margin-top: 22px;
}
.view_more:hover{
    background-color: #FF6600;
    color: #fff;
    
}

.filter-button{
    border: none;
    color: #151649;
    font-size: 18px;
    background-color: transparent;
    padding: 10px 30px;
    border-radius: 100px;
}
.filter-button.active{
    background-color: #FF6600;
    color: #fff;
}
.fillter_content{
    margin-top: 50px;
}
.fillter_content .row{
    margin-bottom: 50px;
}
.pagination_blog{
    margin-bottom: 80px;
}
.pagination_blog a.active,.pagination_blog a:hover{
    background-color: #FF6600;
    color: #fff;
}
.pagination_blog a{
    width: 48px;
    height: 48px;
    color: #000;
    font-size: 20px;
    line-height: 80%;
    border-radius: 50%;
    line-height: 48px;
    text-align: center;
    margin: 0 5px;
}
.pagination_blog {
    display: flex;
    align-items: center;
    justify-content: center;
}

/**blog_details page **/
.blog_details{
    padding: 80px 0;
}
.details_content{
    background-color: #F5F7FC;
    padding-top: 80px;
    border-radius: 10px;
}
.blog_details .blog_item{
    max-width: 772px;
    margin-left: auto;
    margin-right: auto;
}
.blog_details .blog_description{
    max-width: 772px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
   
}
.blog_details .blog_description br{
    display: block;
}
.blog_share a i{
    color: #FF6600;
}
.blog_share h6{
    position: relative;
    padding-right: 20px;
}
.blog_share h6:after{
    position: absolute;
    content:'';
    height: 20px;
    width: 1px;
    background-color: #FF6600;
    top: 0;
    right: 0;
}
.back_btn{
    color: #151649;
    margin-left: 20px;
    font-size: 18px;
    font-weight: 600;
}
.blog_details .blog_description p{
    margin-bottom: 20px;
}

/* Hide blog_banner content on mobile */
@media (max-width: 767px) {
    .blog_banner .breadcrumb {
        display: none;
    }
}

/**related airticles and tropics  sec**/
.related_airticles_tropics{
    padding: 30px 0 100px 0;
}
.related_airticles_tropics .blog_item{
    margin: 20px 10px;
}
.related_airticles_tropics .slick-prev {
	left: unset;
	transform: unset;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #FEB98A;
	height: 60px;
    width: 60px;
	top: -60px;
    bottom: unset;
    right:75px;
}

.related_airticles_tropics .slick-next {
	right: 15px;
	transform: unset;
	z-index: 9;
	margin-top: 0px;
	background: #fff;
	background-position: center center;
	background-size: 100% 100%;
	border: 1px solid #FEB98A;
	border-radius: 50%;
	height: 60px;
    width: 60px;
	
    right:0;
    top: -60px;
    bottom: unset;
}

.related_airticles_tropics .slick-next:after {
	content: '\f105';
	font-family: 'FontAwesome';
	color: #FEB98A;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	position: absolute;
}

.related_airticles_tropics .slick-prev:after {
	content: '\f104';
	font-family: 'FontAwesome';
	color: #FEB98A;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	position: absolute;
}

.related_airticles_tropics .slick-arrow:hover {
	background: #fff;
	border: 1px solid #FF6600;
}

.related_airticles_tropics .slick-arrow:hover:after {
	color: #FEB98A !important;
}







.simple-pagination ul {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	text-align: center;
}

.simple-pagination li {
	display: inline-block;
	margin-right: 5px;
}

.simple-pagination li a,
.simple-pagination li span {
	color: #666;
	padding: 5px 10px;
	text-decoration: none;
	border: 1px solid #EEE;
	background-color: #FFF;
	box-shadow: 0px 0px 10px 0px #EEE;
}

.simple-pagination .current {
	color: #FFF;
	background-color: #FF7182;
	border-color: #FF7182;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
	background: #e04e60;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination a {
    padding: 5px 10px;
    margin: 0 5px;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.pagination .current {
    background-color: #0073aa;
    color: #fff;
}
.search_form{
    border: 1px solid #ABABAB;
    border-radius: 10px;
    display: flex;
    height: 50px;
    padding: 0 10px 0 0;
}
.search_form input{
    border:none;
    line-height:90%;
    font-size:18px;
    color:#151649;
    font-weight:600;
    background:transparent;
}
.form-response {
    margin-top: 10px; /* Space above the message */
    font-size: 16px; /* Make it stand out a bit */
    font-weight: bold; /* Optional: make text bold */
}
.form-message .success {
    color: green;
}

.form-message .error {
    color: red;
}
.submit-btn {
 background:#fff !important;
 width:50px;
 border-radius:10px 0 0 10px;
 position:relative;
 border:none;
 font-size:0;
}
.submit-btn:after{
   position: absolute;
  content: '\F52A';
  font-family: bootstrap-icons !important;
  font-size: 19px;
  top: 11px;
  color: gray;
    
}
#portfolio p {
	color: grey;
	font-size: 12px;
	font-weight: 200;
}

/*.content {
	width: 100%;
	margin: 0 auto;
	padding: 0px;
	text-align: center;
}*/


.filters {
	width: 100%;
	text-align: left;
}


.filters li {
	display: inline-block;
  	border: none;
    color: #151649;
    font-size: 18px;
    background-color: transparent;
    padding: 10px 30px;
    border-radius: 100px;
    cursor:pointer;
}

.filters  li:hover {
	color: #a6a6a6;
}

.filters  li.active {
   background-color: #FF6600;
    color: #fff;
}

.populat_post{
    padding-top:70px;
}




a.btn.btn-default.btn_style_more.loadmore {
    border: 1px solid #FF6600;
    border-radius: 100px;
    padding: 10px 30px;
    background-color: #FF6600;
    color: #fff;
    margin-bottom:50px;
}
/* load button */
.btn_wrapper {
    display: flex;
    justify-content: center;
    padding-top: 49px;
}
 .blog_item{
    max-width:100%;
}
.blog_img_holder{
    height:400px;
}
.blog_img_holder img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;
}

.banner_right_img_holder {
    position: relative;
    width: 100%; /* Make it responsive */
    padding-top: 100%; /* 1:1 aspect ratio, which is (height / width) * 100% */
    overflow: hidden;
}

.banner_right_img_holder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container while preserving its aspect ratio */
}


/**what we offer two section**/
.what_we_offer_two_item{
    border: 1px solid rgba(215, 217, 227, 100%);
    border-radius: 32px;
    background-color: rgba(250, 249, 246, 100%);
    padding: 40px 29px;
    transition: all .3s ease-in-out;
}
.what_we_offer_two_item:hover {
    border-color: transparent;
    box-shadow: 0px 30px 50px 0px rgba(1, 11, 60, 10%);
}
.what_we_offer_two_item span{
    letter-spacing: .3px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 700;
    color: #030303;
    font-size: 14px;
}
.what_we_offer_two_item h4{
    letter-spacing: .3px;
    font-size: 38px;
    line-height: 43px;
    margin: 0 0 1.4rem;
}
.what_we_offer_two_item a{
    display: flex;
    align-items: center;
    width: 148px;
    justify-content: center;
    line-height: 16px;
    padding: 1px 5px;
    margin-top: 15px;
}
.what_we_offer_two_item a .bi{
    width: 30px;
    height: 37px;
    font-size: 34px;
}
.what_we_offer_two_item p{
    color: #53535b;
}
