/* Custom Container */
@media only screen and (min-width : 1200px){
	.container{
		max-width: 1300px;
	}
}

/* Global */
::-moz-selection { /* Code for Firefox */
	background-color: rgba(132, 148, 168, 0.5);
}
::selection {
	background-color: rgba(132, 148, 168, 0.5);
}
/* Works on Firefox */
*{
  scrollbar-width: thin;
  scrollbar-color: #393f47 #cccccc;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar{
  width: 8px;
}
*::-webkit-scrollbar-track{
  background: #cccccc;
}
*::-webkit-scrollbar-thumb{
  background: #393f47;
}
*, body, h1, h2, h3, h4, h5, h6, p, a{
	outline: 0 !important;
	font-family: 'Montserrat', sans-serif;
}
html{
	scroll-behavior: smooth;
}
.btn:focus,
.form-control:focus,
.form-select:focus{
	outline: 0;
	box-shadow: none;
}
.add_shadow{
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* Back To Top Button */
#back_to_top_btn{
	display: inline-block;
	background-color: #041642;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 50%;
	position: fixed;
	bottom: 30px;
	transition: background-color .3s, opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	right: 25px;
}
#back_to_top_btn::after{
	font-family: "Font Awesome 5 Pro";
  	font-weight: 900;
  	content: "\f077";
	font-size: 22px;
	color: #fff;
}
#back_to_top_btn:hover{
	cursor: pointer;
	background-color: #3d3d3d !important;
}
#back_to_top_btn:active{
	background-color: #3d3d3d !important;
}
#back_to_top_btn.show{
	opacity: 1;
	visibility: visible;
}
body{
	background-color: #FFFCEF;
}


/* Input Fields */
/* Search Field */
.th_part_b .search_input{
	border-radius: 14px;
	border: 1px solid #E2E2E2;
	padding-top: 10px;
	padding-left: 42px;
	padding-bottom: 10px;
	text-align: left;
  	height: 100%;	
}
.th_part_b .search_input:focus{
	border: 1px solid #191919;
}
.th_part_b form{
	position: relative;
}
.th_part_b form i{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	left: 10px;
}

.form-select{
	border-radius: 14px;
	border: 1px solid #E2E2E2;
	padding-top: 10px;
	padding-left: 10px;
	padding-bottom: 10px;	
}
.form-select:focus{
	border: 1px solid #191919;
}

/* Buttons */
.btn-primary{
	display: inline-block;
	color: #fff;
	text-decoration: none;
	border-radius: 14px;
	background: #09205C;
	padding: 15px 30px 15px 30px;
	border-color: #09205C;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.secondary-btn{
	display: inline-block;
	color: #000;
	text-decoration: none;
	border-radius: 14px;
	background: #FFEB94;
	padding: 15px 30px 15px 30px;
	border-color: #FFEB94;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.secondary-btn:disabled{
	background-color: #FFEB94;
	border-color: #FFEB94;
}
.btn-light{
	display: inline-block;
	color: #000;
	text-decoration: none;
	border-radius: 14px;
	background: #E2E2E2;
	padding: 15px 30px 15px 30px;
	border-color: #E2E2E2;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.outline_btn{
	display: inline-block;
	color: #0E3752;
	text-decoration: none;
	border-radius: 14px;
	background: transparent;
	padding: 15px 30px 15px 30px;
	border: 1px solid #0E3752 !important;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.outline_btn:hover{
	background: #0E3752 !important;
	color: #fff !important;
	border-color: #0E3752;

}

.btn-primary:hover{
	background: #041642 !important;
	color: #fff !important;
	border-color: #041642;
}
.secondary-btn:hover{
	background: #09205C !important;
	color: #fff !important;
	border-color: #09205C;
}
.btn-light:hover{
	background: #09205C !important;
	color: #fff !important;
	border-color: #09205C;
}

.btn-outline-light{
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 18px;
	padding-right: 18px;
	border-radius: 10px;
}

