


/* Table of Content
==================================================
	#Homepage Styles
	#Page Styles
	#Media Queries
	#Font-Face */
:root{
	--dk-blue: #002372;
	--green: #3fce01;
	--blue: #2793dd;
	--white-blue: #e1f1f8;
	--greenish-blue: #33d0ca;
	--header-height: 98px;
}
*{
	padding:0;
	margin:0;
	transition: all 0.3s;
}
html, body{
	height: 100%;
	font-family: "Mulish", sans-serif;
	scroll-behavior: smooth;
} 
body #main{
	width:100%;
	padding:0;
	margin:0 auto;
	padding-top: var(--header-height);
}

table{
	width: 100%;
	border-spacing: 2px;
	border-collapse: unset;
}
table, th, td {
    /*border: 1px solid transparent;*/
    /*border-collapse: collapse;    */
}
th, td {
    padding: 10px;
    font-size: 16px;
    text-align: center;
}
th {
    background-color: var(--blue);
    color: #fff;
}
td{
	color: #474747;
	font-weight: 600;
}
tr:nth-child(odd) td{
	background: var(--white-blue);
}
tr:nth-child(even) td{
	background: #e8e8e8;
}

a{
	cursor: pointer;
	display: inline-block;
}

span{
	display: inline-block;
}

p{
	font-size: 15px;
	line-height: 1.4em;
	color: #000;
	font-weight: 600;
	padding: 0 0 15px 0;
}

/* #Grid system
================================================== */
.container{
	width:1170px;
	margin:0 auto;
	}
.container:before, .container:after, .row:before, .row:after{
	content:"";
	display:table;
	}
.container:after, .row:after{clear:both;}
.row{
	margin-left:-10px;
	margin-right:-10px;
	}
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{
	position:relative;
	min-height:1px;
	padding-left:10px;
	padding-right:10px;
	float:left;
	}

.col-sm-12{width:100%;}
.col-sm-11{width:91.66666667%;}
.col-sm-10{width:83.33333333%;}
.col-sm-9{width:75%;}
.col-sm-8{width:66.66666667%;}
.col-sm-7{width:58.33333333%;}
.col-sm-6{width:50%;}
.col-sm-5{width:41.66666667%;}
.col-sm-4{width:33.33333333%;}
.col-sm-3{width:25%;}
.col-sm-2{width:16.66666667%;}
.col-sm-1{width:8.33333333%;}
.flt-right { float: right; }
.flt-left { float: left; }

.clr{
	clear:both;
	}

/* =Header
-------------------------------------------------------------- */
header {
	width: 100%;
	position: fixed;
	top:0px;
	left: 0;
	z-index: 999;
	padding: 10px 0;
	background:#fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	-ms-transition: height 0.3s;
	-o-transition: height 0.3s;
	transition: height 0.3s;
}
header .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
header .logo {
	width: 100px;
	float: left;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	padding: 0;
}
header .logo img{
	width: 100px;
}
header nav {
	display: inline-block;
	float: right;
	padding: 0% 0% 0% 0%;
	background-color: transparent;
	margin-top: 0;
	width: unset;
	margin: 0 0 0 auto;
}
header.smaller {
	top:0;
	background-color: transparent;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	background:#fff;
	padding: 0%;
}
header.smaller .logo {
	width: 80px;
}
header.smaller nav {
	display: inline-block;
	float: left;
	padding: 0%;
	margin-top: 0%;
}
header .enquire_now{
	margin: 0 0 0 15px;
}
header .enquire_now button.green_filled_btn{
	position: relative;
}
header .enquire_now button.green_filled_btn::before {
    position: absolute;
    content: '';
    left: -20%;
    top: 0;
    width: 20%;
    height: 100%;
    background: #ffffff94;
    transform: skewX(324deg);
    filter: blur(3px);
    mix-blend-mode: overlay;
    animation: shining_light 1s linear forwards infinite;
}
@keyframes shining_light{
	0%{
		left: -20%;
	}
	100%{
		left: 120%;
	}
}
.error{
	color: red;
	font-size: 13px;
}

.heading{
	font-size: 30px;
	font-weight: 800;
	color: var(--dk-blue);
	padding: 0 0 20px;
	margin: 0 0 30px;
	text-align: center;
	text-transform: uppercase;
	position: relative;
}
.heading.white{
	color: #fff;
}
.heading::before{
	position: absolute;
	content: '';
	--size: 100px;
	left: calc(50% - (var(--size) / 2));
	bottom: 0;
	width: var(--size);
	height: 3px;
	background: linear-gradient(90deg, var(--greenish-blue) 50%, var(--blue) 50%);
}

/*hero*/
.hero .main_banner .item_box{
	position: relative;
}
.hero .main_banner .item_box .img_box img{
	width: 100%;
}
.hero .main_banner .item_box .overlay_text{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;

	display: flex;
}
.hero .main_banner .item_box .overlay_text .left_text{
	margin: auto 0;
	padding-left: calc(50% - 585px);
	width: 40%;
}
.hero .main_banner .item_box .overlay_text .left_text .banner_heading{
	font-size: 50px;
	line-height: 1.1em;
    font-weight: 700;
    color: var(--dk-blue);
    /*max-width: 38%;*/
    position: relative;
	padding: 0 0 15px 0;
	margin: 0 0 40px;
}
.hero .main_banner .item_box .overlay_text .left_text .banner_heading::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5px;
	background-color: var(--greenish-blue);
}
.hero .main_banner .item_box .overlay_text .banner_btn{
	font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--dk-blue);
    /*box-shadow: inset 0 0 5px 30px var(--dk-blue);*/
    color: var(--greenish-blue);
    padding: 15px 40px;
    border-radius: 50px;
}
.hero .main_banner .item_box .overlay_text .banner_btn:hover{
    background: var(--greenish-blue);
	/*box-shadow: inset 0 0 0px 1px var(--dk-blue);*/
    color: var(--dk-blue);
    transform: translateY(-5px);
}
.hero .main_banner .item_box .overlay_text .right_text{
	margin: auto 0 30px auto;
	background-color: var(--blue);
	color: #fff;
	padding: 10px 20px;
	font-size: 18px;
	font-weight: 600;
}

