@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family: 'Impact';
    src: url('../fonts/Impact.eot');
    src: url('../fonts/Impact.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Impact.woff2') format('woff2'),
        url('../fonts/Impact.woff') format('woff'),
        url('../fonts/Impact.ttf') format('truetype'),
        url('../fonts/Impact.svg#Impact') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block
}
abbr, address, article, aside, audio, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit
}
body {
	margin: 0;
	padding: 0;
	font: 400 14px 'Open Sans', sans-serif;
	line-height: 20px;
	color: #020b1e;
	background-color: #fff;
	overflow-x:hidden;
}
input[type="chexbox"], div, form, h1, h2, h3, h4, h5, h6, img, input, label, li, ol, option, p, input[type="radio"], select, td, textarea, tr, ul {
	padding: 0;
	margin: 0
}
ul {
	padding: 0;
	margin: 0;
	
}
ol {
	padding: 0;
	margin: 0;
	list-style-type: none
}
a {
	padding: 0;
	margin: 0;
	text-decoration: none;
	outline: 0;
	cursor: pointer;
	color: #444444;    
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
a:hover {
	text-decoration: none;
}
img {
	padding: 0;
	margin: 0;
	outline: 0;
	border: 0;
	max-width: 100%;
	height: auto;
}
.chexbox {
	padding: 0;
	margin: 0;
	width: 20px;
	height: 20px
}
.clr, .spacer {
	padding: 0;
	margin: 0;
	font-size: 0;
	line-height: 0;
	clear: both;
}
.clearfix:after, .clearfix::before {
	content: '';
	margin: 0;
	padding: 0;
	display: block;
	clear: both;
}
.container{
	max-width: 1530px;
}
.sub-title {
	font: 500 15px 'Open Sans', sans-serif;
	line-height: 20px;
	color: #252525;
	display: block;
	/* text-transform: uppercase; */

}
.title {
	font: 700 40px 'Open Sans', sans-serif;
	line-height: 43px;
	color: #282828;
	display: block;
    padding-bottom: 25px;
}
.processSection .title {
	font: 700 32px 'Open Sans', sans-serif;
	line-height: 39px;
}
p {
	font: 400 17px 'Open Sans', sans-serif;
	line-height: 28px;
	color: #282828;
	display: block;
}
.btn {
	font-size: 14px;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	height: 50px;
	display: inline-block;
	line-height: 48px;
	padding: 0 34px;
	border: 1px solid #d7e022;
	border-radius: 8px;
	background: #d7e022;
	outline: none;
	box-shadow: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.btn:hover {
	border: 1px solid #111111;
	color: #fff;
	background: #111111;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
/* =====Home page design starts here===== */
.contentSoluction{
		padding: 0 0 60px 0;
		margin: -20px 0 0 0;
}
/* ----header part design starts here---- */
.site-header{
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 3;
}
.site-header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	/* box-shadow: 0 2px 5px #959595; */
	background: rgba(0, 0, 0, 0.8);
}
.site-header.sticky .navbar-brand::after {
	content: inherit;
}
.sticky .navbar-brand{
	max-width: 140px;
}
.site-header.sticky .header-wrap {
	background: none;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(0, 0, 0, 0.3);
	padding: 10px 20px;
	border-radius: 10px;
	overflow: hidden;
}
.site-header .menu {
	display: flex;
	align-items: center;
	column-gap: 36px;
}
.site-header .menu li{
  list-style: none;
}
.site-header .menu li a {
	font: 700 14px 'Open Sans', sans-serif;
	line-height: 30px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.2px;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.site-header .menu li a:hover,
.site-header .menu li.current-menu-item a{
	color: #f5bb8f;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.navbar-brand {
	margin: 0;padding: 0;
	position: relative;
}
.navbar-brand::after {
	position: absolute;
	content: "";
	width: 300px;
	height: 91px;
	/* background: url(../images/shape.png) no-repeat; */
	background: #561209;
	left: -21px;
	top: -15px;
	z-index: -1;
	border-radius: 10px 0 0 10px;
	clip-path: polygon(0px 0px, 100.32% -1.11%, 84.96% 103.3%, 0% 100%);

}
/* ----header part design ends here---- */
/* ----banner part design starts here---- */
.bannerSection{
    position: relative;
}
.bannerSection .banner-text {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: 0;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 3;
}
.bannerSection .banner-img{
	position: relative;
}
.bannerSection .banner-img::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}
.bannerSection .banner-content h3{
    font: 700 18px 'Open Sans', sans-serif;
	line-height: 30px;
	color: #fff;
	text-transform: uppercase;
    display: block;
}
.bannerSection .banner-content .content {
	font: 700 55px 'League Spartan', sans-serif;
	line-height: 71px;
	color: #fff;
	text-transform: uppercase;
	display: block;
}
.bannerSection .sub-content {
	font-family: 'Impact';
	font-size: 40px;
	line-height: 43px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.41px;
}
.bannerSection .sub-content span {
	color: #111111;
	background-color: #f5bb8f;
	padding: 1px 6px;
}
.bannerSection .btn-wrap a{
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	height: 53px;
	display: inline-block;
	line-height: 53px;
	padding: 0 22px;
	border: 1px solid #fff;
	border-radius: 10px;
	margin-top: 40px;
	outline: none;
	box-shadow: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.bannerSection .btn-wrap a:hover{
	color: #111111;
	background-color: #f5bb8f;
	border: 1px solid #f5bb8f;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
/* ----banner part design ends here---- */
/* ----who we are part design starts here---- */
.who_we_are_area {
	padding: 70px 0 0 0;
}
.who_we_are_area .title{
    margin-bottom: 67px;
    border-bottom: 1px solid #efefef;
}
.who_we_are_area .service-box-wrap {
	margin: 0;
	display: -ms-grid;
	display: grid;
	grid-auto-columns: 1fr;
	/* grid-column-gap: 30px;
	grid-row-gap: 30px; */
	-ms-grid-columns: 1fr 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}
.who_we_are_area .service-title {
	font: 500 14px 'Open Sans', sans-serif;
	line-height: 25px;
	color: #0b1931;
	position: relative;
	padding-bottom: 9px;
	margin-bottom: 20px;
}
.who_we_are_area .service-title::after {
  position: absolute;
  content: '';
  background-color: #784033;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
}
.who_we_are_area .content_area {
	font: 400 20px 'Open Sans', sans-serif;
	line-height: 25px;
	color: #252525;
	position: relative;
	/* max-width: 204px; */
	max-width: 100%;
}
.who_we_are_area .icon {
	width: 88px;
	height: 88px;
	line-height: 88px;
	text-align: center;
	background: #fdebdd;
	margin-bottom: 30px;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
}
.who_we_are_area .service-box {
	position: relative;
	padding: 0;
	min-height: 250px;
	/* width: 370px; */
	padding-right: 30px;
	padding-left: 30px;
	border-right: 1px solid #dcdcdc;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
}
/* .who_we_are_area .service-box:nth-child(1),
.who_we_are_area .service-box:nth-child(5) {
	padding-left: 0px;
} */
.who_we_are_area .service-box:nth-child(4),
.who_we_are_area .service-box:nth-child(8) {
	border-right: none;
}
.who_we_are_area .service-box:nth-child(5),
.who_we_are_area .service-box:nth-child(6),
.who_we_are_area .service-box:nth-child(7),
.who_we_are_area .service-box:nth-child(8) {
  padding-top: 20px;
}
.who_we_are_area .service-box:hover {
	background: #fdebdd;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
}
.who_we_are_area .service-box:hover .icon{
	background: #fdebdd;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
}
/* .who_we_are_area .service-box::after {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 1px;
	height: 270px;
	background-color: #dcdcdc;
	right: 80px;
} */
.who_we_are_area .service-box::before {
	position: absolute;
	content: '';
	bottom: 0;
	right: 0;
	width: 380px;
	height: 1px;
	background-color: #dcdcdc;
}
.who_we_are_area .service-box:nth-child(4):after,
.who_we_are_area .service-box:nth-child(8):after{
    content: inherit;
}
/* ----who we are part design ends here---- */
/* ----why choose_us part design starts here---- */
.why_choose_us {
	background: #f9f9f9;
	margin: -252px 0 0 0;
	padding: 325px 0 0 0;
}
.why_choose_us .why_choose_icon_part {
	margin: 0;
	display: -ms-grid;
	display: grid;
	grid-auto-columns: 1fr;
	/* grid-column-gap: 30px; */
	/* grid-row-gap: 30px; */
	-ms-grid-columns: 1fr 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}
.why_choose_us .why_choose-icon {
	background: #00b8f1;
	padding: 25px 0;
}
.why_choose_us .service_area {
	max-width: 263px;
	padding: 29px 0 25px 0;
}
.why_choose_us .service-title {
	font: 700 24px 'Open Sans', sans-serif;
	line-height: 30px;
	color: #fff;
	display: block;
	margin-bottom: 5px;
}
.why_choose_us .content_area{
    font: 400 15px 'Open Sans', sans-serif;
	line-height: 20px;
	color: #fff;
}
.why_choose_us .counter-part {
	font: 700 39px 'Open Sans', sans-serif;
	line-height: 42px;
	color: #fff;
	display: block;
	margin-top: 20px;
}
.why_choose_icon_part .icon {
	margin-bottom: 20px;
	height: 84px;
	display: flex;
	align-items: center;
}
.why_choose_icon_part .why_choose-icon-wrap{
    margin-right: 60px;
    padding-right: 60px;
    border-right: 1px solid #019ccc;
}
.why_choose_icon_part .why_choose-icon-wrap:last-child{
    border-right: none;
}
.why_choose_icon_part .icon img{
	/* width: 100%;
    height: 100%;
    object-fit: cover; */
}
.why_choose_us .why_choose-icon{
    margin-top: 15px;
}
/* ----why choose us part design ends here---- */
/* ----process part design starts here---- */
.processSection{
	padding: 70px 0 90px 0;
}
.processSection .process-wrap{
	align-items: center;
}
.processSection .content-side {
	padding: 52px 60px 70px 45px;
	background: #fff;
	margin: 0 0 0 -195px;
	position: relative;
}
.processSection .content-side::after {
	position: absolute;
	content: '';
	top: -39px;
	left: 0;
	background-color: #fff;
	width: 26px;
	height: 26px;
}
.processSection .content-side::before {
	position: absolute;
	content: '';
	top: -24px;
	left: -48px;
	background-color: #fff;
	width: 38px;
	height: 38px;
}
.processSection .content-wrap{
	max-width: 782px;
}
.processSection .content-wrap p{
		padding:0 0 20px 0;
}
/* ----process part design ends here---- */
/* ----product part design starts here---- */
.productSection{
	padding: 0 0 90px 0;
}
.productSection .title {
	margin-bottom: 55px;
	border-bottom: 1px solid #efefef;
}
.productSection .product-title {
	font: 600 20px 'Open Sans', sans-serif;
	line-height: 26px;
	color: #151515;
	display: block;
	text-transform: capitalize;
	padding: 21px 0 15px 0;
	height: 85px;
}
.productSection .content_area {
	font: 400 15px 'Open Sans', sans-serif;
	line-height: 20px;
	color: #282828;
	/* max-width: 330px; */
	margin-bottom: 19px;
	
}
.productSection .btn {
	font-size: 14px;
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	height: 48px;
	display: inline-block;
	line-height: 47px;
	padding: 0 30px;
	border: 1px solid #f5bb8f;
	border-radius: 8px;
	background: #f5bb8f;
	outline: none;
	box-shadow: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.productSection .btn:hover {
	border: 1px solid #561209;
	color: #fff;
	background: #561209;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
/* ----product part design ends here---- */
/* ----become a partner part design starts here---- */
.become-a-partner{
    padding: 70px 0 90px 0;
    /* background-image: url(../images/partner-bg.jpg); */
    background-repeat: no-repeat !important;
    background-size: cover !important;  
	position: relative;
}
.become-a-partner::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}
.become-a-partner .partner-wrap {
	text-align: center;
	position: relative;
	z-index: 3;
}
.become-a-partner .become-heading{
	font: 700 25px 'Open Sans', sans-serif;
	line-height: 29px;
	color: #d7e022;
	text-transform: uppercase;
	display: block;
}
.become-a-partner .phone {
	font: 800 40px 'Open Sans', sans-serif;
	line-height: 45px;
	color: #fff;
	text-transform: uppercase;
	display: block;
	padding: 14px 0 7px 0;
}
.become-a-partner .phone a {
	color: #fff;
	padding-left: 12px;
	letter-spacing: 0.4px;
}
.become-a-partner .email a{
	font: 400 20px 'Open Sans', sans-serif;
	line-height: 25px;
	color: #fff;
	display: block;
}
.become-a-partner .btn-become a {
	font-size: 14px;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	height: 55px;
	display: inline-block;
	line-height: 51px;
	padding: 0 34px;
	border: 1px solid #d7e022;
	border-radius: 8px;
	background: #d7e022;
	outline: none;
	box-shadow: none;
	position: absolute;
	bottom: -97%;
	left: 44%;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.become-a-partner .btn-become a:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: #111111;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
}
/* ----become a partner part design ends here---- */
/* ----footer section design starts here---- */
.footerSection{
	padding: 110px 0 70px 0;
	background-color: #3c0a03;
}
.footerSection h3 {
	font: 700 18px 'Open Sans', sans-serif;
	line-height: 25px;
	color: #fff;
	display: block;
	text-transform: uppercase;
	margin-bottom: 17px;
}
.footerSection .img-footer{
	margin-bottom: 30px;
}
.footerSection .first-part p {
	font: 400 13px 'Open Sans', sans-serif;
	line-height: 25px;
	color: #b8b8b8;
	display: block;
	text-transform: uppercase;
}
.footerSection .first-part p span{
	font: 400 12px 'Open Sans', sans-serif;
	line-height: 25px;
	display: block;
	text-transform: initial;
}
.footerSection ul li{
	list-style: none;
}
.footerSection ul li a {
	font: 400 15px 'Open Sans', sans-serif;
	line-height: 27px;
	color: #fff;
	display: block;
	text-transform: uppercase;
	padding-bottom: 3px;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footerSection ul li a:hover {
	color: #d7e022;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footerSection .third-part a{
	font: 400 15px 'Open Sans', sans-serif;
	line-height: 27px;
	color: #fff;
	display: inline-block;
	padding-bottom: 3px;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footerSection .third-part a:hover {
	color: #d7e022;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footerSection .footer_social_links {
	display: flex;
	align-items: center;
	column-gap: 14px;
	margin-top: 12px;
}
.footerSection .footer_social_links a{
    font-size: 20px;
} 
.footerSection .icon i{
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	font-size: 17px;
	border: 1px solid #fff;
	border-radius: 5px;
	margin: 0 8px 0 0px;
	background: transparent;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footerSection .icon i:hover{
    border: 1px solid #d7e022;
	background: #d7e022;
	color: #000;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footerSection .second-part li{
	position: relative;
}
.footerSection .second-part li::before{
	content: '\f105';
	font-family: 'FontAwesome';
	font-size: 16px;
	line-height: 6px;
	position: absolute;
	top: 40%;
	left: 0;
	color: #d7e022;
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footerSection .second-part li:hover {
	color: #d7e022;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footerSection .second-part a {
	transform: translateX(0);
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	display: inline-block;
}

.footerSection .second-part a:hover{
	transform: translateX(15px);
	color: #d7e022;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footerSection .second-part li:hover::before {
	opacity: 1;
	visibility: visible;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footerSection .phone-footer,
.footerSection .email-footer{
	padding-bottom: 0;
}
.footerSection .phone-footer {
	margin-bottom: 13px;
}
.footer_social_links i{
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	font-size: 17px;
	border: 1px solid #fff;
	border-radius: 5px;
	background: transparent;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footer_social_links a:hover{
	color: #fff !important;
}
.footer_social_links i:hover{
	color: #fff;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.footer_social_links i.fa-facebook-f:hover{
	border: 1px solid #3B5998;
	background: #3B5998;
}
.footer_social_links i.fa-twitter:hover{
	border: 1px solid #1DA1F2;
	background: #1DA1F2;
}
.footer_social_links i.fa-linkedin-in:hover{
	border: 1px solid #0077B5;
	background: #0077B5;
}
.footer_social_links i.fa-instagram:hover{
	border: 1px solid #ee2a7b ;
	background: linear-gradient(60deg,#f9ce34, #ee2a7b, #6228d7);
}
.footer_social_links i.fa-youtube:hover{
	border: 1px solid #FF0000 ;
	background: #FF0000;
}
/* ----footer section design ends here---- */
/* ----modal design starts here---- */
#exampleModalProduct #ModalLabelTeam {
	font: 600 20px 'Open Sans', sans-serif;
	line-height: 26px;
	color: #151515;
	display: block;
	text-transform: capitalize;
	padding: 0px 10px;
}
#exampleModalProduct .modal-body {
	font: 400 15px 'Open Sans', sans-serif;
	line-height: 20px;
	color: #282828;
	padding: 32px 25px;
}
#exampleModalProduct .modal-footer{
	display: none;
}
#exampleModalProduct .btn-close{
	opacity: 1;
	border: 1px solid #111;
	border-radius: 3px;
	outline: none;
	box-shadow: none;
}
#exampleModalProduct .modal-content {
	border: none;
	border-radius: 0;
}
/* ----modal design ends here---- */
/* =====Home page design ends here===== */
/* =====who we are page design starts here===== */
.who_we_are_area.who_we_are_page{
    padding: 70px 0;
}
.inner_banner_image figure {
	position: relative;
	padding-top: 35%;
}
.inner_banner_image figure img{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.inner_banner_image figure::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1;
}
.resource-title {
	font: 500 23px 'Open Sans', sans-serif;
	line-height: 26px;
	color: #282828;
	display: block;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.resourceSection {
	margin-bottom: 20px;
}
.videoSection{
	padding-bottom: 70px;
}
.videoSection figure {
	position: relative;
	padding-top: 50%;
}
.videoSection figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* .videoSection iframe {
	height: 306px;
} */
/* =====who we are page design ends here===== */
/* =====product page design starts here===== */
.products-us-page .product_area {
	padding: 15px 10px 25px 10px;
	box-shadow: 0 0 15px #ccc;
	margin-bottom: 25px;
}
.products-us-page .product_area figure.icon,
.productlider .item figure.icon,
.press-us-page figure.icon {
	position: relative;
	/* padding-top: 107%; */
	height: 327px;
	position: relative;
	overflow: hidden;
	background: #fff;
}
.products-us-page .product_area figure.icon img,
.productlider .item figure.icon img,
.press-us-page figure.icon img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.04);
    transform: translate(-50%, -50%) scale(1.04);
    max-width: 100%;
	width: 100%;
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
}
.products-us-page .product_area:hover figure.icon img,
.productlider .item:hover figure.icon img,
.press-us-page .blog-wrap:hover figure.icon img{
    -webkit-transform: translate(-50%, -50%) scale(1.16);
    transform: translate(-50%, -50%) scale(1.16);
	transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
}
.products-us-page .product_area {
	padding: 15px 10px 25px 10px;
	position: relative;
	overflow: hidden;
	border-bottom: 3px solid transparent;
	box-shadow: 0 0 8px 0 #eee9e9;
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
}
.products-us-page .product_area:hover{
	border-bottom: 3px solid #784033;
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
}
.products-us-page .product_area::before {
	position: absolute;
	content: '';
	top: 100%;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(245, 187, 143,0.7);
	z-index: -1;
	transition: .5s;
}
.products-us-page .product_area:hover::before {
	top: 0%;
	transition: .5s;
}
/* =====product page design ends here===== */
/* =====partners page design starts here===== */
.contact-us-form.partnerPage{
	padding-bottom: 70px;
}
.contact-us-form.partnerPage .form{
	max-width: 1020px;
	padding: 0px 32px 0px 32px;
	margin: 0 auto;
}
.contact-us-form label {
	font: 400 15px 'Open Sans', sans-serif;
	line-height: 26px;
	color: rgba(26,26,26,.7);
	width: 100%;
	padding-bottom: 7px;
}
.contact-us-form input[type="text"],
.contact-us-form input[type="email"],
.contact-us-form input[type="tel"],
.contact-us-form textarea {
	font: 400 16px 'Open Sans', sans-serif;
	line-height: 27px;
	background-color: #fafafa;
	border: 1px solid #a9a9a9;
	box-sizing: border-box;
	color: #000;
	height: 46px;
	padding: 0 10px;
	position: relative;
	width: 100%;
	margin-bottom: 18px;
}
.contact-us-form textarea {
	min-height: 100px;
	resize: vertical;
}
.contact-us-form form span {
	font-size: 17px;
	color: red;
	line-height: 24px;
}
.contact-us-form form strong {
	color: rgba(26,26,26,.7);
	font-size: 10px;
	line-height: 15px;
	font-weight: 400;
}
.partnerPage .form .content {
	padding-bottom: 35px;
}
.contact-us-form input[type="submit"] {
	font-size: 14px;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	height: 48px;
	display: inline-block;
	line-height: 46px;
	padding: 0 39px;
	border: 1px solid #d7e022;
	border-radius: 6px;
	background: #d7e022;
	outline: none;
	box-shadow: none;
	margin-top: 20px;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.contact-us-form input[type="submit"]:hover {
	border: 1px solid #111111;
	color: #fff;
	background: #111111;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
.partnerlogoSection .title{
	text-align: center;
}
.partnerlogoSection .content p {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}
.partnerlogoSection{
	padding-bottom: 70px;
}
.partnerlogoSlider {
	max-width: 900px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 20px;
	justify-content: center;
	margin-top: 30px;
	margin: 30px auto 0 auto;
	row-gap: 20px;
}
.partnerlogoSlider li {
	list-style: none;
	padding: 20px 10px;
	box-shadow: 0 0 15px 0 #ccc;
	border-radius: 7px;
	width: 22%;
}
/* =====partners page design ends here===== */
/* =====Inspection process page design starts here===== */
.after_bnr_part li {
    height: 100%;
    background-color: #00b8f1;
    position: relative;
    overflow: hidden;
}

.strategies .after_bnr_part li {
    height: 100%;
    background-color: #00b8f1;
    position: relative;
    overflow: hidden;
}

.after_bnr_part li .after_bnr_txt {
	float: left;
	width: 50%;
	padding: 100px 80px 100px 0;
}

.after_bnr_part li:nth-child(even) .after_bnr_txt {
    float: left;
    width: 50%;
    padding: 100px 0 100px 80px;
}

.after_bnr_part li:nth-child(even) .after_bnr_txt {
    float: right;
}

.after_bnr_part li .case-study-image {
    position: absolute;
    height: 100%;
    top: 0;
    overflow: hidden;
    width: 50%;
    right: 0;
}

.after_bnr_part li:nth-child(even) .after_bnr_txt {
    position: relative;
}

.after_bnr_part li .case-study-image::after, .after_bnr_part li .case-study-image::after {
	content: " ";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent #00b8f1;
	top: 50%;
	border-width: 40px 0 40px 40px;
	transform: translateY(-50%);
}

.after_bnr_part li .case-study-image:after {
    border-color: transparent transparent transparent #00b8f1;
}

.after_bnr_part li:nth-child(even) .case-study-image:after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
    top: 220px;
    border-width: 40px 40px 40px 40px;
    right: 0;
}

.after_bnr_part li:nth-child(even) .case-study-image {
    position: absolute;
    height: 100%;
    top: 0;
    overflow: hidden;
    width: 50%;
    left: 0;
}

.after_bnr_part li figure {
    height: 100%;
    width: 100%;
    transition: all 0.5s ease-in-out;
    background-size: cover!important;
    background-position: center center;
    background-repeat: no-repeat!important;
}

.after_bnr_part li .after_bnr_txt .process-title, .after_bnr_part li:nth-child(2n) .after_bnr_txt .process-title {
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
	color: #fff;
	font-weight: 700;
	line-height: 38px;
	text-transform: uppercase;
	margin-bottom: 26px;
}

.after_bnr_part li:nth-child(2n) .after_bnr_txt .process-title {
	color: #282828;
}

.after_bnr_part li .after_bnr_txt p {
    font: 400 16px 'Open Sans', sans-serif;
    line-height: 25px;
    color: #fff;
    padding: 0;
    margin: 0;
}

.after_bnr_part li:nth-child(even) .after_bnr_txt p {
    font: 400 16px 'Open Sans', sans-serif;
    line-height: 25px;
    color: #282828;
    padding: 0;
    margin: 0;
}

.after_bnr_part li .after_bnr_txt .process-title::after, .after_bnr_part li:nth-child(2n) .after_bnr_txt .process-title::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -13px;
	left: 0;
	width: 83px;
	height: 3px;
	background-color: #fff;
}

.after_bnr_part li:nth-child(even) .after_bnr_txt .process-title:after {
    background-color: #282828
}

.after_bnr_part li:nth-child(even) {
    background-color: #fff;
}

.after_bnr_part li a,.after_bnr_part li:nth-child(even) a {
    display: inline-block;
    border: 1px solid #fff;
    font: bold 16px 'Open Sans', sans-serif;
    line-height: 60px;
    color: #fff;
    margin: 40px 0 0 0;
    padding: 0 40px;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
}

.after_bnr_part li:nth-child(even) a:hover {
    display: inline-block;
    border: 1px solid #fff;
    font: bold 16px 'Open Sans', sans-serif;
    line-height: 60px;
    color: #fff;
    margin: 40px 0 0 0;
    padding: 0 40px;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    background: #000;
}

.after_bnr_part li a:hover {
    display: inline-block;
    border: 1px solid #fff;
    font: bold 16px 'Open Sans', sans-serif;
    line-height: 60px;
    color: #000;
    margin: 40px 0 0 0;
    padding: 0 40px;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    background: #fff;
}

.after_bnr_part li:nth-child(even) a {
    border: 1px solid #000;
    color: #000;
}

/* .after_bnr_part li:hover .case-study-image figure {
    transform: scale(1.04);
} */
.after_bnr_txt .process-title{
	position: relative;
}
.after_bnr_part li figure {
	position: relative;
	padding-bottom: 0;
	padding-top: 0;
	height: 0;
}
.after_bnr_part li figure {
	position: relative;
	padding-top: 64%;
}
/* .after_bnr_part li figure img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.after_bnr_part li figure iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
} */
.process_page figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.process_page iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	width: 100vw;
	height: calc(100vw/2.7);
}
/* .after_bnr_part.process_page{
	padding-bottom: 70px;
} */
/* =====Inspection process page design ends here===== */
.ourPartners{
		background-color: #fff;
		padding: 35px 0 45px 0;
}
.our_partners_list{
		list-style-type: none;
}
.ourPartners h2{
		font: 700 30px 'Open Sans', sans-serif;
		line-height: 40px;
		color: #000;
		display: block;
		padding-bottom: 20px;
}
.post_content{
		font-size: 13px;
		line-height:18px;
		margin: 10px 0 25px 0;
}
.ourPartners .owl-item li{
		background-color: #fff;
		height: auto;
		padding: 20px;
		border: 1px solid #ccc;
}
.partnersList .owl-nav{
		position: absolute;
		left: 0;
		right: 0;
		top: 35%;
}
.partnersList .owl-nav .owl-prev{
		width: 30px;
		height: 30px;
		background: #ececec !important;
		margin: 0 0 0 0;
		position: absolute;
		left: -48px;
		top: 0;
		border-radius: 50%;
}
.partnersList .owl-nav .owl-next{
		width: 30px;
		height: 30px;
		background: #ececec !important;
		margin: 0 0 0 0;
		position: absolute;
		right: -48px;
		top: 0;
		border-radius: 50%;
}
.home .content-side ul{
		padding: 0;
		margin: 0;
		list-style-type: none;
		max-width: 600px;
}
.home .content-side ul li{
		display: block;
		font-size: 18px;
		line-height: 23px;
		color: #282828;
		border-bottom: 1px solid #ccc;
		padding: 18px 0;
		display: flex;
		column-gap: 10px;
}
.home .content-side ul li i{
		color: #65877e;
		margin: 4px 0 0 0;
}
.home .content-side ul li:last-child{
		border-bottom: none;
}
/* =====contact us page design starts here===== */
.contactPage .content p {
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 500;
}
.contactPage .icon i {
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 20px;
	border: 1px solid #561209;
	background: #561209;
	color: #fff;
	border-radius: 50%;
}
.contactPage .icon-wrap {
	display: flex;
	align-items: center;
	column-gap: 18px;
	margin-bottom: 30px;
}
.contactPage .icon-content {
	font: 400 17px 'Open Sans', sans-serif;
	line-height: normal;
	line-height: 22px;
	color: #282828;
	display: block;
	max-width: 300px;
}
.contactPage .icon-content span {
	display: block;
	font-weight: 500;
	font-size: 17px;
	line-height: 30px;
	color: #000;
}
.contact-us-form.partnerPage.contactPage .form {
	max-width: 1020px;
	padding: 0px 32px 0px 32px;
	margin: 0 auto;
	padding: 33px;
	box-shadow: 0 0 15px #ccc;
}
.contact-us-form form span.wpcf7-not-valid-tip {
	font-size: 13px;
	color: red;
	line-height: 21px;
}
.contact-us-form .wpcf7 form .wpcf7-response-output {
	border: none;
	padding: 0;
	color: red;
	margin: 20px 0 10px 0;
}
.wpcf7 form.sent .wpcf7-response-output {
	color: #46b450;
}
.mapsection{
	padding-bottom: 70px;
}
/* =====contact us page design ends here===== */
/* =====floating btn page design starts here===== */
.login-btn {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 99;
	transform: rotate(270deg);
	color: #fff;
	/* z-index: 99; */
	margin: 0 -37px 0 0;
}
.site-header .menu li.login-class{
	border: 1px solid #fff;
	border-radius: 50px;
	background: #fff;
	padding: 4px 25px;
}
.site-header .menu li.login-class a{
	color: #000;
}
.login-btn a {
	font-size: 16px;
	color: #111111;
	font-weight: 700;
	text-transform: capitalize;
	height: 41px;
	display: inline-block;
	line-height: 42px;
	padding: 0 33px;
	border: 1px solid #d7e022;
	border-radius: 50px;
	background: #d7e022;
	outline: none;
	box-shadow: none;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	/* padding: 10px 20px; */
	border-radius: 10px 10px 0px 0;
}
.login-btn a:hover {
	border: 1px solid #111111;
	color: #fff;
	background: #111111;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}
/* =====floating btn page design ends here===== */
/* =====blog  page design starts here===== */
.page_bottom_details.insight-page-bottom {
	padding: 0 0 15px 0;
}
.insight-page-bottom .blog-wrap{
    box-shadow: 0 0 15px 0 #ccc;
}
.insight-page-bottom .content-wrap {
	padding: 20px 25px 20px 25px;
}
.insight-page-bottom .blog-title{
	font: 600 18px 'Open Sans', sans-serif;
	line-height: 21px;
	color: #121212;
	/* padding: 6px 0; */
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.insight-page-bottom .content {
	padding-top: 9px;
}
.insight-page-bottom .date {
	font-size: 14px;
	line-height: 19px;
	padding-bottom: 9px;
}
.insight-page-bottom .content p {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 0;
}
.insight-page-bottom .btn-wrap {
	margin-top: 15px;
}
.press-us-page.insight-page-bottom figure.icon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.press-us-page.insight-page-bottom{
	padding-bottom: 70px;
}
/* =====blog  page design ends here===== */
/* =====blog details page design starts here===== */
.blog-single .blog-img {
	position: relative;
	padding-top: 35%;
}
.blog-single .blog-img img{
	position: absolute;
	top: 0;
	left:0;
	width:100%;
	height: 100%;
	object-fit: cover;
}
.blog-single {
	position: relative;
	padding: 0 0 70px 0;
}
.blog-single .blog-text {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translate(0, -50%);
	z-index: 3;
	text-align: center;
}
.blog-single .entry-content{
	padding-top: 40px;
}
.blog-single .entry-content p {
	font-size: 15px;
	line-height: 21px;
}
.blog-single .blog-img::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(11, 34, 69, 0.35);
	z-index: 2;
}
.blog-single .entry-title {
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	line-height: 36px;
	margin-bottom: 15px;
}
.blog-single .date {
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 9px;
}
/* =====blog details page design ends here===== */
/* ======404 page design starts here===== */
.error-404{
	padding: 90px 0;
}
.error-404 .emoji_wrap{
	text-align: center;
}
.emoji{
	position: relative;
	display: inline-block;
}
.emoji span {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 110px;
	line-height: 120px;
	color: #121212;
}
.emoji img {
	width: 130px;
	height: 130px;
	line-height: 131px;
	object-fit: cover;
	position: relative;
	top: -7px;
}
.emoji_wrap .content .title {
	font-family: 'Open Sans', sans-serif;
	font-weight: 500;
	font-size: 18px;
	line-height: 33px;
	color: #121212;
	padding-bottom: 14px;
}
.emoji_wrap .content a:hover{
  background-color: #000;
  color:#fff;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
}
.drop {
    position: relative;
    display: inline-block;
    vertical-align: top;
}
.drop::before, .drop::after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 0px;
	height: 0px;
	margin: auto;
	top: 15px;
	bottom: 0;
	left: 30px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background-color: #ffffff;
	box-shadow: 0px 0px 5px #d3d3d3;
	border-radius: 50% 1px 50% 50%;
	-webkit-animation: drip 1s linear infinite;
	animation: drip 1s linear infinite;
}
.drop::after {
    left: auto;
    right: 30px;
}
@-webkit-keyframes drip {
    0% {
        width: 0px;
        height: 0px;
        top: -50px;
    }

    50% {
        width: 20px;
        height: 20px;
        top: -100px;
    }

    100% {
        width: 20px;
        height: 20px;
        top: 10px;
    }
}

@keyframes drip {
    0% {
        width: 0px;
        height: 0px;
        top: -50px;
    }

    50% {
        width: 20px;
        height: 20px;
        top: -100px;
    }

    100% {
        width: 20px;
        height: 20px;
        top: 0px;
    }
}

.drop::before, .drop::after {
    width: 12px;
    height: 12px;
    -webkit-animation: vertical 4737ms cubic-bezier(0.545, 0.08, 0.52, 0.975) infinite;
    animation: vertical 4737ms cubic-bezier(0.545, 0.08, 0.52, 0.975) infinite;
}

@-webkit-keyframes vertical {
    0% {
        transform: translateY(0px) scale(0.5) rotate(-45deg);
    }

    18% {
        transform: translateY(0px) scale(1.1) rotate(-45deg);
    }

    35% {
        transform: translateY(0px) scale(1) rotate(-45deg);
    }

    100% {
        transform: translateY(100px) scale(0) rotate(-45deg);
    }
}

@keyframes vertical {
    0% {
        transform: translateY(0px) scale(0.5) rotate(-45deg);
    }

    18% {
        transform: translateY(0px) scale(1.1) rotate(-45deg);
    }

    35% {
        transform: translateY(0px) scale(1) rotate(-45deg);
    }

    100% {
        transform: translateY(100px) scale(0) rotate(-45deg);
    }
}
/* ======404 page design ends here===== */
.processSection p a {
	color: #784033;
	text-decoration: underline;
}
.footerSection ul li {
	list-style: none;
	visibility: visible !important;
}
/*RESPONSIVE MENU*/

.responsive_btn {
    display: none;
    cursor: pointer;
    text-align: center;
    width: 40px;
    height: 40px;
    margin: -2px 0;
    float: right;
    position: relative;
    z-index: 20;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    background: #000;
}
.responsive_btn span {display: block; height: 2px; width: 20px; position: relative; top: 50%; margin: -1px auto;}
.responsive_btn span:before,.responsive_btn span:after {content: ""; display: inline-block; height: 100%; width: 100%; position: absolute; left: 0;}
.responsive_btn span:before {top: -6px;}
.responsive_btn span:after {bottom: -6px;}
.responsive_btn span,.responsive_btn span:before,.responsive_btn span:after {
    background: #fff;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.responsive_btn:hover span, .responsive_btn:hover span:before, .responsive_btn:hover span:after {background: #014baf;}

.responsive_nav {
	display: block;
	position: fixed;
	left: -280px;
	top: 0;
	bottom: 0;
	width: 280px;
	min-height: 100%;
	z-index: 200;
	background: #121212;
	-moz-transition: all 300ms ease-in-out 0s;
	-webkit-transition: all 300ms ease-in-out 0s;
	transition: all 300ms ease-in-out 0s;
}
.responsive_nav ul {margin: 0; padding: 0; text-align: left;}
.responsive_nav ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 20px;
    color: #fff;
}
.responsive_nav ul li:first-child {border-top: none;}
.responsive_nav ul li:after{display: none;}
.responsive_nav ul li > a {display: block; padding: 12px 10px 8px; color: inherit; position: relative;}
.responsive_nav ul li a:hover,.responsive_nav ul li a:focus,.responsive_nav ul li.active > a{color: #fff; background: #383431;}
.responsive_nav ul ul {padding: 0 0 15px 15px;}
.responsive_nav ul .sub-menu,.responsive_nav ul li a i {display: none;}
.responsive_nav .subarrow {display: block; pointer-events: inherit; width: 30px; height: 40px; line-height: 40px !important; right: 0;}
.responsive_nav ul .sub-menu .container {width: 100%; padding: 0;}
.bodyOverlay {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 200;
	transform: none;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 500ms ease 0s;
	transition: all 500ms ease 0s;
}
.responsive_nav li {
	border-bottom: 1px solid #fff;
	list-style: none;
}
.responsive_nav li:last-child{
	border-bottom: none;
}
html.responsive,.responsive body {overflow-y: hidden;}
.responsive .wrapper {-webkit-transform: translate(-280px, 0) !important; transform: translate(-280px, 0) !important;}
.responsive .bodyOverlay {opacity: 1; visibility: visible;}
.responsive .responsive_nav {left: 0;}
.responsive .responsive_btn {pointer-events: none;}
.responsive .responsive_btn span {-webkit-transform: rotate(45deg); transform: rotate(45deg);}
.responsive .responsive_btn span:after {-webkit-transform: rotate(270deg); transform: rotate(270deg); top: 0;}
.responsive .responsive_btn span:before {opacity: 0;}
.responsive_nav .opened > .subarrow {-webkit-transform: rotate(180deg); transform: rotate(180deg);}
.responsive_nav .mCSB_outside + .mCSB_scrollTools{right: 0;}
.responsive .responsive_nav .mCSB_outside + .mCSB_scrollTools{right: -4px;}
/*MENU END*/

@media only screen and (max-width:768px){
	.partnersList .owl-nav .owl-prev{
		background: #f0f0f0 !important;
		left: 2px;
	}
	.partnersList .owl-nav .owl-next{
		background: #f0f0f0 !important;
		right: 0;
	}

}