.form-control{
	padding-top: 15px;
	padding-bottom: 15px;
	border: none;
	border-radius:10px !important;
	display: inline-block;
	vertical-align: middle;
}
.form-control:focus{
	border-color: #0E3752;
}
h3{
	color: #BB9A53;
	font-weight: 400;
}
h2{
	color: #0E3752;
	font-weight: 600;
}
/* Header */
.main_header{
	position: relative;
	z-index: 9999;
	padding: 15px 0;
}
.main_header .tob_bar{
	height: 6px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	background: #FFEB94;
	width: 100%;
	position: relative;
	top: -15px;

}
.main_header .header_logo{
	display: inline-block;
	text-decoration: none;
}
.main_header .header_btn{
	padding: 14px 30px;
	border-radius: 90px;
	background-color: transparent;
	border: 1px solid #09205C;
	color: #041642;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}
.main_header .header_btn:hover{
	background-color: #041642;
	color: #fff;
}
.main_header .bg_blur{
	background-color: rgba(255, 255, 255, 0.18);
	border-radius: 90px;
	backdrop-filter: blur(50px) brightness(117%);
	padding: 10px;
	display: inline-flex;
}
.container-fluid {
    padding-right: 100px;
    padding-left: 100px;
}
.main_header .nav_col {
	text-align: center;
}

.main_header .bg_blur .navbar-nav{
	justify-content: space-between;
	width: 100%;
}
.main_header .bg_blur .nav-link{
	font-weight: 500;
	font-size: 16px;
	color: #000;
	padding: 8px 15px;
	margin: 0 10px;
	border-radius: 90px;
}
.main_header .bg_blur .nav-link:first-child{
	margin-left: 0;
}
.main_header .bg_blur .nav-link:last-child{
	margin-right: 0;
}
.main_header .bg_blur .nav-link:hover{
	color: #09205C;
	/* background-color: #09205C; */
}
.main_header .bg_blur .nav-link.active{
	color: #fff;
	background-color: #09205C;
	font-weight: 600;
}
.sticky_menu{
	position: fixed;
	width: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1020;
	background: #fff;
}

/* Banner */
.main_bnr_parent{
	position: absolute;
	top: 0;
	width: 100%;
}
.main_bnr_parent .container-fluid {
    padding-right: 200px;
    padding-left: 200px;
}
.main_banner::after{
	content: "";
	background: url(../images/bnr_pettern_ic.svg);
	width: 488px;
	height: 488px;
	position: absolute;
	top: 42px;
  	left: -310px;
	z-index: 5;
	opacity: 30%;
}
.main_banner{
	width: 100%;
  	background-size: cover;
  	background-position: center center;
  	background-repeat: no-repeat;
	position: relative;
	height: 900px;
	
}
.main_banner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(9,32,92);
	background: linear-gradient(0deg, rgba(9,32,92,0.7791317210477942) 18%, rgba(9,32,92,1) 100%); 
	z-index: 1;
}
.main_banner .btn{
	font-size: 17px;
	font-weight: 500;
}
.main_banner .bnr_side_img{
	width: 100%;
	height: 600px;
	border-radius: 30px;
	position: relative;
}
.main_banner .bnr_side_img img{
	width: 100%;
	height: 100%;
	border-radius: 30px;
	object-fit: cover;
}
.main_banner .banner-content{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 2;	
}
.main_banner .banner-content .content_row{
	margin-top: 100px;
}
.blur_box{
	background-color: #fff;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	border-radius: 24px;
	padding: 25px;
	width: auto;
	display: inline-block;
	margin-top: 60px;
	position: absolute;
	bottom: -29px;
  	left: -83px;
}
.blur_box ul{
	padding-left: 24px;
	list-style-image: url(../images/checkmark.svg);
}
.blur_box ul li{
	color: #000;
	margin-top: 12px;
  	padding-left: 12px;
}
 .blur_box h5{
	font-weight: 600;
	color: #041642;
	margin-bottom: 15px;
}
.banner-content h4{
	font-weight: 500;
	font-size: 27px;
	color: #09205C;
}
.banner-content h1{
	font-weight: 600;
	font-size: 46px;
	line-height: 60px;
	color: #000000;
}
.banner-content p{
	color: #60646F;
	font-size: 18px;
	line-height: 34px;
}
.banner-content .theme_btn{
	margin-top: 20px;
}
.banner_top_margin{
  margin-top: 984px;
}
.banner_swiper_pagination{
	bottom: auto !important;
	top: 50% !important;
	transform: translateY(-50%);
	left: -30px !important;
	text-align: left;
	width: auto !important;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.banner_swiper_pagination .swiper-pagination-bullet{
	background: rgba(255, 255, 255, 0.21);
	margin: 4px 0 !important;
}
.banner_swiper_pagination .swiper-pagination-bullet-active{
	background: #FAA953;
}
.banner_swiper_pagination::before{
	font: var(--fa-font-light);
  	content: "\f062";
  	color: #fff;
  	margin-bottom: 10px;
}
.banner_swiper_pagination::after{
	font: var(--fa-font-light);
  	content: "\f063";
  	color: #fff;
  	margin-top: 10px;
}
.scroll_down_banner_btn{
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0);
	backdrop-filter: brightness(111%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 30px;
	right: 0;
	text-decoration: none;
}
.scroll_down_banner_btn:hover{
	color: #fff;
}
.main_banner .banner_navigation {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.banner_navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.main_bnr_parent .banner_navigation .banners_swiper_prev, .main_bnr_parent .banner_navigation .banners_swiper_next {
	position: unset;
	color: #fff !important;
	background-color: #041642 !important;
	border: 2px solid #041642 !important;
	border-radius: 20px;
	width: 60px;
	height: 60px;
	margin-top: 0;
	font-size: 24px;
}
.main_bnr_parent .banner_navigation .swiper-button-disabled{
	background-color: transparent !important;
	color: #041642 !important; 
}
.main_bnr_parent .banner_navigation .banners_swiper_prev {
	margin-right: 10px;
}
.swiper-button-prev::after, .swiper-button-next::after{
	display: none;
}
.slide_option{
	align-items: end;
}
.main_header .bg_blur.sticky_menu {
	width: max-content;
	position: fixed;
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1020;
	background: rgba(2, 10, 56, 0.87);
	background: linear-gradient(220deg, rgba(200, 200, 255, 0.5) 0%, rgba(224, 222, 255, 0.75) 100%);
}


/* Our Solutions */
.icon_content_box{
	display: flex;
	gap: 25px;
}
.icon_content_box h6{
	font-size: 24px;
	font-weight: 600;
	color: #09205C;
}
.icon_content_box .icon{
	width: 90px;
	height: 90px;
	padding: 10px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.icon_content_box .icon img{
	height: 100%;
	width: 100%;
}
.our_solutions .section_img{
	height: 562px;
}
.our_solutions .sec_img2 img{
	width: 100% !important;
	height: auto !important;
}
.our_solutions .section_img img{
	height: 100%;
}
.custom_tabs .nav-pills {
	background-color: #FFF6D0;
	border-radius: 50px;
	display: inline-flex;
}
.custom_tabs .nav-pills .nav-link.active, .custom_tabs .nav-pills .show > .nav-link {
	color: #fff;
	background-color: #09205C;
	border-radius: 50px;
}
.custom_tabs .nav-link{
	color: #000;
	padding: 20px;
	border-radius: 50px;
}
.custom_tabs .tab-pane{
	margin-top: 40px;
}
.our_solutions .title_head{
	margin-bottom: 40px;
	text-align: center;
}
.our_solutions .title_head h1{
	color: #000;
	font-weight: 600;
	margin-bottom: 15px;
	
}
.our_solutions .section_img{
	width: 100%;
	height: 600px;
	border-radius: 22px;
	overflow: hidden;
}
.our_solutions .section_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.our_solutions .tab-content ul{
	padding-left: 15px;
}

/* Tech & Validation */
.tech_validation{
	background: url(../images/tech_bg.png);
	width: 100%;
	height: 100%;
	background-size: cover;
	margin-top: 100px;
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}
.tech_validation .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(3, 21, 65, 0.904);
	z-index: 1;
}
.tech_whitebox{
	background-color: #fff;
	border: 1px solid #E6E6E6;
	border-radius: 22px;
	padding: 25px;
	transition: 0.5s;
	height: 475px !important;
}
.tech_validation .swiper-slide{
	height: 100%;
}
.tech_whitebox:hover{
	background-color: #FFEB94;
}
.tech_whitebox .icon{
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
}
.tech_whitebox .icon img{
	width: 100%;
	height: 100%;
}
.tech_whitebox .content_body h6{
	font-size: 27px;
	color: #000;
	font-weight: 600;
}
.tech_validation .title_head {
	position: relative;
	z-index: 6;
}
.title_head h1{
	font-weight: 600;
	margin-bottom: 50px;
	color: #fff;
}
 .banner_navigation .dark_swiper_btn_prev, .banner_navigation .dark_swiper_btn_next {
	position: unset;
	color: #fff !important;
	background-color: #09205C;
	border: 2px solid #09205C;
	border-radius: 20px;
	width: 60px;
	height: 60px;
	margin-top: 0;
	font-size: 24px;
}
.banner_navigation .swiper-button-prev {
	margin-right: 10px;
}
.tech_validation .banner_navigation .swiper-button-disabled{
	background-color: transparent !important;
	color: #09205C !important; 
}
.tech_validation_body ul{
	padding-left: 0;
	list-style: none;
}
.tech_validation_body ul li p{
	margin-bottom: 0;
}
.tech_validation_body ul li p strong{
	color: #000;
}

/* About Us */
.about_us{
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}
.about_us::after{
	content: "";
	background-image: url(../images/dark_logo_vector.svg);
	width: 487px;
	height: 487px;
	position: absolute;
	top: -144px;
  	left: -343px;
}
/* .about_us::before{
	content: "";
	background-image: url(../images/mission_ico.png);
	width: 610px;
	height: 610px;
	position: absolute;
	top: -144px;
  	right: -227px;
	z-index: -1;
} */
.about_us .section_img{
	width: 100%;
	height: 600px;
	border-radius: 30px;
	overflow: hidden;
}
.about_us .section_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about_us h5{
	color: #09205C;
}
.about_us h2{
	color: #000;
	font-size: 45px;
	font-weight: 600;
}
.about_us .mission_text h4{
	color: #09205C	;
	font-weight: 600;
}

/* Leadership */
.leadership_section{
	margin-top: 100px;
}
.leadership_title{
	margin-bottom: 30px;
}
.leadership_title h1{
	color: #000;
	font-weight: 600;
}
.team_member{
	text-align: center;
}

.team_member .member_img{
	width: 100%;
	height: 304px;
	border-radius: 22px;
	overflow: hidden;
}
.team_member .member_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.member_group_img{
	width: 100%;
	height: 400px;
	border-radius: 22px;
	overflow: hidden;
}
.member_group_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.team_member h6{
	color: #09205C;
	font-weight: 600;
	font-size: 24px;
	margin-top: 20px;
}
.leadership_section .banner_navigation{
	justify-content: start;
}
.leadership_section .banner_navigation .dark_swiper_btn_prev, .banner_navigation .dark_swiper_btn_next {
	position: unset;
	color: #fff !important;
	background-color: #09205C;
	border: 2px solid #09205C;
	border-radius: 20px;
	width: 60px;
	height: 60px;
	margin-top: 0;
	font-size: 24px;
}
.leadership_section .banner_navigation .swiper-button-disabled{
	background-color: transparent !important;
	color: #09205C !important; 
}

/* Partner_lic */
.pertner_licn{
	margin-top: 70px;
}
.pertner_licn .title {
	margin-bottom: 40px;
}
.pertner_licn .title h1{
	color: #000;
	font-weight: 600;
	margin-bottom: 30px;
}
.pertner_licn .section_img{
	width: 100%;
	height: 400px;
	border-radius: 30px;
	overflow: hidden;
}
.pertner_licn .section_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pertner_licn h5{
	color: #09205C;
	font-weight: 600;
}
.pertner_licn h3{
	color: #09205C;
	font-size: 27px;
	font-weight: 600;
}
.pertner_licn .mission_text h4{
	color: #09205C	;
	font-weight: 600;
}
.pertner_licn ul{
	padding-left: 15px;
}
.pertner_licn ul li{
	margin-top: 10px;
}
.pertner_licn ul li span{
	font-weight: 600;
	color: #041642;
}

/* Partners */
.partners{
	background: #fff;
	padding-top: 25px;
  	padding-bottom: 25px;
	margin-top: 70px;
}
.partner_logo{
	width: 100%;
}
.partner_logo img{
	width: 100%;
}

/* News & Events */
.news{
	margin-bottom: 100px;
	margin-top: 60px !important;
}
.news a{
	text-decoration: none;
	display: block;
	color: #141414;
}
.news .title_head h1{
	font-weight: 600 !important;
	color: #000;
	margin-bottom: 0 !important;
}
.news .banner_navigation .swiper-button-prev, .banner_navigation .swiper-button-next {
	position: unset;
	color: #fff !important;
	background-color: #09205C;
	border: 2px solid #09205C;
	border-radius: 20px;
	width: 60px;
	height: 60px;
	margin-top: 0;
	font-size: 24px;
}
.news .banner_navigation .swiper-button-disabled{
	background-color: transparent !important;
	color: #09205C !important; 
}
.news .banner_navigation .swiper-button-prev {
	margin-right: 10px;
}

.news_box{
	background-color: #f7f7f7;
	border: 1px solid #ECECEC;
	width: 100%;
	border-radius: 32px;
	transition: 0.5s all ease;
}
.news .content_body .date{
	color: #041642;
	font-size: 16px;
	font-weight: 400;
}
.news_box h4{
	color: #041642;
	transition: 0.5s all ease;
	font-weight: 600;
}
.news_img{
	padding-top: 12px;
  	padding-left: 12px;
  	padding-right: 12px;
	width: 100%;
	border-radius: 22px;
	height: 260px;
	overflow: hidden;
}
.news_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 22px;
}
.news .content_body{
	padding: 30px;
}
.news p{
	margin: 0;
	transition: 0.5s all ease;
}

.news_box:hover{
	background-color: #FFEB94;
	color: #fff;
	transition: 0.5s all ease;
}
.news_box:hover h4{
	color: #000;
}
.news_box:hover p{
	color: #000;
	transition: 0.5s all ease;
}
.main_heading{
	position: relative;
}
.heading_decor{
	position: absolute;
	top: -29px;
	left: 50%;
	transform: translate(-50%, -50%);
}
.heading_line{
	position: absolute;
	bottom: -26px;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Contact Us */
.contact_parent{
	background-image: url(../images/contact_bg.jpg);
	width: 100%;
	height: 800px;
	background-size: cover;
	position: relative;
}
.contact_parent .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(3, 21, 65, 0.904);
	z-index: 1;
}
.contact_parent .form-control{
	background: transparent;
  	border: 1px solid #fff;
  	color: #fff;
}
.contact_parent .form-control::placeholder {
	color: #fff;
}
.contact_parent .form-label{
	color: #fff;
}
.contact_parent .secondary-btn{
	color: #000;
	font-size: 18px;
	font-weight: 500;
}

.contact_parent .main_heading_left h1{
	color: #ffff;
	font-weight: 600;
}

.contact_parent .main_heading_left h5{
	color: #BB9A53;
	font-weight: 400;
}
.contact_parent .content_body{
	position: relative;
	z-index: 5;
}
.contact_parent .container {
	max-width: 640px;
	margin-right: 20px;
}

/*.tq_img_box::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	opacity: 0;
	-webkit-transition: all .5s;
	transition: all .5s;
	width: 100%;
	height: 100%;
	top: 0;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #fff;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #fff;
	-webkit-transform: rotate(45deg) scale(.5);
	transform: rotate(45deg) scale(.5);
}
.tq_img_box::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	opacity: 0;
	background-color: rgba(0,0,0,.3);
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}*/
.contact_parent .tq_img_box {
	width: 100%;
	height: 800px;
	overflow: hidden;
	position: relative;
}
.locations_group_btns{
	background: #E2E2E2;
	border-radius: 50px;
	padding: 8px;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 15;
}
.locations_group_btns .btn-light{
	color: #000;
}
.locations_group_btns .active{
	background-color: #041642;
	color: #fff;
}
.locations_group_btns .btn{
	border-radius: 50px !important;
}
.tq_img_box iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact_detail_card{
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border-radius: 26px;
	padding: 30px;
	z-index: 15;
	width: 400px;
}
.contact_detail_card h4{
	font-weight: 600;
}
.contact_us a {
	text-decoration: none;
	color: #fff;
}
.contact_us .call_icon {
	height: 45px;
	width: 45px;
	border-radius: 50px;
	background-color: #0416421e;
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	color: #041642;
}
.call_icon i {
	font-size: 20px;
}
.contact_us .call_btn_detail h5 {
	margin-bottom: 10px;
	color: #000;
	font-weight: 600;
	font-size: 18px;
}



/* Footer  */
.footer{
	background-color: #192031;
	padding-top: 70px;
}
.footer .row{
	align-items: center;
}
.footer p{
	color: #fff;
	margin-top: 20px;
}
.footer_nav ul li {
	padding-right: 30px;
	list-style: none;
}
.footer_nav ul li:last-child {
	padding-right: 0 !important;
}
.footer ul li {
	color: #fff;
	padding-top: 5px;
	padding-bottom: 5px;
}
.footer ul a, .footer_bottom a {
	text-decoration: none;
	color: #fff;
	transition: all 0.5s ease;
}
.sec_social .sec_social_links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: end;
}
.sec_social .sec_social_links a {
	text-decoration: none;
	color: #192031 !important;
	background: #EAEEEE;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	font-size: 18px;
	border-radius: 50px;
	display: flex !important;
	justify-content: center;
	align-items: center;
	padding: 10px;
	display: inline-block;
	flex-shrink: 0;
	transition: all 0.5s;
}
.sec_social .sec_social_links a:hover {
	color: #000 !important;
	background: #FFEB94;
}
.footer hr{
	color: #ffff;
	margin-bottom: 0;
}