/*numeric_info_wrapper*/
.numeric_info_wrapper{
	background: linear-gradient(180deg, #03175b, #053181);
}
.numeric_info_wrapper .inner_container{
	display: flex;
	flex-wrap: wrap;
	/*align-items: flex-start;*/
	/*justify-content: space-between;*/
	/*justify-content: space-evenly;*/
	justify-content: space-around;
	padding: 60px 0;
}
.numeric_info_wrapper .inner_container .info_box{
	text-align: center;
	padding: 10px 0;
}
.numeric_info_wrapper .inner_container .info_box .icon_box{
	min-height: 75px;
	align-content: end;
}
.numeric_info_wrapper .inner_container .info_box .num_box{
	font-size: 45px;
    font-weight: 500;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0 0 0;
}
.numeric_info_wrapper .inner_container .info_box .text{
	font-size: 18px;
    font-weight: 500;
    color: #fff;
}
.numeric_info_wrapper .inner_container .separator_line{
	width: 2px;
	background: linear-gradient(180deg, transparent, #fff, transparent);
}

/*products_wrapper*/
.products_wrapper{
	background: url(../images/bg/products.png) no-repeat;
    background-size: 70%;
    background-position: top right;
}
.products_wrapper .inner_container{
	padding: 60px 0;
}
.products_wrapper .inner_container .category_block:not(:first-child){
	padding: 60px 0 0 0;
}
.products_wrapper .inner_container .products_boxes{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.products_wrapper .inner_container .products_boxes .product_box{
	padding: 1.5%;
}
.products_wrapper .inner_container .products_boxes .product_box a{
	display: flex;
	flex-direction: column;
	/*align-items: center;*/
}
.products_wrapper .inner_container .products_boxes .product_box .img_box{
	margin: 0 auto;
	overflow: hidden;
}
.products_wrapper .inner_container .products_boxes .product_box .img_box img{
	min-height: 180px;
	max-height: 180px;
	transition: all 0.5s;
}
.products_wrapper .inner_container .products_boxes .product_box a:hover .img_box img{
	transform: scale(1.1);
}
.products_wrapper .inner_container .products_boxes .product_box .text{
	background: var(--blue);
	color: #fff;
	font-size: 18px;
	text-align: center;
	padding: 12px;
}
/*services*/
.services{
	background: linear-gradient(180deg, #03175b, #053181);
	padding: 60px 0 80px;
	position: relative;
}
.services::before{
	position: absolute;
	content: '';
	width: 50%;
	height: 75%;
	left: 0;
	bottom: 0;
	background: url('../images/bg/services.png') no-repeat;
	background-position: top right;
	background-size: cover;
}
.services .container{
	position: relative;
	z-index: 1;
}
.services .services_boxes{
	display: flex;
	flex-wrap: wrap;
	/*align-items: center;*/
	/*justify-content: space-between;*/
	justify-content: space-around;
	padding: 20px 0 0 0;
}
.services .services_boxes .service_box{
	width: calc(25% - 20px);
}
.services .services_boxes .service_box .img_box{
	overflow: hidden;
}
.services .services_boxes .service_box .img_box img{
	transition: all 0.5s;
}
.services .services_boxes .service_box:hover .img_box img{
	transform: scale(1.1);
}
.services .services_boxes .service_box .icon_text_wrap{
	display: flex;
	width: 80%;
	margin: -30px auto auto auto;
	transition: all 0.5s;
	position: relative;
	z-index: 1;
}
.services .services_boxes .service_box:hover .icon_text_wrap{
	width: 100%;
	margin: -60px auto auto auto;
}
.services .services_boxes .service_box .icon_text_wrap .icon{
	width: 60px;
	height: 60px;
	background: var(--greenish-blue);
	padding: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.services .services_boxes .service_box .icon_text_wrap .text_box{
	background: var(--blue);
	width: calc(100% - 60px);
	display: flex;
	align-items: center;
}
.services .services_boxes .service_box .icon_text_wrap .text_box .text{
	font-size: 16px;
	line-height: 1.1em;
	font-weight: 600;
	color: #fff;
	padding: 0 15px;
}
.services .services_boxes .service_box .icon_text_wrap .text_box .text .small{
	font-size: 0.7em;
}

/*industries_we_serve*/
.industries_we_serve{
	padding: 60px 0;
}
.industries_we_serve .industries_boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.industries_we_serve .industries_boxes .industry_box{
	width: calc(25% - 15px);
}
.industries_we_serve .industries_boxes .industry_box .img_box{
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}
.industries_we_serve .industries_boxes .industry_box .img_box::before{
	border-radius: 50%;
	--size: 10px;
	position: absolute;
	content: '';
	left: var(--size);
	top: var(--size);
	width: calc(100% - (var(--size) * 2));
	height: calc(100% - (var(--size) * 2));
	border: 1px dashed #fff;
}
.industries_we_serve .industries_boxes .industry_box .text{
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	padding: 15px 0 0;
	color: #000;
	text-transform: uppercase;
}

/*why_anish*/
.why_anish{
	background: var(--white-blue);
}
.why_anish .inner_container{
	display: flex;
	flex-wrap: wrap;
}
.why_anish .inner_container .left_pane{
	width: 60%;
	padding: 50px 0 50px calc(50vw - 585px);
	position: relative;
    z-index: 4;
}
.why_anish .inner_container .left_pane .text_wrapper{
	width: 80%;
	margin: auto;
}
.why_anish .inner_container .left_pane .text_wrapper .text_info{
	text-align: center;
	padding: 0 0 30px 0;
}
.why_anish .inner_container .left_pane .text_wrapper .text_info p{
	color: #000;
}
.why_anish .inner_container .left_pane .text_wrapper .text_info a{
	color: #000;
	font-size: 14px;
	text-decoration: underline;
}
.why_anish .inner_container .left_pane .text_wrapper .boxes .box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 5px 15px;
	margin: 0 0 35px;
	border: 1px solid var(--dk-blue);
	background: #fff;
	border-radius: 7px;
	position: relative;
}
.why_anish .inner_container .left_pane .text_wrapper .boxes .box::before{
	position: absolute;
    content: '';
    bottom: -32px;
    left: 0;
    width: 100%;
    height: 30px;
    background: #e0f1f7;
    box-shadow: 0px -14px 20px -11px #000;
    border-radius: 75% 75% 0 0;
    z-index: -2;
    filter: blur(1px);
}
.why_anish .inner_container .left_pane .text_wrapper .boxes .box .icon_box{
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #efefef;
	border-radius: 50%;
	overflow: hidden;
	padding: 15px;
}
.why_anish .inner_container .left_pane .text_wrapper .boxes .box .text_box{
	width: calc(100% - 100px);
	padding: 0 0 0 15px;
}
.why_anish .inner_container .left_pane .text_wrapper .boxes .box .text_box .title{
	font-size: 18px;
	font-weight: 800;
	color: var(--dk-blue);
	text-transform: uppercase;
}
.why_anish .inner_container .left_pane .text_wrapper .boxes .box .text_box p{
	color: #000;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 0;
}
.why_anish .inner_container .right_pane{
	width: 40%;
}
.why_anish .inner_container .right_pane .img_box{
	width: 100%;
	height: 100%;
}
.why_anish .inner_container .right_pane .img_box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/*delighted_clients*/
.delighted_clients{
	background: linear-gradient(180deg, var(--dk-blue) 75%, #fff 10%);
	padding: 50px 0;
	position: relative;
}
.delighted_clients .delighted_clients_slider{
	background: #fff;
	padding: 15px 40px;
}
.delighted_clients .delighted_clients_slider .item_box{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 30px;
	position: relative;
}
.delighted_clients .delighted_clients_slider .item_box::before{
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(0deg, transparent, #b0b1b2, transparent);
}
.delighted_clients .delighted_clients_slider .item_box .client_box{
	padding: 10px 0;
}
.delighted_clients .delighted_clients_slider .item_box .client_box img{
	max-width: 150px;
	max-height: 100px;
}
.delighted_clients .delighted_clients_slider.owl-carousel .owl-stage{
	display: flex;
	align-items: unset;
}
.delighted_clients .delighted_clients_slider.owl-carousel .owl-stage .owl-item .item_box{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

/*owl carousel arrows*/

.owl-carousel.owl-theme .owl-nav{
	margin: 0;
}
.owl-carousel.owl-theme .owl-nav button{
	position: absolute;
	top: calc(50% - 20px);
	margin: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	/*color: var(--blue);*/
}
.owl-carousel.owl-theme .owl-nav [class*=owl-]:hover{
	color: var(--blue);
	background: unset;
}
.owl-carousel.owl-theme .owl-nav button.owl-prev{
	left: 0;
}
.owl-carousel.owl-theme .owl-nav button.owl-next{
	right: 0;
}
.owl-carousel.owl-theme .owl-nav button span{
	font-size: 50px;
    line-height: 0.4em;
    padding: 0 0 0.23em 0;
    font-family: 'Font Awesome 7 Free';
    /*color: #ffff;
    border: 1px solid #00eaff;
    background: #000;*/
}

.owl-carousel.owl-theme .owl-dots .owl-dot span{
	background: unset;
    box-shadow: inset 0 0 0 1px var(--greenish-blue);
    outline: 1px solid var(--greenish-blue);
    outline-offset: -1px;
    width: 12px;
    height: 12px;
    transition: all 0.2s;
}
.owl-carousel.owl-theme .owl-dots .owl-dot.active span{
    box-shadow: inset 0 0 0 6px var(--greenish-blue);
    outline-offset: 3px;
}

/*testimonials*/
.testimonials{
	background: var(--white-blue);
	padding: 50px 0;
}
.testimonials .testimonials_slider .owl-stage{
	padding: 30px 0;
}
.testimonials .testimonials_slider .item_box{
	display: flex;
	flex-direction: column;
	background: #fff;
	padding: 0px 30px 25px 40px;
	border-radius: 7px;
}
.testimonials .testimonials_slider .item_box .quotes_icon{
	background: var(--greenish-blue);
	width: 50px;
	height: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    font-size: 35px;
    line-height: 1em;
    color: #fff;
    border-radius: 50%;
    margin: -25px 0 25px 0;
    position: relative;
}
.testimonials .testimonials_slider .item_box .testimonial_text{
	color: #000;
}
.testimonials .testimonials_slider .item_box .lower_box{
	color: #000;
	font-size: 17px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 20px 0 0 0;
	margin: auto 0 0 0;
}
.testimonials .testimonials_slider .item_box .lower_box .right_info .stars i{
	color: #ffc83d;
}

/*global_presence*/
.global_presence{
	position: relative;
}
.global_presence .inner_container{
	padding: 50px 0 0;
}
.global_presence .inner_container .map_wrapper{
	width: 1000px;
	max-width: 100%;
	margin: auto;
	position: relative;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker{
	display: inline-flex;
	align-items: center;
	position: absolute;
	user-select: none;
	transition: all 0.3s;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker:hover{
	transform: translateY(-5px);
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker.marker_1{
    left: 17%;
    bottom: 48%;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker.marker_2{
    left: 31%;
    bottom: 34%;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker.marker_3{
	left: 50%;
    bottom: 45%;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker.marker_4{
	left: 62%;
    bottom: 71%;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker.marker_5{
	left: 63%;
    bottom: 52%;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker.marker_6{
	left: 71%;
    bottom: 13%;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker .icon{
	width: 25px;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker .txt{
	font-size: 14px;
	font-weight: 700;
	color: var(--dk-blue);
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker .hidden_txt{
	position: absolute;
	bottom: calc(100% + 10px);
	right: calc(100% - 12px);
	background: var(--greenish-blue);
	padding: 5px 10px;
	display: none;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker .hidden_txt::before{
	position: absolute;
	content: '';
	right: 0;
	bottom: -10px;
	border-top: 10px solid var(--greenish-blue);
	border-left: 10px solid transparent;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker:hover .hidden_txt{
	display: block;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker .hidden_txt ul{
	column-count: 2;
}
.global_presence .inner_container .map_wrapper .markers_wrapper .marker .hidden_txt ul li{
	font-weight: 700;
	color: var(--dk-blue);
	padding: 5px;
	white-space: nowrap;
}

/*enquiry_form_wrapper*/
.enquiry_form_wrapper{
	padding: 50px 0 50px;
}
.enquiry_form_wrapper .inner_container{
	box-shadow: inset 0 0 3px 40px #e8e8e7;
	border-radius: 5px;
	position: relative;
}
.enquiry_form_wrapper .inner_container::before{
	position: absolute;
    content: '';
    left: 0;
    top: -14px;
    width: 100%;
    height: 30px;
    background: linear-gradient(0deg, #e8e8e7, #fff);
    z-index: 1;
}
.enquiry_form_wrapper .inner_container::after{
	position: absolute;
    content: '';
    left: 0;
    bottom: -14px;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, #e8e8e7, #fff);
    z-index: 1;
}
.enquiry_form_wrapper .inner_container .inner_box{
	display: flex;
    flex-wrap: wrap;
    /* width: 1000px; */
    /* max-width: 90%; */
    margin: auto 40px;
    background: #fff;
    padding: 70px 40px;
    position: relative;
    z-index: 2;
}
.enquiry_form_wrapper .inner_container .inner_box .left_pane{
	width: 35%;
}
.enquiry_form_wrapper .inner_container .inner_box .left_pane .text_box .heading{
	text-align: left;
	margin: 0;
}
.enquiry_form_wrapper .inner_container .inner_box .left_pane .text_box .heading::before{
	display: none;
}
.enquiry_form_wrapper .inner_container .inner_box .right_pane{
	width: 65%;
}

form .input_box{
	display: flex;
	flex-direction: column;
	padding: 0 0 15px;
}
form .input_box label{
	font-size: 14px;
    font-weight: 600;
    padding: 0 0 5px 0;
    color: #000;
}
form .input_box input{
	color: #000;
	padding: 5px 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #bdbdbd;
}
form .input_box input::placeholder{
	color: #9f9f9f;
}
form .input_box textarea{
	color: #000;
	padding: 5px 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #bdbdbd;
    height: 81px;
}
form .input_box textarea::placeholder{
	color: #9f9f9f;
}

.btn{
	font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    background: var(--dk-blue);
    text-transform: uppercase;
    padding: 8px 25px;
    border-radius: 7px;
    border: none;
    outline: none;
}
.green_filled_btn{
	font-size: 16px;
    font-weight: 700;
    color: #272727;
    letter-spacing: 1px;
    /*background: var(--green);*/
    /*text-transform: uppercase;*/
    padding: 8px 25px;
    /*border-radius: 50px;*/
    border: none;
    outline: none;

    box-shadow: inset 0 0 5px 25px var(--green), inset 0 0 0 25px var(--dk-blue);
}
.green_filled_btn:hover{
	color: var(--green);
    box-shadow: inset 0 0 0px 0px var(--green), inset 0 0 0 25px var(--dk-blue);
}
.dk_blue_filled_btn{
	font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    background: var(--dk-blue);
    /*text-transform: uppercase;*/
    padding: 8px 25px;
    /*border-radius: 50px;*/
    border: none;
    outline: none;
}
.lt_blue_filled_btn{
	font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    background: #26c5ea;
    /*text-transform: uppercase;*/
    padding: 8px 25px;
    border-radius: 50px;
    border: none;
    outline: none;
}
.right{
	text-align: right;
}

/*footer*/
footer{
	color: #fff;
	/*background: var(--dk-blue);*/
	background: linear-gradient(90deg, #03185d, #053486, #03185d);
	padding: 50px 0;
}
footer .upper_sec .boxes_wrapper{
	display: flex;
	justify-content: space-between;
}
footer .upper_sec .boxes_wrapper .box{
	max-width: 22%;
}
footer .upper_sec .boxes_wrapper .box .title{
	font-size: 16px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	min-height: 36px;
}
footer .upper_sec .boxes_wrapper .box .title:nth-child(3){
	margin-top: 15px;
}
footer .upper_sec .boxes_wrapper .box ul.small_links:nth-child(4){
	padding: 0 0 15px 0;
}
footer .upper_sec .boxes_wrapper .box ul.small_links li{
	padding: 0 0 5px;
}
footer .upper_sec .boxes_wrapper .box ul.small_links li a{
	font-size: 14px;
	color: #fff;
}
footer .upper_sec .boxes_wrapper .box ul.main_links li{
	padding: 0;
}
footer .upper_sec .boxes_wrapper .box ul.main_links li a{
	font-size: 16px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	min-height: 36px;
}
footer .upper_sec .boxes_wrapper .box .address_box .sub_head{
	font-weight: 700;
}
footer .upper_sec .boxes_wrapper .box .address_box p{
	font-size: 14px;
	color: #fff;
}
footer .lower_sec{
	border-top: 1px solid #fff;
}
footer .lower_sec p{
	font-size: 14px;
	color: #fff;
	padding: 10px 0 0 0;
}

/*common_hero*/
.common_hero .img_box img{
	width: 100%;
}

.page_heading{
	padding: 50px 0 30px;
}

/*contact_us*/
.contact_us .four_boxes_wrapper{
	background: linear-gradient(180deg, #03175b, #053080);
	padding: 100px 0;
}
.contact_us .four_boxes_wrapper .boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.contact_us .four_boxes_wrapper .boxes .box{
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	width: 20%;
}
.contact_us .four_boxes_wrapper .boxes .box .title{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	padding: 10px 0 10px;
}
.contact_us .four_boxes_wrapper .boxes .box p{
	/*font-size: 20px;*/
	/*font-weight: 600;*/
	color: #fff;
}
.contact_us .four_boxes_wrapper .boxes .box .request_callback{
	margin: auto 0 0 0;
	background: #26c5ea;
	text-transform: none;
}
.contact_us .four_boxes_wrapper .boxes .box .lt_blue_filled_btn:hover{
	background: var(--green);
}
.contact_us .four_boxes_wrapper .boxes .box .green_filled_btn{
	border-radius: 100px;
}
.contact_us .four_boxes_wrapper .boxes .box .green_filled_btn:hover{
	color: #fff;
	box-shadow: inset 0 0 0px 0px var(--green), inset 0 0 0 25px var(--blue);
}
.contact_us .four_boxes_wrapper .boxes .separator_line{
	width: 2px;
	background: linear-gradient(180deg, transparent, #fff, transparent);
}
.contact_us .info_map_wrapper{
	padding: 50px 0;
}
.contact_us .info_map_wrapper .inner_container{
	display: flex;
	flex-wrap: wrap;
	/*align-items: center;*/
}
.contact_us .info_map_wrapper .left_info .title{
	font-size: 25px;
    font-weight: 800;
    color: var(--dk-blue);
    padding: 0 0 20px;
    text-transform: uppercase;
    position: relative;
}
.contact_us .info_map_wrapper .ctc_boxes_wrapper .ctc_box{
	display: flex;
	color: var(--dk-blue);
	padding: 0 0 15px;
}
.contact_us .info_map_wrapper .ctc_boxes_wrapper .ctc_box .icon{
	width: 32px;
}
.contact_us .info_map_wrapper .ctc_boxes_wrapper .ctc_box .text{
	width: calc(100% - 32px);
}
.contact_us .info_map_wrapper .ctc_boxes_wrapper .ctc_box .text .add_title{
	font-weight: 700;
	padding: 0 0 5px;
}
.contact_us .info_map_wrapper .ctc_boxes_wrapper .ctc_box .text p{
	color: var(--dk-blue);
	padding: 0;
}
.contact_us .info_map_wrapper .ctc_boxes_wrapper .ctc_box .text b p{
	padding: 0;	
}
.contact_us .info_map_wrapper .ctc_boxes_wrapper .ctc_box .text p:last-child{
	padding: 0;	
}
.contact_us .info_map_wrapper .map_wrapper{
	height: 100%;
	min-height: 400px;
}
.contact_us .info_map_wrapper .map_wrapper iframe{
	width: 100%;
	height: 100%;
}
/*about_us*/
.about_us .three_boxes_wrapper{
	background: linear-gradient(180deg, #03175b, #053080);
	padding: 70px 0;
}
.about_us .three_boxes_wrapper .boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/*width: 600px;*/
	/*max-width: 90%;*/
    margin: auto;
}
.about_us .three_boxes_wrapper .boxes .box{
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
    padding: 10px 0;
}
.about_us .three_boxes_wrapper .boxes .box:hover .icon img{
	filter: drop-shadow(0px 0px 10px var(--greenish-blue));
}
.about_us .three_boxes_wrapper .boxes .box .title{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	padding: 10px 0 10px;
	position: relative;
}
.about_us .three_boxes_wrapper .boxes .box .title::before{
	position: absolute;
    content: '';
    left: 50%;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
}
.about_us .three_boxes_wrapper .boxes .box:hover .title::before{
    left: 0%;
    width: 100%;
}
.about_us .three_boxes_wrapper .boxes .separator_line{
	width: 2px;
	background: linear-gradient(180deg, transparent, #fff, transparent);
}
.about_us .about_anish{
	padding: 50px 0;
	background: url(../images/bg/about-anish.png) no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}
.about_us .about_anish .heading{
	padding: 0;
}
.about_us .about_anish .heading::before{
	display: none;
}
.about_us .about_anish .text p{
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	color: #000;
	padding: 0 0 20px;
}
.about_us .numeric_info_wrapper{
	background: var(--white-blue);
}
.about_us .numeric_info_wrapper .inner_container{
	justify-content: space-evenly;
}
.about_us .numeric_info_wrapper .inner_container .info_box .icon_box{
	/*filter: brightness(0) saturate(100%) invert(9%) sepia(59%) saturate(5040%) hue-rotate(212deg) brightness(98%) contrast(113%);*/
	filter: brightness(0) saturate(100%) invert(8%) sepia(64%) saturate(5576%) hue-rotate(221deg) brightness(99%) contrast(104%);
}
.about_us .numeric_info_wrapper .inner_container .info_box .num_box{
	color: var(--dk-blue);
}
.about_us .numeric_info_wrapper .inner_container .info_box .text{
	color: var(--dk-blue);
}
.about_us .numeric_info_wrapper .inner_container .separator_line{
	background: linear-gradient(180deg, transparent, var(--dk-blue), transparent);
}

/*team_of*/
.team_of{
	padding: 50px 0 70px;
	background: linear-gradient(0deg, var(--dk-blue) 170px, #fff 140px);
	position: relative;
}
.team_of .inner_container{
	width: 1000px;
	margin: auto;
	text-align: center;
}
.team_of .inner_container .text{
	padding: 0 0 25px;
}
.team_of .inner_container .text p{
	font-size: 16px;
}

/*management_team*/
.management_team{
	padding: 70px 0;
	position: relative;
}
.management_team .boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.management_team .boxes .box{
	width: calc(33.33% - 15px);
}
.management_team .boxes .box .img_box{
	border: 1px solid #000;
}
.management_team .boxes .box .text_box{
	background: var(--blue);
	width: 80%;
	margin: -24px auto 24px auto;
	border-left: 15px solid var(--greenish-blue);
	text-align: center;
	color: #ffffff;
	padding: 5px 0 7px;
	text-transform: uppercase;
	font-size: 14px;
	position: relative;
}
.management_team .boxes .box .text_box .name{
	font-weight: 700;
}
.global_presence .inner_container .heading_wrapper{
	background: var(--white-blue);
	padding: 50px 0;
}
.global_presence .inner_container .heading_wrapper .sub_head{
	text-align: center;
    font-size: 35px;
    color: #000;
    font-weight: 600;
}

/*why_anish_page*/
.why_anish_page .section_one{
	background: linear-gradient(180deg, #03175b, #053080);
	padding: 50px 0;
}
.why_anish_page .section_one .heading{
	padding: 0;
	width: 920px;
	max-width: 100%;
	margin: auto auto 30px;
}
.why_anish_page .section_one .heading::before{
	display: none;
}
.why_anish_page .section_one .sub_head{
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	padding: 0 0 50px;
	width: 700px;
	max-width: 100%;
	margin: auto;
}
.why_anish_page .section_one .four_boxes{
	display: flex;
	flex-wrap: wrap;
	/*align-items: flex-start;*/
	/*justify-content: space-between;*/
	justify-content: space-evenly;
	/*justify-content: space-around;*/
	/*padding: 60px 0;*/
}
.why_anish_page .section_one .four_boxes .info_box{
	text-align: center;
	padding: 10px 0;
}
.why_anish_page .section_one .four_boxes .info_box .icon_box{
	min-height: 75px;
	align-content: end;
}
.why_anish_page .section_one .four_boxes .info_box:hover .icon_box img{
	filter: drop-shadow(0px 0px 10px var(--greenish-blue));
}
.why_anish_page .section_one .four_boxes .info_box .num_box{
	font-size: 45px;
    font-weight: 500;
    color: #fff;
    display: flex;
    padding: 5px 0 0 0;
}
.why_anish_page .section_one .four_boxes .info_box .text{
	font-size: 22px;
    font-weight: 600;
    color: #fff;
    padding: 15px 0 0;
    position: relative;
}
.why_anish_page .section_one .four_boxes .info_box .text::before{
	position: absolute;
    content: '';
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
}
.why_anish_page .section_one .four_boxes .info_box:hover .text::before{
    left: 0%;
    width: 100%;
}
.why_anish_page .section_one .four_boxes .separator_line{
	width: 2px;
	background: linear-gradient(180deg, transparent, #fff, transparent);
}
.sections_wrapper section{
	position: relative;
}
.why_anish_page .sections_wrapper section{
	padding: 100px 0;
	background: linear-gradient(0deg, var(--dk-blue) 200px, transparent 200px);
}
.why_anish_page .sections_wrapper section .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.why_anish_page .sections_wrapper section:nth-child(even) .inner_container{
	flex-direction: row-reverse;
}
.why_anish_page .sections_wrapper section:nth-child(2) .inner_container{
	align-items: flex-start;
}
.why_anish_page .sections_wrapper section .inner_container .img_box{
	width: 60%;
}
.why_anish_page .sections_wrapper section:nth-child(even) .inner_container .img_box{
	width: 50%;
}
.why_anish_page .sections_wrapper section .inner_container .img_box img{
	border: 5px solid #fff;
}
.why_anish_page .sections_wrapper section .inner_container .text_box{
	width: 40%;
	padding: 0 0 0 80px;
}
.why_anish_page .sections_wrapper section:nth-child(2) .inner_container .text_box{
	padding: 0 100px 0 0;
}
.why_anish_page .sections_wrapper section:nth-child(4) .inner_container .text_box{
	padding: 0 50px 0 0;
}
.why_anish_page .sections_wrapper section:nth-child(even) .inner_container .text_box{
	width: 50%;
}
.why_anish_page .sections_wrapper section .inner_container .text_box p{
	text-align: center;
}
.why_anish_page .sections_wrapper section .inner_container .text_box .icons_wrapper{
	display: flex;
	/*align-items: flex-end;*/
	justify-content: space-evenly;
	background: linear-gradient(90deg, #03175b, #053587);
	padding: 20px 0;
	border-radius: 7px;
	margin: 0 0 50px;
	position: relative;
	/*z-index: 1;*/
}
.why_anish_page .sections_wrapper section .inner_container .text_box .icons_wrapper::before{
	position: absolute;
	content: '';
	left: -10px;
	bottom: -18px;
	width: calc(100% + 20px);
	height: 90%;
	background: url(../images/bg/tea-methodology.png) no-repeat;
	background-size: contain;
	background-position: bottom;
	z-index: -1;
}
.why_anish_page .sections_wrapper section .inner_container .text_box .icons_wrapper .icon_box{
	text-align: center;
}
.why_anish_page .sections_wrapper section .inner_container .text_box .icons_wrapper .icon_box .txt{
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 5px 0 0 0;
}
.why_anish_page .sections_wrapper section .inner_container .text_box .icons_wrapper .separator_line{
	width: 2px;
    background: linear-gradient(180deg, transparent, #fff, transparent);
}
.why_anish_page .sections_wrapper section .inner_container .text_box .features{
	padding: 15px 0 0;
}
.why_anish_page .sections_wrapper section .inner_container .text_box .features .heading{
	text-align: left;
	font-size: 25px;
	margin: 0 0 20px;
}
.why_anish_page .sections_wrapper section .inner_container .text_box .features .heading::before{
	left: 0;
}
.why_anish_page .sections_wrapper section .inner_container .text_box .features ul{
	margin: 0 0 0 18px;
}
.why_anish_page .sections_wrapper section .inner_container .text_box .features ul li{
	font-size: 16px;
	color: #000;
	font-weight: 600;
	list-style: disc;
	padding: 0 0 15px;
}
.why_anish_page .sections_wrapper section .inner_container .text_box .sub_head{
	font-size: 20px;
	font-weight: 700;
	color: var(--blue);
	text-align: center;
	padding: 0 0 5px;
}

/*service_support_page*/
.service_support_page .contained_hero{
	padding: 50px 0 50px;
	background: linear-gradient(180deg, var(--dk-blue) 340px, transparent 100px);
}
.service_support_page .contained_hero .img_box{
	width: 1000px;
	margin: auto;
	border: 10px solid #fff;
}
.service_support_page .contained_hero p{
	text-align: center;
	width: 90%;
	margin: auto;
	padding: 20px 0;
}
.service_support_page .contained_hero .section_links ul{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.service_support_page .contained_hero .section_links ul li{
	padding: 0 10px 10px;
}
.service_support_page .contained_hero .section_links ul li a{
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: var(--blue);
	padding: 5px 15px;
	border-radius: 50px;
	width: 300px;
	text-align: center;
	min-height: 50px;
	align-content: center;
}
.service_support_page .contained_hero .section_links ul li a:hover{
	background: var(--dk-blue);
}
.service_support_page .sections_wrapper section{
	padding: 100px 0;
	background: linear-gradient(0deg, var(--dk-blue) 200px, transparent 200px);
}
.service_support_page .sections_wrapper section .inner_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.service_support_page .sections_wrapper section:nth-child(even) .inner_container{
	flex-direction: row-reverse;
}
.service_support_page .sections_wrapper section .inner_container .img_box{
	width: 60%;
}
.service_support_page .sections_wrapper section .inner_container .img_box img{
	border: 5px solid #fff;
	width: 100%;
}
.service_support_page .sections_wrapper section .inner_container .text_box{
	width: 40%;
	padding: 0 0 100px 50px;
}
.service_support_page .sections_wrapper section:nth-child(2) .inner_container .text_box{
	padding: 0 40px 100px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.service_support_page .sections_wrapper section:nth-child(2) .inner_container .text_box .description{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.service_support_page .sections_wrapper section .inner_container .text_box p{
	text-align: center;
}
.service_support_page .sections_wrapper section .inner_container .text_box ul{
	padding: 0 0 5px;
	display: inline-flex;
	flex-direction: column;
}
.service_support_page .sections_wrapper section .inner_container .text_box ul li{
	font-size: 15px;
	font-weight: 600;
	color: #000;
	list-style: disc;
	padding: 0 0 10px;
}


.service_support_page .contained_hero .title{
	font-size: 25px;
	font-weight: 700;
	color: #000;
	text-align: center;
	padding: 20px 0 0;
}

/*retrofitting_page*/
.service_support_page.retrofitting_page .contained_hero .section_links ul{
	padding: 20px 0 0;
}
.service_support_page.retrofitting_page .contained_hero .section_links ul li{
	padding: 0 10px 20px;
}
.service_support_page .boxes_wrapper .boxes_row{
	background: linear-gradient(180deg, #03185c, #053587);
	margin: 70px 0 0;
}
.service_support_page .boxes_wrapper .boxes_row .inner_container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	justify-content: space-around;
	padding: 70px 0;
}
.service_support_page .boxes_wrapper .boxes_row .info_box{
	width: calc(33.33% - 40px);
	display: flex;
	flex-direction: column;
	position: relative;
}
.service_support_page .boxes_wrapper .boxes_row .info_box .img_box img{
	width: 100%;
}
.service_support_page .boxes_wrapper .boxes_row .info_box .text_box{
	width: 90%;
	height: 100%;
	margin: -20px auto 0px auto;
	background: #fff;
}
.service_support_page .boxes_wrapper .boxes_row .info_box .text_box .title{
	font-size: 16px;
	color: #ffffff;
	background: var(--blue);
	border-left: 5px solid var(--greenish-blue);
	padding: 10px;
}
.service_support_page .boxes_wrapper .boxes_row .info_box .text_box .text{
	padding: 20px 20px 0 20px;
}

/*gallery_page*/
.gallery_page .header_wrapper{
	background: radial-gradient(#053487, #031a5f);
	padding: 100px 0 80px;
}
.gallery_page .gallery_events_wrapper{
	padding: 50px 0 50px;
}
.gallery_page .gallery_events_wrapper .gallery_event_box{
	padding: 0 0 50px;
}
.gallery_page .gallery_events_wrapper .gallery_event_box .title{
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #000;
	padding: 0 0 30px;
}
.gallery_page .gallery_events_wrapper .gallery_event_box .gallery_images_slider .item_box{
	width: 100%;
}
.gallery_page .gallery_events_wrapper .gallery_event_box .gallery_images_slider .item_box a.img_box{
	margin: 0 0 20px;
	padding: 0 0 67.5% 0;
	position: relative;
	display: block;
}
.gallery_page .gallery_events_wrapper .gallery_event_box .gallery_images_slider .item_box a.img_box:nth-child(2){
	margin: 0;
}
.gallery_page .gallery_events_wrapper .gallery_event_box .gallery_images_slider .item_box a.img_box img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	left: 0;
	top: 0;
}
.gallery_page .gallery_events_wrapper .gallery_event_box .gallery_images_slider.owl-carousel.owl-theme .owl-nav button.owl-prev{
	left: -40px;
}
.gallery_page .gallery_events_wrapper .gallery_event_box .gallery_images_slider.owl-carousel.owl-theme .owl-nav button.owl-next{
	right: -40px;
}

/*blogs_page*/
.blogs_page .header_wrapper{
	background: radial-gradient(#053487, #031a5f);
	padding: 100px 0 80px;
}
.blogs_page .blogs_wrapper{
	padding: 60px 0;
}
.blogs_page .blogs_wrapper .blogs_boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.blogs_page .blogs_wrapper .blogs_boxes .blog_box{
	width: calc(33.33% - 10px);
	margin: 0 0 30px 0;
}
.blogs_page .blogs_wrapper .blogs_boxes .blog_box a{
	display: block;
}
.blogs_page .blogs_wrapper .blogs_boxes .blog_box a .title{
	font-size: 15px;
	width: 90%;
	margin: -24px auto 0 auto;
	background: var(--blue);
	border-left: 5px solid var(--greenish-blue);
	color: #fff;
	padding: 5px;
	position: relative;
}



/*blogs_inner_pages*/
.blogs_inner_pages{
  padding: 5vw 0;
}
.blogs_inner_pages .inner_container .title{
  padding: 0 0 0 10px;
}
.blogs_inner_pages .inner_container .blogs_inner_pages_boxes{
  padding: 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
.blogs_inner_pages .inner_container .blogs_inner_pages_boxes .title{
  padding: 0;
}
.blogs_inner_pages .inner_container .blogs_inner_pages_boxes .img_box{
  padding: 30px 0;
}
.blogs_inner_pages .inner_container .blogs_inner_pages_boxes .other_blogs .title{
  background: var(--dk-blue);
  color: #fff;
  padding: 15px 0;
  text-align: center;
}
.blogs_inner_pages .inner_container .blogs_inner_pages_boxes .other_blogs ul {
  border-bottom: 1px dashed #3d3d3d;
  border-left: 1px dashed #3d3d3d;
  border-right: 1px dashed #3d3d3d;
}
.blogs_inner_pages .inner_container .blogs_inner_pages_boxes .other_blogs ul li {
  padding: 15px;
  border-bottom: 1px dashed #3d3d3d;
}
.blogs_inner_pages .inner_container .blogs_inner_pages_boxes .other_blogs ul li:last-child{
  border: none;
}
.blogs_inner_pages .inner_container .blogs_inner_pages_boxes .other_blogs ul li a{
  font-family: "Onest", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #000;
}

/*single_product_page*/
.single_product_page .contained_hero{
	padding: 50px 0 0;
	background: linear-gradient(180deg, var(--dk-blue) 340px, transparent 100px);
}
.single_product_page .contained_hero .img_box{
	width: 1000px;
	margin: auto;
	text-align: center;
}
.single_product_page .contained_hero .img_box img{
	max-height: 500px;
	max-width: 100%;
	margin: auto;
	border: 10px solid #fff;
	background: #fff;
}
.single_product_page .contained_hero .text{
	text-align: center;
	width: 90%;
	margin: auto;
	padding: 20px 0 30px;
}
.single_product_page .contained_hero .section_links ul{
	display: flex;
	flex-wrap: wrap;
	/*align-items: center;*/
	justify-content: center;
}
.single_product_page .contained_hero .section_links ul li{
	padding: 0 10px 20px;
}
.single_product_page .contained_hero .section_links ul li a{
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: var(--blue);
	padding: 5px 15px;
	border-radius: 50px;
	width: 300px;
	text-align: center;
	height: 100%;
    align-content: center;
    min-height: 50px;
}
.single_product_page .contained_hero .section_links ul li a:hover{
	background: var(--dk-blue);
}
.pdfs_band{
	padding: 50px 0;
	/*background: linear-gradient(180deg, var(--dk-blue) 340px, transparent 100px);*/
	background: radial-gradient(#053487, #031a5f);
}
.pdfs_band .pdf_boxes{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.pdfs_band .pdf_boxes .pdf_box{
	width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #fff;
    padding: 15px 0;
}
.pdfs_band .pdf_boxes .pdf_box:last-child{
	border: none;
}
.pdfs_band .pdf_boxes .pdf_box a{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.pdfs_band .pdf_boxes .pdf_box a .pdf_title{
	font-size: 16px;
	color: #fff;
	padding: 0 10px;
	max-width: 160px;
}
.pdfs_band .pdf_boxes .pdf_box a .download_btn{
	background: #3fce01;
    padding: 4px 6px;
    border-radius: 50px;
    margin: 0 0 0 25px;
    display: inline-flex;
    align-items: center;
}
.pdfs_band .pdf_boxes .pdf_box a:hover .download_btn{
	transform: scale(1.1);
}
.pdfs_band .pdf_boxes .pdf_box a .download_btn .txt{
	color: #fff;
	font-weight: 700;
	padding: 0 5px;
}

/*single_product_page*/
.single_product_page .products_wrapper{
	background: unset;
}
.single_product_page .products_wrapper .inner_container{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.single_product_page .products_wrapper .inner_container .product_box{
	padding: 50px 20px 70px;
	background: url(../images/bg/product-card.jpg) no-repeat;
	background-size: cover;
	background-position: top;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	z-index: 2;
	margin: 0 0 70px 0;
	width: 100%;
	--table-height: 1px;
}
.single_product_page .products_wrapper .inner_container .product_box::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 100%;
	/*height: 40%;
	max-height: 225px;*/
	height: calc(70px + var(--table-height));
    min-height: 120px;
    max-height: 60%;
	background: radial-gradient(#053487, #031a5f);
	z-index: -1;
}
.single_product_page .products_wrapper .inner_container .product_box::after{
	position: absolute;
	content: '';
	left: 0;
	bottom: -34px;
	width: 100%;
	height: 90%;
	background: url(../images/bg/product-card.png) no-repeat;
	background-size: contain;
	background-position: bottom;
	z-index: -1;
}
.single_product_page .products_wrapper .inner_container .product_box .img_box{
	margin: auto;
	padding: 0 20px 0 0;
	max-width: calc(100% - 400px - 40px);
}
.single_product_page .products_wrapper .inner_container .product_box .text_box{
	width: 400px;
	min-height: 400px;
	margin: 0;
	background: #fff;
	padding: 50px 45px 35px 35px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.single_product_page .products_wrapper .inner_container .product_box .text_box::before{
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(0deg, var(--blue), var(--greenish-blue));
}
.single_product_page .products_wrapper .inner_container .product_box .text_box .product_title{
	font-size: 20px;
	font-weight: 700;
	color: var(--dk-blue);
	padding: 0 0 20px;
}
.single_product_page .products_wrapper .inner_container .product_box .text_box .text{
	padding: 0 0 15px;
}
.single_product_page .products_wrapper .inner_container .product_box .text_box .pdf_box{
	margin: auto 0 0 0;
}
.single_product_page .products_wrapper .inner_container .product_box .table_wrapper{
	width: 100%;
	padding: 30px 0 0 0;
	/*max-width: 1130px;
	overflow: auto;*/
}
.single_product_page .products_wrapper .inner_container .product_box .table_wrapper table{
	/*width: max-content;*/
	width: 100%;
    table-layout: fixed;
}
.single_product_page .products_wrapper .inner_container .product_box .table_wrapper tr:nth-child(odd) td{
	background: #e8e8e8;
}
.single_product_page .products_wrapper .inner_container .product_box .table_wrapper tr:nth-child(1) td{
	background: var(--white-blue);
}
.single_product_page .products_wrapper .inner_container .product_box .pdf_box{
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #fff;
    padding: 15px 0;
}
.single_product_page .products_wrapper .inner_container .product_box .pdf_box:last-child{
	border: none;
}
.single_product_page .products_wrapper .inner_container .product_box .pdf_box a{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.single_product_page .products_wrapper .inner_container .product_box .pdf_box a .pdf_title{
	font-size: 16px;
	color: #000;
	padding: 0 10px;
	max-width: 155px;
}
.single_product_page .products_wrapper .inner_container .product_box .pdf_box a .download_btn{
	background: #3fce01;
    padding: 4px 6px;
    border-radius: 50px;
    margin: 0 0 0 10px;
    display: inline-flex;
    align-items: center;
}
.single_product_page .products_wrapper .inner_container .product_box .pdf_box a:hover .download_btn{
	transform: scale(1.1);
}
.single_product_page .products_wrapper .inner_container .product_box .pdf_box a .download_btn .txt{
	color: #fff;
	font-weight: 700;
	padding: 0 5px;
}

.overlay_buttons{
	position: fixed;
    right: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateZ(270deg) translateY(-41px);
    transform-origin: right top;
    z-index: 999;
    width: 100vh;
    pointer-events: none;
}
.overlay_buttons .call_now{
	pointer-events: all;
}
.overlay_buttons .call_now button{
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: var(--dk-blue);
	padding: 10px 30px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border: 1px solid #ffffff47;
    border-bottom: none;
    text-transform: uppercase;
}


/*body_overlay*/
.body_overlay {
  background: rgba(0,0,0,0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
  transition: unset;
}
.body_overlay .inner_box{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.request_overlay_box {
  width: 600px;
  max-width: 90%;
  background: #fff;
  padding: 30px 40px;
  position: relative;
}
.request_overlay_box .form_wrapper .heading{
	padding: 0 0 10px;
	margin: 0 0 15px;
}
.request_overlay_box .form_wrapper p{
	text-align: center;
	padding: 0 0 20px;
}
.request_overlay_box .form_wrapper form .input_box {
  padding: 0 0 10px;
}
.request_overlay_box .form_wrapper form .input_box input[type=text] {
  background: #f8f5ee;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: none;
  padding: 10px;
}
.request_overlay_box .form_wrapper form .input_box select {
  background: #f8f5ee;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: none;
  padding: 10px;
}
.request_overlay_box .form_wrapper form .input_box textarea {
  background: #f8f5ee;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: none;
  padding: 10px;
}
.request_overlay_box .form_enquire_now{
  width: 98%;
  margin: 0 auto;
  padding: 2% 0%;
}
.request_overlay_box .submit_box.right{
	text-align: left;
}
.close_overlay {
  position: absolute;
  right: -5px;
  top: -25px;
  width: 32px;
  height: 32px;
}
.close_overlay:hover {
  opacity: 1;
}
.close_overlay:before, .close_overlay:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #fff;
}
.close_overlay:before {
  transform: rotate(45deg);
}
.close_overlay:after {
  transform: rotate(-45deg);
}

.section_link{
	position: absolute;
	left: 0;
	top: calc(var(--header-height) * -1);
}

/*pagination*/
.table_pagination nav{
	text-align: center;
}
.pagination{
	display: inline-flex;
	align-items: center;
	text-align: center;
	margin: auto;
}
.pagination li.page-item{
	margin: 0 5px 0 0;
}
.pagination li.page-item .page-link{
	border: 1px solid var(--dk-blue);
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dk-blue);
    min-width: 32px;
    text-align: center;
    text-transform: uppercase;
}
.pagination li.page-item.active .page-link{
	background: var(--dk-blue);
	color: #fff;
}
.pagination li.page-item.disabled .page-link{
	border-color: #bbb;
	color: #bbb;
	cursor: not-allowed;
}

.lower_inputs{
	display: grid;
	grid-template-areas: 'city message' 'file message';
 	grid-auto-columns: 50%;
 	/*grid-gap: 20px;*/
}
form .input_box.grid_city{
	grid-area: city;
	grid-area: 1 / 1 / span 1 / span 1;
	padding-right: 10px;
}
form .input_box.grid_file{
	grid-area: file;
	grid-area: 2 / 1 / span 1 / span 1;
	padding-right: 10px;
}
form .input_box.grid_message{
	grid-area: message;
	grid-area: 1 / 2 / span 2 / span 1;
	padding-left: 10px;
}
.request_overlay_box .form_wrapper form .input_box.grid_city{
	padding-right: 10px;
}
.request_overlay_box .form_wrapper form .input_box.grid_file{
	padding-right: 10px;
}
.request_overlay_box .form_wrapper form .input_box.grid_message{
	padding-left: 10px;
}
.single_product_page .products_wrapper.fluid_first_exists{
	background: linear-gradient(180deg, var(--white-blue) 100%, transparent) no-repeat;
    background-size: 100% 524px;
}
.single_product_page .products_wrapper .inner_container .product_box.fluid_first .text_box{
	display: none;
}
.single_product_page .products_wrapper .inner_container .product_box.fluid_first .img_box{
	max-width: 100%;
	padding: 0;
	margin: auto 0 auto auto;
}
.single_product_page .faqs_wrapper{
	padding: 0 0 50px;
}

/*faqs_wrapper*/
.faqs_wrapper{
	padding: 50px 0;
}
.faqs_wrapper .heading{
	text-transform: none;
}

.accordion__item {
	margin: 5px auto;
}
.accordion__item .accordion__title {
	position: relative;
    display: block;
    padding: 13px 60px 15px 13px;
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    background-color: var(--dk-blue);
    border-radius: 3px;
    cursor: pointer;
}
.accordion__item .accordion__title:hover {
	background-color: var(--blue);
}
.accordion__item .accordion-active {
	background-color: #e5e4e4;
    background-color: var(--dk-blue);
}
.accordion__item .accordion__title .accordion__arrow {
	position: absolute;
	top: calc(50% - 15px);
	right: 10px;
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	text-align: center;
	color: #fff;
	line-height: 30px;
	font-size: 20px;
	font-weight: 700;
	background-color: #c9c9c9;
	border-radius: 50%;

	background-color: var(--blue);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.accordion__item .accordion__title:hover .accordion__arrow{
    background-color: var(--dk-blue);
}
.accordion__item .accordion__rotate {
	transform: rotate(225deg);
}
.accordion__item .accordion__arrow-item {
	font-weight: 700;
    font-size: 25px;
    line-height: 20px;
    padding: 0 0 0.15em 0.02em;
}
.accordion__item .accordion__content {
	padding: 30px;
	margin-bottom: 2px;
	/*font-size: 14px;*/
	display: none;
	transition: unset;
	font-size: 15px;
    line-height: 1.4em;
    color: #000;
    font-weight: 400;
    background: var(--white-blue);
}
.accordion__item .accordion__content p:last-child{
	padding: 0;
}

/*privacy_policy_page*/
.privacy_policy_page{
	padding: 50px 0;
}
.privacy_policy_page a{
	text-decoration: underline;
	color: var(--dk-blue);
}
.privacy_policy_page h3{
	font-size: 20px;
	font-weight: 700;
	color: #000;
	padding: 20px 0 15px 0;
}
.privacy_policy_page ul{
	padding: 0 0 0 18px;
}
.privacy_policy_page ul li{
	font-size: 15px;
    line-height: 1.4em;
    color: #000;
    font-weight: 600;
    padding: 0 0 15px 0;
    list-style: disc;
}