/* Inner Pages  */
.inner_bnr_parent{
	position: absolute;
	top: 0;
	width: 100%;
}
.inner_banner {
	width: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	height: 300px;
}
.inner_top_margin{
	margin-top: 264px;
}
.inner_banner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(9,32,92);
	background: linear-gradient(0deg, rgba(9,32,92,0.7791317210477942) 18%, rgba(9,32,92,1) 100%);
	z-index: 1;
  }
.inner_banner .banner-content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 2;
	margin-top: 50px;
}
.breadcrumb{
	margin-bottom: 6px;
}
.breadcrumb-item + .breadcrumb-item{
	color: #000000c7;
}
.breadcrumb-item a{
	color: #000000c7;
	text-decoration: none;
}
.breadcrumb-item.active {
	color: #041642;
}
.leaderpge h1{
	font-weight: 600;
	color: #000;
}
.leaderpge .title{
	margin-bottom: 30px;
}
.leaderpge .col-sm-3{
	margin-top: 20px;
}
.news_page .col-sm-4{
	margin-top: 20px;
}
.blog_main_img{
	width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 22px;
  margin-top: 40px;
}
.blog_main_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog_detail_body .blog_date {
	margin-bottom: 10px;
	color: #09205C;
}
.blog_detail_body h2{
	color: #000;
}
.blogdetail_footer .sec_social_links{
	justify-content: start !important;
}
.blog_detail_body {
	margin-top: 30px;
}
.explore_more_news{
	background: #f9f9f9;
	padding-top: 70px;
	padding-bottom: 70px;
	margin-bottom: 0 !important;
}








.main_header .desktop_nav {
	display: block;
}
.main_header .responsive_nav {
	display: none;
}
.main_header .navbar-toggler {
	color: #fff;
	border-color: #041642;
	background: #041642;
	padding: 9px;
	border-radius: 12px;
}
.main_header .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1.0%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}




/* Responsive */
/* Small Device */
@media only screen and (max-width: 1400px){
	.banner-content h1 {
		font-size: 35px;
		line-height: 50px;
	}
	.banner-content h4 {
		font-size: 19px;
	}
	.banner-content p {
		font-size: 14px;
		line-height: 23px;
	}	  
	.main_header .bg_blur{
		width: max-content;
	}
	.main_banner .bnr_side_img{
		height: 520px;
	}
}
@media only screen and (max-width: 1199px){
	.member_group_img{
		height: 350px;
	}
	.main_header .header_btn{
		font-size: 14px;
	}
	.main_header .bg_blur .nav-link{
		font-size: 14px;
		padding: 8px;
	}
	.banner-content h4 {
		font-size: 18px;
	}
	.banner-content h1{
		font-size: 28px;
		line-height: 40px;
	}
	.banner-content p {
		font-size: 16px;
		line-height: 25px;
	}
	.slide_option .blur_col{
		width: 70% !important;
	}
	.slide_option .nav_col{
		width: 30%;
	}
	.blur_box{
		margin-top: 29px;
	}
	.theme_btn{
		font-size: 14px;
	}
	.section_sub_heading{
		font-size: 25px;
	}
	.section_heading{
		font-size: 40px;
	}
	.services_sec p{
		font-size: 14px;
	}
	.locations_group_btns {
		display: flex;
  		width: 353px;
	}
	.contact_detail_card {
		width: 330px;
	}
}

@media only screen and (max-width: 992px){
	.header_logo{
		width: 100%;
	}
	.header_logo img{
		width: 100%;
	}
	.main_header .container-fluid{
		padding-right: 30px;
  		padding-left: 30px;
	}
	.main_banner .banner-content .col-sm-8{
		width: 100%;
	}
	.main_bnr_parent .container-fluid {
		padding-right: 50px;
		padding-left: 50px;
	}
	.main_header .bg_blur{
		width: max-content;
	}
	.news_page .col-sm-4{
		width: 50%;
	}
}

/* Tablet */
@media only screen and (max-width: 810px){
	.member_group_img{
		height: 300px;
	}
	.main_header .desktop_nav {
		display: none;
	}
	.main_header .responsive_nav {
		display: block;
	}
	.responsive_nav .navbar-expand .navbar-nav{
		flex-direction: column;
		text-align: left;
		width: 100%;
	}
	.responsive_nav .bg_blur{
		width: 100%;
	}
	.main_header .bg_blur .nav-link{
		color: #000;
		font-size: 16px;
	}
	.main_header .header_btn {
		display: none;
	}
	.main_header .col-sm-6 {
		width: 50% !important;
		text-align: right;
	}
	.main_header .col-sm-3 {
		width: 50% !important;
	}
	.header_logo img {
		width: auto;
	}
	.our_solutions .title_head{
		text-align: center;
	}
	.custom_tabs .nav-link{
		padding: 15px;
		font-size: 14px;
	}
	/* .custom_tabs .nav-pills{
		display: flex;
	} */
	.our_solutions .col-sm-6{
		width: 100%;
	}
	.our_solutions .section_img{
		display: none;
	}
	.contact_parent .content_body .col-sm-6{
		width: 100%;
	}
	.contact_parent .container {
		margin-right: auto;
	}
	.contact_parent .contact_form_col .main_heading_left {
		margin-top: 60px;
	}
	.contact_parent .contact_form_col{
		margin-bottom: 60px;
	}
	.contact_parent .tq_img_box{
		height: 600px;
	}
	.contact_parent{
		height: auto;
	}
	.about_us h2{
		font-size: 35px;
	}
	.tech_whitebox .content_body h6{
		font-size: 22px;
	}
	.footer .col-sm-6{
		width: 100%;
		text-align: center;
	}
	.footer .footer_nav .justify-content-end{
		justify-content: center !important;
	}
	.sec_social .sec_social_links{
		justify-content: center;
	}
	.footer_bottom .col-sm-3, .footer_bottom .col-sm-9{
		width: 100%;
		text-align: center;
	}
	.footer_bottom .th_part_a {
		justify-content: center !important;
	}
	.th_part_a p{
		margin-top: 0 !important;
	}
	.leaderpge .team_member .member_img{
		height: 166px;
	}
	.team_member h6 {
		font-size: 18px;
	}
	.main_banner .bnr_side_img{
		height: 502px;
	}
	.custom_tabs{
		text-align: center;
	}
	.icon_content_box{
		text-align: left;
	}
	.sticky_menu{
		position: unset;
	}
	.banner_top_margin{
		margin-top: 800px;
	}
	.our_solutions .col-sm-7{
		width: 100%;
	}
}

/* Mobile */
@media only screen and (max-width: 481px){
	p{
		font-size: 12px !important;
		line-height: 18px !important;
	}
	.banner-content h4 {
		font-size: 14px;
	}
	.banner-content h1 {
		font-size: 22px;
		line-height: 27px;
	}
	.main_banner{
		height: 1000px;
	}
	.main_header .container-fluid {
		padding-right: 20px;
		padding-left: 20px;
	}
	.main_bnr_parent .container-fluid{
		padding-right: 20px;
		padding-left: 20px;
	}
	.main_banner::after {
		display: none;
	}
	.main_banner .btn {
		font-size: 14px;
	}
	.main_banner .banner-content .content_row {
		margin-top: auto;
	}
	.slide_option .blur_col{
		width: 100% !important;
	}
	.blur_box ul li{
		font-size: 14px;
	}
	.main_banner .banner_navigation{
		display: none;
	}
	.main_banner {
		height: 777px;
	}
	.blur_box h5{
		font-size: 18px;
	}
	.main_banner .banner-content .content_row {
		margin-top: 0;
	}
	.banner_top_margin{
		margin-top: 715px;
	}
	.custom_tabs .nav-pills{
		border-radius: 10px;
	}
	.custom_tabs .nav-pills .nav-item{
		width: 100%;
	}
	.custom_tabs .nav-pills .nav-item .nav-link {
		width: 100%;
		border-radius: 10px;
	}
	.our_solutions .title_head {
		margin-bottom: 20px;
	}
	.icon_content_box h6{
		font-size: 18px;
		line-height: 26px;
	}
	.tech_whitebox .icon {
		width: 80px;
		height: 80px;
	}
	.banner_navigation{
		display: none;
	}
	.title_head h1{
		margin-bottom: 30px;
	}
	.about_us .section_img{
		height: 185px;
		margin-bottom: 30px;
	}
	.tech_validation{
		padding-top: 51px;
  		padding-bottom: 59px;
	}
	.about_us h2 {
		font-size: 27px;
	}
	.team_member .member_img{
		height: 184px;
	}
	.team_member h6{
		font-size: 18px;
	}
	.leadership_section {
		margin-top: 40px;
	}
	.pertner_licn {
		margin-top: 25px;
	}
	.pertner_licn .section_img{
		height: 232px;
	}
	.partners{
		margin-top: 30px;
	}
	.news{
		margin-top: 25px !important;
		margin-bottom: 46px !important;
	}
	.news_swiper {
		margin-top: 20px !important;
	}
	.footer .footer_nav .justify-content-end{
		flex-direction: column;
	}
	.footer_nav ul li{
		padding-right: 0;
	}
	.leaderpge .col-sm-3{
		width: 50%;
	}
	.inner_banner .banner-content h1 {
		font-size: 32px;
	}
	.news_page .col-sm-4{
		width: 100%;
	}
	.blog_main_img{
		height: 236px;
	}
	.bnr_side_img {
		margin-top: 20px;
	}
	.bnr_side_img  .blur_box{
		bottom: -134px;
  		left: 0;
	}
	.main_banner .bnr_side_img {
		height: 252px;
	}

}

@media only screen and (max-width: 390px){
	
}

/* Tablet Landscape Mode */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1280px)
and (orientation: landscape){
	.member_group_img{
		height: 350px;
	}
	.main_header .header_btn{
		font-size: 14px;
	}
	.main_header .bg_blur .nav-link{
		font-size: 14px;
		padding: 8px;
	}
	.banner-content h4 {
		font-size: 18px;
	}
	.banner-content h1{
		font-size: 28px;
		line-height: 40px;
	}
	.banner-content p {
		font-size: 16px;
		line-height: 25px;
	}
	.slide_option .blur_col{
		width: 70% !important;
	}
	.slide_option .nav_col{
		width: 30%;
	}
	.blur_box{
		margin-top: 29px;
	}
	.theme_btn{
		font-size: 14px;
	}
	.section_sub_heading{
		font-size: 25px;
	}
	.section_heading{
		font-size: 40px;
	}
	.services_sec p{
		font-size: 14px;
	}
	.locations_group_btns {
		display: flex;
  		width: 353px;
	}
	.contact_detail_card {
		width: 330px;
	}
}

/* Mobile Landscape Mode */
@media only screen 
and (min-device-width: 360px) 
and (max-device-width: 926px) 
and (orientation: landscape) {
	.member_group_img{
		height: 300px;
	}
	.main_header .desktop_nav {
		display: none;
	}
	.main_header .responsive_nav {
		display: block;
	}
	.responsive_nav .navbar-expand .navbar-nav{
		flex-direction: column;
		text-align: left;
		width: 100%;
	}
	.responsive_nav .bg_blur{
		width: 100%;
	}
	.main_header .bg_blur .nav-link{
		color: #000;
		font-size: 16px;
	}
	.main_header .header_btn {
		display: none;
	}
	.main_header .col-sm-6 {
		width: 50% !important;
		text-align: right;
	}
	.main_header .col-sm-3 {
		width: 50% !important;
	}
	.header_logo img {
		width: auto;
	}
	.our_solutions .title_head{
		text-align: center;
	}
	.custom_tabs .nav-link{
		padding: 15px;
		font-size: 14px;
	}
	/* .custom_tabs .nav-pills{
		display: flex;
	} */
	.our_solutions .col-sm-6{
		width: 100%;
	}
	.our_solutions .section_img{
		display: none;
	}
	.contact_parent .content_body .col-sm-6{
		width: 100%;
	}
	.contact_parent .container {
		margin-right: auto;
	}
	.contact_parent .contact_form_col .main_heading_left {
		margin-top: 60px;
	}
	.contact_parent .contact_form_col{
		margin-bottom: 60px;
	}
	.contact_parent .tq_img_box{
		height: 600px;
	}
	.contact_parent{
		height: auto;
	}
	.about_us h2{
		font-size: 35px;
	}
	.tech_whitebox .content_body h6{
		font-size: 22px;
	}
	.footer .col-sm-6{
		width: 100%;
		text-align: center;
	}
	.footer .footer_nav .justify-content-end{
		justify-content: center !important;
	}
	.sec_social .sec_social_links{
		justify-content: center;
	}
	.footer_bottom .col-sm-3, .footer_bottom .col-sm-9{
		width: 100%;
		text-align: center;
	}
	.footer_bottom .th_part_a {
		justify-content: center !important;
	}
	.th_part_a p{
		margin-top: 0 !important;
	}
	.leaderpge .team_member .member_img{
		height: 166px;
	}
	.team_member h6 {
		font-size: 18px;
	}
	.main_banner .bnr_side_img{
		height: 502px;
	}
	.custom_tabs{
		text-align: center;
	}
	.icon_content_box{
		text-align: left;
	}
	.sticky_menu{
		position: unset;
	}
	.banner_top_margin{
		margin-top: 800px;
	}
	.our_solutions .col-sm-7{
		width: 100%;
	}
}