@charset "UTF-8";



* {
	margin: 0;
	padding: 0
}

:root {
	--bodycolor: #fff;
	--primary: #005779;
	--secondary: #479D2C;
	--blue: #007AAA;
	--darkblue: #00364B;
	--white: #fff;
	--text: #5B5B5B;
	--black: #000;
	--ftrbg: #3C3C3C;
	--lightbgcolor: #F6F6F6;
	--lightbg: #ECF6FA;
	--lightblue: #F8FAFB;
	--lightGray: #9B9B9B;
	--menu-gradient: linear-gradient(180deg, #00D2FF 0%, #0080B8 100%);
	--slider: linear-gradient(0deg, rgba(0, 55, 162, 0.2), rgba(0, 55, 162, 0.2));	

	--h1: 34px;
	--h2: 60px;
	--font70: 70px;
	--font59: 59px;
	--font43: 43px;
	--font39: 39px;
	--font36: 36px;
    --font32: 32px;
    --font28: 28px;
    --font24: 24px;
	--font20: 20px;
	--font18: 18px;
	--font17: 17px;
	--font16: 16px;
	--font15: 15px;
	--font14: 14px;
	--font13: 13px;

	--weight200: 200;
	--weight300: 300;
	--weight400: 400;
	--weight500: 500;
	--weight600: 600;
	--weight700: 700;
	--weight800: 800;

	--body-font: 'Noto Sans Display', sans-serif;
	--title-font: 'soleto', sans-serif;
}



img{
image-rendering: -moz-crisp-edges;         /* Firefox */
image-rendering:   -o-crisp-edges;         /* Opera */
image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
}



h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
	font-family: var(--title-font);
}

body {
    color: var(--text);
    font-size: var(--font18);
    font-family: var(--body-font);
    overflow-x: hidden;
    background-color: var(--bodycolor);
	scroll-behavior: smooth;
}

a:focus,
a:active,
button:focus,
button:active {
    outline: 0;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

button::-moz-focus-inner {
    outline: 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

::selection {
    color: var(--white);
    background: var(--primary);
}

::-moz-selection {
    color: var(--white);
    background: var(--primary);
}

.clearfix {
    clear: both;
}

:focus {
	outline: -webkit-focus-ring-color auto 0;
}

a,
a:hover,
a:focus,
a:visited {
	outline: 0;
	text-decoration: none;
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
	-ms-transition: all .4s linear;
	transition: all .4s linear;
}


/*------------------ header css ------------------*/

header {
	position: absolute;
    width: 100%;
    z-index: 999;
    top: 0;
}
.logo {
	width: 190px;
	margin-left: calc(7% - 25px);
}
.rightnav, .topwrap {
	display: flex; align-items: center;
}

.topwrap {
	justify-content: space-between;
	align-items: center;
	padding: 15px 25px 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
}

/*.rightnav ul {
	margin-right: 20px;
}*/

.rightnav ul li {
	display: inline-block;
}

.rightnav ul li ul li{display: block;}

.rightnav ul li a {
	font-size: var(--font15);
	line-height: 1.1;
	font-weight: var(--weight500);
	letter-spacing: -0.01em;
	color: var(--white);
	padding: 0 16px;
	display: block;
}

.rightnav > ul.bottomnav li a {padding: 5px 14px;}
.rightnav ul li a:hover {color: #edeeef;}
.rightnav ul.topnav {display: flex; align-items: center;justify-content: flex-end; margin: 8px 0 12px;}
.rightnav ul.topnav li:first-child a {
	border-right: 1px solid var(--white);
	padding-right: 16px;
}
.headblock .rightnav ul li a, .headblock .rightnav .icon-button i {	color: var(--black);}
.headblock .rightnav ul li a:hover {color: #0084bb;}
.headblock .rightnav ul.topnav li:first-child a {border-right: 1px solid var(--black);}
.button_container {
  position: relative;
  top: 0;
  right: 0;
  height: 48px;
  width: 48px;
  cursor: pointer;
  z-index: 100;
  transition: opacity .25s ease;
	background: var(--menu-gradient);
	border-radius: 50%;
	text-align: center;
}
.button_container.active .top {
  transform: translateY(4px) translateX(0) rotate(45deg);
  background: #FFF;
}
.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}
.button_container.active .bottom {
  transform: translateY(-6px) translateX(0) rotate(-45deg);
  background: #FFF;
}
.button_container span {
  background: #fff;
  border: none;
  height: 2px;
  width: 18px;
  position: absolute;
  top: 6px;
  left: 0;
	right: 0;
  transition: all .35s ease;
  cursor: pointer;
	margin: 12px auto;
}

.button_container span:nth-of-type(2) { top: 11px;}

.button_container span:nth-of-type(3) { top: 16px;}

.overlay {
  position: fixed;
  background: #005779;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
	z-index: 1;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.overlay.open .rightnav ul li a {
	color: var(--white);
}

.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
}
.overlay-menu {font-family: var(--body-font);}
.mainnav li, .subnav li {display: block;}
.mainnav li a {
	font-weight: var(--weight700);
	font-size: 24px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--white);
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid #00C938;
}
.overlay-menu h4 {
	font-weight: var(--weight700);
	font-size: 24px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--white);
	padding: 28px 0 18px;
	font-family: var(--body-font);
}
.overlay-menu h4 a{color: #fff;}
.subnav li a {
	font-weight: var(--weight300);
	font-size: var(--font18);
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--white);
	display: block;
	padding: 8px 0;
}
.borderbtm {
	padding-bottom: 50px;
	border-bottom: 1px solid #00C938;
}
.topsocialnav {
	position: absolute;
	bottom: 40px;
	right: 50px;
}

/*.overlay ul { 
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}

.overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 4);
  min-height: 50px;
  position: relative;
  opacity: 0;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
}

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}*/

/*

.overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  transition: .35s;
}

*/



@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {

    opacity: 1;

    left: 0;

  }

}





#site-header {

    position: fixed;

    height: 91px;

    top: 0;

    width: 100%;

    z-index: 100;

    transition: all .3s ease;

}

#site-header.hide {

    top: -112px;

}

#site-header.sticky {height: 80px;}

#site-header.sticky .topwrap {padding: 9px 25px 0;     transition: all .3s ease;}

.mob-toggle{display: none;}

.dropdown-toggle::after {

    color: #c7c6c6;

    margin-left: 0.55em;

    vertical-align: 0.105em;

    border-top: 0.43em solid;

    border-right: 0.37em solid transparent;

    border-left: 0.37em solid transparent;

}

.headblock .dropdown-toggle::after{color: var(--blue);}

header .rightnav .dropdown-menu {

    margin: 0 0px 0;

    padding: 14px 0;

    text-align: left;

    list-style: none;

    background-color: transparent;

    border: 0;

    border-radius: 0px;

   width: 830px;

    left: -600px;

   /* -webkit-box-shadow: 0px 4px 25px rgb(29 48 84 / 15%);

    -moz-box-shadow: 0px 4px 25px rgba(29, 48, 84, 0.15);

    -o-box-shadow: 0px 4px 25px rgba(29, 48, 84, 0.15);

    -ms-box-shadow: 0px 4px 25px rgba(29, 48, 84, 0.15);

    box-shadow: 0px 4px 25px rgb(29 48 84 / 15%);*/

    z-index: 999;

}

.dropdown-menu-innerwrap{

	padding: 30px;

	display: flex;

	justify-content: space-between;

}

.dropmenu-col:first-child {width: 25%;}

.dropmenu-col:nth-child(2) {width: 35%;}

.dropmenu-col {width: 30%;}

.dropmenu-col h4, .rightnav .dropmenu-col h4 a{

	font-size: 18px !important;

	padding: 0!important;

	margin-bottom: 5px;

	font-weight: 600;

}

.rightnav .dropmenu-col ul + h4{margin-top: 20px;}

.rightnav ul li ul li a {

    padding: 8px 0;

}

.desktop-nav{text-align: right;}

header.sticky{

	background-color: #fff;	

	padding-bottom: 10px; /* 20px*/

	box-shadow: 1px 3px 5px rgb(0 0 0 / 7%);

}

header.dropmenuon .rightnav ul li a{color:var(--black);}

header.sticky .rightnav ul li a, header.sticky .icon-button i, header.dropmenuon .icon-button i{color: var(--black);}

header.sticky .icon-button:hover i, .headblock .rightnav .icon-button:hover i{color: #fff;}

header#site-header.dropmenuon{background-color: #fff; height: 360px; box-shadow: 1px 3px 5px rgb(0 0 0 / 7%);}

header#site-header .rightnav ul li a:hover {color: #0084bb;}





header#site-header.dropmenuon.smldropmenu{ height: 200px;}
header .rightnav .smdrop .dropdown-menu{width: 300px; left: -15px;}
header .rightnav .smdrop .dropmenu-col{width: 100%;}
.moblnav { display: none;}

/*------------------ main css ------------------*/

.container {
	max-width: 86%;
    padding: 0;
}
.profile-panel .container {
	padding: 0 15px;
}
.widthcontainer {
	margin: 0 0 0 auto;
	max-width: 93%;
}
.page-contentwrap {
	padding: 100px 0;
}
.heroslider {
	position: relative;
}
.slide {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
}

.slide:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #082331;
    z-index: -1;
}

.slide1 {background-image: url(../images/page-banners/slider-img-1-new.jpg); background-position: 19% 50%;}
.slide2 {background-image: url(../images/page-banners/slider-img-2.jpg); background-position: 80% 50%;}
.slide3 {background-image: url(../images/page-banners/slider-img-3.jpg); background-position: 37% 50%;}
.slide4 {background-image: url(../images/page-banners/slider-img-4.jpg); background-position: 70% 50%;}
.slide5 {background-image: url(../images/page-banners/slider-img-5.jpg); background-position: 60% 50%;}

.sliderdes {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: var(--white);
	z-index: 3;
}

.slide1 .sliderdes{left: 0; right: 0;}

.sliderdes h3 {
	font-size: 160px;
	line-height: 129px;
   /* font-weight: 600;*/
    opacity: 0.3;
}

.sliderdes h2 {
	font-size: 38px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--white);
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
	font-weight: var(--weight200);
	font-style: italic;
}

.sliderdes h2 span {
	font-size: var(--font70);
	font-weight: var(--weight700);
}

.sectitle {
	font-size: var(--font39);
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--blue);
	font-weight: var(--weight300);
	padding-bottom: 50px;
}

.sectitle span {
	font-weight: var(--weight700);
	display: block;
}

.intro-panel {
	padding: 100px 0 120px;	
}

.introblock h2 {
	color: var(--primary);
	font-size: var(--h2);
	line-height: 1.1;
	font-weight: var(--weight300);
	letter-spacing: -0.04em;
	margin-bottom: 35px;
}
.introblock h2 span {
	color: var(--secondary);
	font-style: italic;
}
.introblock p {
	color: var(--text);
	font-size: var(--font20);
	line-height: 1.5;
	font-weight: var(--weight400);
	margin-bottom: 35px;
}
.facts-panel .container {
	background-color: var(--lightbgcolor);
	padding: 80px 65px;
}
.factswrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.factscol:first-child, .factscol:nth-child(2), .factscol:nth-child(3) {
	padding-top: 0;
}
.factscol:nth-child(7), .factscol:nth-child(8), .factscol:nth-child(9) {
	border-bottom: 0;
}
.factscol {
	width: 30%;
	padding: 44px 0;
	border-bottom: 1px solid #AECFDC;
}
.factscol img {
	width: 60px;
	margin-bottom: 18px;
}
.factscol h4 {
	font-size: 24px;
	line-height: 1.1;
	font-weight: var(--weight700);
	color: var(--primary);
	letter-spacing: -0.025em;
	padding-bottom: 12px;

}
.factscol p {
	font-size: var(--font18);
	line-height: 1.4;
	font-weight: var(--weight400);
	color: #005F84;
	margin: 0;
}
.profile-panel {
/*	padding: 0 0 90px;*/
	position: relative;
}

/*.profile-panel:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 45%;
	background-color: var(--lightbg);
}*/

.proimg {
	background: linear-gradient(146.33deg, #0079A8 -3.71%, #04435C 67.5%);
	padding-left: 0;
	display: flex;
    justify-content: left;
    align-items: flex-end;
}
.proimg img {
	width: 110%;
}
.prodes {
	background-color: var(--darkblue);
	color: var(--white);
	padding: 80px 120px 90px;
}
.prodes h4 {
	font-size: var(--font15);
	line-height: 1;
	letter-spacing: 0.005em;
	text-transform: uppercase;
	font-weight: var(--weight400);
	margin-left: -60px;
    margin-bottom: 70px;
	position: relative;
}
.prodes h4:before {
	content: "";
	position: absolute;
	left: -96px;
    top: 4px;
    width: 75px;
    height: 1px;
	background-color: #fff;
}
.desbox p {
	font-size: var(--font18);
	line-height: 1.6;
	font-weight: var(--weight600);
	letter-spacing: -0.03em;
	display: flex;
	margin-bottom: 35px;
}
.desbox p span {
	width: 42px;
	margin-right: 30px;
}
.defaultbtn {
	border: solid 1px transparent;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(146.33deg, #2DCA7F 0%, #00B1D8 54.17%, #0079A8 100%);
	background-origin: border-box;
	background-clip: content-box, border-box;
	box-shadow: 2px 1000px 1px #fff inset;
	border-radius: 28px;
	font-weight: var(--weight600);
	font-size: var(--font16);
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--blue);
	padding: 14px 50px 14px 20px;
	display: inline-block;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease;
}
.defaultbtn:after {
	position: absolute;
	content: "";
	right: -45px;
    top: 20px;
	background-image: url(../images/gradient-arrow.png);
	width: 75px;
	height: 8px;
	z-index: 2;
    background-position: center;
    background-size: cover;
	transition: all 0.4s linear;
}

.defaultbtn:hover, .products-panel .defaultbtn:hover, .facts-panel .defaultbtn:hover {
	color: #fff;
	box-shadow: 2px 1000px 1px transparent inset;
}
.defaultbtn:hover:after, .whitebtn:hover:after {
	right: -55px;
} 
.products-panel .defaultbtn {
	box-shadow: 2px 1000px 1px #ecf6fa inset;
}
.facts-panel .defaultbtn {
    box-shadow: 2px 1000px 1px #f6f6f6 inset;
}
.desbox .whitebtn {
	border: 1px solid #FFFFFF;
	border-radius: 28px;
	font-weight: var(--weight600);
	font-size: var(--font16);
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--white);
	padding: 14px 50px 14px 20px;
	display: inline-block;
	margin-left: 70px;
	position: relative;
}
.whitebtn:after {
	position: absolute;
	content: "";
	right: -45px;
    top: 20px;
	background-image: url(../images/white-arrow.png);
	width: 75px;
	height: 8px;
	z-index: 2;
    background-position: center;
    background-size: cover;
	transition: all 0.4s linear;
}
.whitebtn:hover {
	color: #14ade9;
}
.prodesftr {
	margin-left: -175px;/*-204px*/
    margin-top: -30px;
}
.prodesftr h3 {
	font-weight: var(--weight200);
	font-size: 42px;
	line-height: 1;
	letter-spacing: -0.03em;
	color: #FFFFFF;
	margin-bottom: 10px;
}
.prodesftr h3 span {
	font-weight: var(--weight600);
	display: block;
}
.prodesftr h5 {
	font-size: var(--font15);
	line-height: 1;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	font-weight: var(--weight400);
	padding-left: 112px;
	position: relative;
	color: #fff;
}

.prodes h5:before, #directorthought .prodesftr h5:before {

	content: "";

	position: absolute;

	left: 4px;

    top: 4px;

    width: 85px;

    height: 1px;

	background-color: #fff;

}



.products-panel {

	padding: 140px 0 80px;

	background-color: var(--lightbg);

}

.products-panel .sectitle span {

	display: inline;

}

.productcol {

	margin-bottom: 40px;

	

}

.productimg {

	overflow: hidden;

	border-radius: 10px;

	-webkit-transition: all 0.4s linear;

	-moz-transition: all 0.4s linear;

	-o-transition: all 0.4s linear;

	-ms-transition: all 0.4s linear;

	transition: all 0.4s linear;

}

.productcol img {

	border-radius: 10px;

	-webkit-transition: all 0.4s linear;

	-moz-transition: all 0.4s linear;

	-o-transition: all 0.4s linear;

	-ms-transition: all 0.4s linear;

	transition: all 0.4s linear;

}

.productcol:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.productcol h4 {
	font-size: 24px;
	line-height: 1.1;
	color: var(--black);
	font-weight: var(--weight700);
	padding-top: 17px;
	letter-spacing: -0.01em;

}

.testimonial-panel {
	padding: 100px 0;
	overflow: hidden;
}
.testimonial-two-panel .container, .testimonial-video-panel .container{
	padding: 100px 0;
	border-top: 1px solid #E5E5E5;
}
.testislider.owl-carousel .owl-stage, .testilogoslider.owl-carousel .owl-stage {
	display: flex;
	margin-left: -30px;
}
.testislider.owl-carousel .owl-item, .tm-block {
	background: #F6F6F6;
    border-radius: 10px;
	padding: 30px 30px 80px;
}
.tm-block{
	padding: 45px 30px 80px;
}
.slidecol h4, .tm-block h4 {
	font-size: 22px;
	line-height: 1.1;
	color: var(--black);
	font-weight: var(--weight700);
	padding-bottom: 22px;
}
.slidecol p, .tm-block p {
	font-size: var(--font16);
	line-height: 1.5;
	color: #464646;
	font-weight: var(--weight400);
	padding-bottom: 20px;
	margin-bottom: 0;
}

.slideftr {
	/*display: flex;
	justify-content: flex-end;
	align-items: end;*/
	position: absolute;
    right: 30px;
    bottom: 30px;
}

.slideftr a {

	color: #0093D3;

	font-size: var(--font14);

	line-height: 1; 

	font-weight: var(--weight400);

	display: flex;

    align-items: center;

}

.slideftr a img {

	width: 16px !important;

	margin-left: 8px;

	height: 16px !important;

}

.slideftr.lg-img img {

    height: 74px !important;

    width: auto !important;

}

.slideftr.sm-img img {

	 height: 50px !important;

    width: auto !important;

}

.testislider.owl-theme .owl-nav, .testilogoslider.owl-theme .owl-nav {

    margin-top: 30px;

    margin-left: 0px;

    text-align: left;

}



.testislider h5, .tm-block h5{

	font-size: 15px;

    font-weight: 600;

	margin-bottom: 40px;

}

.testislider h5 span, .tm-block h5 span{

	   display: block;

    font-weight: 500;

}



.tm-block h4 {

	color: var(--blue);

}

.tm-logo-wrapper {

    display: grid;

    grid-template-columns: calc(25% - 15px) calc(25% - 15px) calc(25% - 15px) calc(25% - 15px);

    grid-column-gap: 20px;

    grid-row-gap: 20px;

    text-align: center;

}

.tm-logo-box {

   /* border: 1px solid #eee;*/

    border-radius: 10px;

    border: solid 1px transparent;

    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(146.33deg, #2DCA7F 0%, #00B1D8 54.17%, #0079A8 100%);

    background-origin: border-box;

    background-clip: content-box, border-box;

    box-shadow: 2px 1000px 1px #fff inset;

}

.tm-logo-box img{

	max-width: 200px;

	padding: 30px 0;

}

.testimonial-logo h4 {

    font-size: 14px;

    text-align: center;

    /*border-top: 1px solid #eee;*/

    padding: 14px 10px 20px;

}



.blog-panel {

	padding: 114px 0 125px;

	border-top: 1px solid #E5E5E5;

}

.postimg {

	margin-bottom: 22px;

	border-radius: 8px;

	overflow: hidden;

}

.blogpost h4 a, .blogpost h4 {

	font-size: var(--font18);

	line-height: 1.1;

	color: #005779;

	font-weight: var(--weight700);

	padding-bottom: 10px;

	display: inline-block;

}

.blogpost h5 {

	font-size: var(--font14);

	line-height: 1.1;

	color: var(--secondary);

	font-weight: var(--weight400);

	padding-bottom: 20px;

}

.blogpost p {

	font-size: var(--font16);

	line-height: 1.4;

	color: var(--text);

	font-weight: var(--weight400);

}

.postimg img {
	width: -webkit-fill-available !important;
	height: 150px;
	object-fit: cover;
	transition: all 0.4s linear;

}

.blogpost:hover .postimg img {

	transform: scale(1.1);

}

.morebtn {

	margin-top: 80px;

}

.accessories-panel {

	background: #ECF6FA;

	padding: 80px 0 90px;

}

.accessories-txt h5 {

	letter-spacing: -0.03em;

	font-size: var(--font14);

	line-height: 1.4;

	color: var(--black);

	margin-bottom: 30px;

}

.accessories-txt ol { 

    counter-reset: item;

    list-style-type: none;

}

.accessories-txt ol li {

	border-bottom: 0.5px solid #AECFDC;

	padding: 14px 0;

	position: relative;

	font-size: 24px;

	line-height: 1.2;

	letter-spacing: -0.03em;

	color: var(--black);

	font-weight: var(--weight300);

	display: block;

}



.accessories-txt li:before { 

    content: counter(item, decimal-leading-zero) " "; 

    counter-increment: item;

	font-weight: var(--weight700);

	font-size: 24px;

	line-height: 1;

	letter-spacing: -0.03em;

	margin-right: 20px;

	color: var(--blue);

}

.accessories-txt li:last-child {

	border-bottom: 0;

}

.contentright {

	padding: 95px 0 0;

}

.contentright .sectitle {

	padding-bottom: 0;

}

.contentright h5 {

	font-size: 24px;

line-height: 1.1;

letter-spacing: -0.03em;

color: var(--blue);

	font-weight: var(--weight300);

	padding-bottom: 20px;

}

.contentright p {

	font-weight: 300;

font-size: var(--font18);

line-height: 1.4;

color: var(--black);

}

.contentright .defaultbtn {

	margin-top: 25px;

}

.model-panel {

	padding: 80px 0 120px;

}







/*------------------ page css ------------------*/



.pagebanner {

	background-position: center;

	background-repeat: no-repeat;

	background-size: cover;

	height: 100vh;

	position: relative;

	background-color: #072432;

	/*background-color: #c6ced1;*/

}



.flexseries {

	background-image: url(../images/product-banner/product-banner-flex.jpg);

}

.basicesu {

	background-image: url(../images/page-banners/basic-esu.jpg); background-position: 70% 100% !important;

}



.aboutus-banner, .contact-banner, .oembanner, .technologybanner, .laparoscopybanner, .or-banner, .careers-banner, .testimonialsbaner, .basicesu {

	height: 750px;

}

.aboutus-banner {

	background-image: url(../images/page-banners/about-us-banner.jpg); background-position: 60% 100% !important;

}

.contact-banner {

	background-image: url(../images/page-banners/contact-us-banner.jpg); background-position: 80% 100% !important;

}

.oembanner {

	background-image: url(../images/page-banners/oem-banner.jpg); background-position: 30% 100% !important;

}

.technologybanner {

	background-image: url(../images/page-banners/technology-banner.jpg); background-position: 50% 100% !important;

}

.laparoscopybanner {

	background-image: url(../images/page-banners/laparoscopy-banner.jpg); background-position: 70% 100% !important;

}

.or-banner {

	background-image: url(../images/page-banners/or-banner.jpg);

	background-position: 45% 50% !important;

}

.careers-banner {

	background-image: url(../images/page-banners/careers-banner.jpg);

	background-position: 65% 50% !important;

}

.testimonialsbaner {

	background-image: url(../images/page-banners/testimonials-banner.jpg);

	background-position: 65% 50% !important;

}

.integration-banner {

	background-image: url(../images/page-banners/integration-banner.jpg);

	background-position: 85% 50% !important;

	background-size: cover !important;

}



.bannerdes {

	position: absolute;

	top: 50%;

	transform: translateY(-50%);

	color: var(--white);

	z-index: 3;

}

.blackdes {

	color: var(--black);

}

.bannerdes h2 {

	font-size: 55px;

	line-height: 1.1;

    font-weight: var(--weight300);

	padding-bottom: 85px;

	

}

.bannerdes h2 span {

	font-weight: var(--weight700);

}

.bannerdesbtm {

	position: absolute;

	bottom: 120px;

	color: var(--white);

	z-index: 3;

}

.bannerdesbtm h1, .bannerdes h1 {

	font-size: 64px;

	line-height: 1.1;

    font-weight: var(--weight700);

	padding-bottom: 5px;

}

.bannerdesbtm h3, .bannerdes h3 {

	font-size: 28px;

	line-height: 1.1;

    font-weight: var(--weight400);

}

.bannerdes a {

	background-color: #0093D3;

	border: 1px solid #0093D3;

	font-size: var(--font16);

	line-height: 1;

    font-weight: var(--weight300);

	color: var(--white);

	letter-spacing: -0.02em;

	padding: 14px 25px;

	margin-top: 25px;

	display: inline-block;

	border-radius: 28.5px;

}

.bannerdes a:hover {

	background-color: transparent;

	color: #0093D3;

}

.esuwrap {

	padding: 112px 0;

	border-bottom: 1px solid #E5E5E5;

}

.esu-content .sectitle {

	padding-bottom: 5px;

}

.esu-content h4 {

	font-size: 24px;

	line-height: 1.1;

    font-weight: var(--weight400);

	color: var(--blue);

	padding-bottom: 20px;

}

.esu-content p {

	font-size: var(--font18);

	line-height: 1.4;

    font-weight: var(--weight300);

	color: var(--black);

	padding-bottom: 20px;

}

.esu-content ul li {

	display: block;

}

.esu-content ul li a {

	font-size: 24px;

	line-height: 1.1;

    font-weight: var(--weight300);

	color: #0093D3;

	display: inline-block;

	padding-bottom: 25px;

}

.esu-content ul li a:hover {

	color: var(--black);

	padding-left: 5px;

}

.esu-content {

	padding-left: 80px;

}

.contentleft {

	padding-right: 80px;

	padding-left: 15px;

}

.esuwrap:last-child {

	border-bottom: 0;

}

.contentwrap {

	padding: 75px 0;

}

.contentwrap-md {

	padding: 95px 0;

}

.product-top-wrap {padding-top: 120px;}

.contentblock p {

	font-size: var(--font18);

	line-height: 1.4;

    font-weight: var(--weight300);

	color: var(--black);

	padding-bottom: 25px;

}

.contentblock h4 {

	font-size: var(--font18);

	line-height: 1.4;

    font-weight: var(--weight700);

	color: var(--blue);

	padding-bottom: 10px;

}

.contentblock h4 span {

	color: var(--black);

	font-weight: var(--weight300);

}

.contentblock ul {

	padding-bottom: 20px;

}

.contentblock ul li {

	display: block;

}

.contentblock ul li {

	font-size: var(--font18);

	line-height: 1.4;

    font-weight: var(--weight300);

	color: var(--black);

	padding: 3px 0;

}

.contentblock ul li ul {

	padding-left: 0px;

	padding-bottom: 0;

}

.contentblock ul li ul li {

	position: relative;

    padding-left: 25px;

}

.contentblock ul li ul li:before {

	position: absolute;

	content: "";

	width: 10px;

	height: 1px;

	background-color: var(--black);

    left: 0;

    top: 15px;

}

.feature-panel {

	padding: 95px 0;

}

.featurewrap {

	display: flex;

	flex-wrap: wrap;

}

.featurecol {

	width: 31%;

	background: var(--white);

	border: 1px solid #E5E5E5;

	box-sizing: border-box;

	border-radius: 14px;

	padding: 18px 25px;

	margin: 1% 1%;

	-webkit-transition: all 400ms ease;

	-moz-transition: all 400ms ease;

	-o-transition: all 400ms ease;

	-ms-transition: all 400ms ease;

	transition: all 400ms ease;

	/*display: grid;*/

}

.featurecol:hover {

	box-shadow: 0px 3px 26px -10px rgb(4 81 111 / 48%);

	border-color: transparent;

}



.featurecol h4 {

	font-size: var(--font18);

	line-height: 1.1;

    font-weight: var(--weight700);

	color: var(--blue);

	padding-bottom: 17px;

}



.featurecol p {

	font-size: var(--font18);

	line-height: 1.4;

    font-weight: var(--weight300);

	color: var(--black);

	padding-bottom: 17px;

}



.vertical-tabs {

  position: relative;

	display: flex;

	flex-wrap: wrap;

	justify-content: space-between;

}

.vertical-tabs .tabs {

	width: 41%;

	margin-top: -50px;

}

.tabs {

  position: relative;

  

}

.tabs li {

  position: relative;

  list-style: none;

}



.tabs li a {

  position: relative;

  display: block;

  width: 100%;

  

}

.tabs li.active a .fleximg:before, .tabs li:hover .fleximg:before {

  left: -100%;

}

.tabs li.active a .fleximg h4, .fleximg:hover h4 {

	color: #464646;

}

.tabs-content {

	width: 50%;

}

.tabs-content .content {

  display: none;

}

.tabs-content .content.active {

  display: block;

}

.fleximg {

	position: relative;

	overflow: hidden;

	margin-bottom: 4px;

}

.fleximg h4 {

	font-size: var(--font18);

	line-height: 1.4;

    font-weight: var(--weight700);

	color: #464646;

	letter-spacing: -0.03em;

	position: absolute;

	bottom: 22px;

	left: 26px;	

}



.tabs li a .fleximg:before {

	position: absolute;

	content: "";

	background: linear-gradient(0deg, rgba(0, 87, 121, 0.6), rgba(0, 87, 121, 0.6));

	left: 0;

	top: 0;

	width: 100%;

	height: 100%;

	transition: left 0.4s linear;

}



.fleximg h4 {

	color: var(--white);

}





.intitle span {

	display: inline;

}

.modelwrap {

	display: grid;

	grid-template-columns: 49% 23% 23%;

	column-gap: 28px;

	font-family: var(--body-font);

}

.fstcol {

	display: grid;

	grid-template-columns: 53% 47%;

}

.label_list {

	margin-top: 409px;

}

.modelimg {

	width: 100%;

	margin-bottom: 20px;

}



.modelhead {

	background-color: #AECFDC;

	border-radius: 14px 14px 0 0;

	font-size: var(--font18);

	line-height: 1.1;

    font-weight: var(--weight600);

	color: var(--black);

	padding: 12px 30px

}

.modeldes {
	background-color: #F6F6F6;
	padding: 14px 33px 36px;
	margin-bottom: 26px;
}

.modeldes h4 {
	font-size: 24px;
	line-height: 1.1;
    font-weight: var(--weight700);
	color: var(--black);
	font-family: var(--body-font);
	padding-bottom: 25px;
}

.modeldes ul li, .label_list ul li {
	font-size: 21px;
    line-height: 1;
    font-weight: var(--weight300);
    color: var(--black);
    padding: 21px 0;
	display: block;
}

.label_list ul li {
	font-size: var(--font15);
    line-height: 1;
    padding: 24px 0;
	border-bottom: 1px solid #E5E5E5;
	font-weight: var(--weight600);
}



.modelcol p {

	font-size: var(--font18);

	line-height: 1.4;

	color: var(--black);

	padding-bottom: 15px;

	border-bottom: 1px solid #E5E5E5;

	font-weight: var(--weight300);

}

.modelcol p:last-child, .label_list ul li:last-child {

	border-bottom: 0;

}

.modelcol h5 { display: none;}



.note {

	font-size: var(--font18);

    line-height: 1.2;

    padding: 14px 20px;

    border: 1px solid #E5E5E5;

    background-color: var(--lightbg);

    font-weight: var(--weight400);

    margin: 20px 0 40px;

}

.featurewidth {
	width: 100%;
}
.breadwrap {
	position: relative;
    background: #007aaa;
    width: max-content;
    border-radius: 5px;
    margin: -19px auto 0;
    left: 0;
    right: 0;
    padding: 0 18px;
}
.breadwrap ul {
	display: flex;
	align-items: center;
}
.breadwrap ul li {
	display: inline-block;
}

.breadwrap ul li .mobico { display: none;}

.breadwrap ul li a {
	color: var(--white);
    font-size: var(--font15);
    line-height: 1.2;
    padding: 10px 20px;
    display: block;
	font-weight: 500;
    letter-spacing: 1px;
}

.breadwrap ul span {
	color: var(--white);
    font-size: var(--font15);
	line-height: 1;
	transition: all 0.4s ease;
}

.breadwrap ul li a:hover, .breadwrap ul li a.active, .breadwrap ul li a:hover span {
    color: #75d9ff;
}

.bread-two {
	position: relative;
	display: block;
	bottom: 0;
	margin: -18px auto 0;
}



.tbmodelimg img { width: 100%;}

.tbhead {
	font-size: 24px;
	line-height: 1.1;
    font-weight: var(--weight700);
	color: var(--black);
	font-family: var(--body-font);
	padding-top: 18px;
}

.tblist td {
	padding: 18px 0;
}

.tbdes {
	background-color: #F6F6F6;
	padding: 0px 33px 10px;
	margin-bottom: 26px;
}

.tldes {
	padding: 0px 0px 10px;
}

.tbtitle {
	background-color: #AECFDC;
	border-radius: 14px 14px 0 0;
	font-size: var(--font18);
	line-height: 1.1;
    font-weight: var(--weight600);
	color: var(--black);
	padding: 12px 30px;
}

.tblist td {
	font-size: 21px;
    line-height: 1;
    font-weight: var(--weight300);
    color: var(--black);
    padding: 21px 0;
	display: block;
}

.tblables td {
	font-size: var(--font15);
    line-height: 1;
    padding: 25px 0;
	border-bottom: 1px solid #E5E5E5;
	font-weight: var(--weight600);
}

/*------------------ our facility page -----------------*/

.sechead { padding-bottom: 35px;}

.sechead h2 {

	font-size: 59px;

	line-height: 1.1;

	font-weight: var(--weight300);

	color: var(--primary);

	padding-bottom: 30px;

}

.sechead p {

	font-size: var(--font18);

	line-height: 1.4;

    font-weight: var(--weight300);

	color: var(--black);

}

.facicol, .careerscol {

	background-color: var(--lightblue);

	border-radius: 18px;

	padding: 37px 26px;

}

.facicol.col-lg-4, .tm-block.col-lg-4 {

    -ms-flex: 0 0 31.333333%;

    flex: 0 0 31.333333%;

    max-width: 31.333333%;

    margin: 1%;

}

.facicol img {

	width: 68px;

	margin-bottom: 30px;

}

.facicol h5 {

	font-size: var(--font18);

	line-height: 1;

    font-weight: var(--weight700);

	color: var(--blue);

	padding-bottom: 15px;

}

.facicol p, .frmleft p {

	font-size: var(--font16);

	line-height: 1.4;

    font-weight: var(--weight300);

	color: #464646;

}

.frmleft p {

	font-weight: var(--weight400);

}

.careerscol {

	padding: 17px 20px 26px;

}

.careerscol.col-lg-3 {

    -ms-flex: 0 0 24%;

    flex: 0 0 24%;

    max-width: 24%;

    margin: 0.5%;

}

.careerscol .date {

	font-size: 12px;

	line-height: 1;

    font-weight: var(--weight500);

	color: var(--blue);

	padding-bottom: 10px;

}

.careerscol h4 {

	font-size: 22px;

	line-height: 1;

    font-weight: var(--weight700);

	color: var(--blue);

	padding-bottom: 10px;

}

.careerscol h5, .careerspopup h5 {

	font-size: var(--font18);

	line-height: 1;

    font-weight: var(--weight500);

	color: var(--blue);

}

.careerscol h6, .careerspopup h6 {

	font-size: var(--font16);

	line-height: 1.6;

    font-weight: var(--weight600);

	color: #464646;

	margin: 15px 0 0;

}

.careerscol h6 span, .careerspopup h6 span {

	font-weight: var(--weight300);

	display: block;

}

.careerscol ul li, .careerspopup ul li {

	display: inline-block;

	background-color: #E5E8EA;

	font-size: 12px;

	line-height: 1;

    font-weight: var(--weight400);

	color: var(--black);

	padding: 6px 8px;

	border-radius: 3px;
	margin-right: 5px;

}

.careerspopup .frmleft #job_desc ol li {
	font-size: 14px;
	margin-bottom: 5px;
	line-height: 20px;
	padding: 0 0 5px;
}
.careerspopup .frmleft #job_desc ol {
	margin-left: 24px;
}
.careerspopup .frmleft #job_desc ol li ul {
	margin-top: 10px;
}
.careerspopup .frmleft #job_desc ol li ul li {
	background-color: transparent;
	line-height: 20px;
	padding: 0 0 5px 15px;
	color: #464646;
	position: relative;
}
.careerspopup .frmleft #job_desc ol li ul li:after {
	content: "";
	display: block;
	position: absolute;
	top: 7px;
	left: 0;
	width: 5px;
	height: 5px;
	background-color: #464646;
	border-radius: 100px;
}
.careerspopup .modal-content .modal-body {
    margin: 10px 0 10px 0;
    display: flex;
    flex-wrap: wrap;
}
.careerspopup .modal-content .modal-body .frmleft {
	overflow-y: scroll;
    max-height: 450px;
    padding: 0 20px 0 0;
}
.careerspopup .frmright .form-btn {
	margin-top: 30px;
}


.outline-btn {
	text-align: center;
	margin-top: 57px;
}

.outline-btn a {
	font-size: 12px;
	line-height: 1;
  font-weight: var(--weight400);
	color: #0093D3;
	border: 1px solid #0093D3;
	padding: 9px 17px;
	display: inline-block;
	text-align: center;
	border-radius: 30px;
	transition: all 0.4s ease;
}

.outline-btn a:hover {

	background-color: #0093D3;
	color: var(--white);

}

.modal-body {

	padding: 30px 40px;

	display: flex;

}

.modal-dialog {

    max-width: 950px; }

.modal-content {

	border: 0;

    border-radius: 17px;

}

.careerspopup h4 {

	font-size: 20px;

	line-height: 1;

    font-weight: var(--weight700);

	color: #464646;

	padding-bottom: 12px;

}

.close {

    position: absolute;

	top: 18px;

    right: 30px;

    font-size: 1.5rem;

    font-weight: 400;

    line-height: 1;

    color: #6C6E70;

    text-shadow: 0 0px 0 #fff;

    opacity: 1;

	z-index: 999;

}

.frmright {
	margin-left: 30px;
    width: 100%;
    max-width: 310px;
}

.frmleft {
	max-height: 420px;
    overflow-y: scroll;
    padding: 0 20px 0 0;
    max-width: calc(100% - 340px);
}

.frmgroup input {

	font-size: 14px;

	line-height: 1;

    font-weight: var(--weight400);

	color: #464646;

	padding: 20px 0;

	border: 0;

	border-bottom: 1px solid #BFBFBF;

	width: 100%;

}

.filegroup h5 {

	font-size: 14px;

	line-height: 1;

    font-weight: var(--weight400);

	color: #464646;

	margin-left: 18px;

}

.form-btn {

	font-size: 14px;

	line-height: 1;

    font-weight: var(--weight400);

	color: var(--white);

    background-color: #54AF3A;

	border: 1px solid #54AF3A;

	padding: 12px 20px;

	display: inline-block;

	text-align: center;

	border-radius: 30px;

	transition: all 0.4s ease;

	margin-top: 45px;

}

.inputfile {

	margin-top: 33px;

}

[type=file] {

  height: 0;

  overflow: hidden;

  width: 0;

}


label.upload_lable {

  background: #6C6E70;

  border: none;

  border-radius: 30px;

  color: #fff;

  cursor: pointer;

  display: inline-block;

  font-family: "PT Sans", sans-serif;

  font-size: inherit;

	font-size: 14px;

	line-height: 1;

  font-weight: var(--weight700);

  outline: none;

  padding: 12px 20px;

  position: relative;

  transition: all 0.3s;

  vertical-align: middle;

}

[type=file] + label:hover {

  background-color: var(--blue);

}



.aboutright img, .visionleft img { width: 100%;}

.aboutleft {

	padding-right: 100px;

}

.infocircle {

	background: linear-gradient(180deg, #479D2C 0%, #00658D 100%);

	border-radius: 116px;

	color: var(--white);

	width: 200px;

	height: 200px;

	display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 66px 15px;

	position: absolute;

    top: 40%;

    transform: translateY(-50%);

    left: -50px;

}

.infocircle h5 {

	font-size: 23px;

	line-height: 1;

  font-weight: var(--weight300);

	margin-bottom: 8px;

}

.infocircle h4 {

	font-size: 40px;

	line-height: 1;

  font-weight: var(--weight400);

}

.aboutright {

	background-size: cover;

	background-position: center;

	background-repeat: no-repeat;

}

.logo-narative-panel{padding: 85px 0 0;}

.logo-narative-panel img {

	height: 100%;

}

.vision-panel {
	padding: 0 0 85px 0;
}

.vicol {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 26px 10px;
	border-bottom: 1px solid #E5E5E5;
}

.vicol:nth-child(3), .vicol:last-child { border-bottom: 0;}


.viico {
	width: 85px;
}

.viico img { width: 100%;}

/*.vides { width: 80%;}*/

.vides h4 {

	font-size: 22px;

	line-height: 1;

  font-weight: var(--weight600);

	color: #0093D3;

	text-transform: uppercase;

	margin-bottom: 10px;

}

.vides p {

	font-size: var(--font18);

	line-height: 1.4;

    font-weight: var(--weight300);

	color: #464646;

	margin: 0;

}

.whywrap {

	display: flex;

	flex-wrap: wrap;

	justify-content: space-between;

	padding: 45px 15px 0;	

}

.whycol {

	width: 31%;

	border-radius: 23px;

	padding: 33px;

	position: relative;

  box-sizing: border-box;

  background: #fff;

  background-clip: padding-box;

  border: solid 1px transparent;

	font-size: var(--font18);

	line-height: 1.4;

    font-weight: var(--weight300);

	color: #464646;

	margin: 0;

}

.whycol span, .globehead p span {

	color: #479D2C;

	font-weight: var(--weight700);

}

.whycol:before {

  content: "";

  position: absolute;

  top: 0;

  right: -1px;

  bottom: 0;

  left: -1px;

  z-index: -1;

  margin: -1px;

  /* !importanté */

  border-radius: inherit;

  /* !importanté */

  background: linear-gradient(146.33deg, #2DCA7F 0%, #00B1D8 54.17%, #0079A8 100%);

}

.whyblock h3.sectitle, .journey-panel h3.sectitle {

	padding-bottom: 17px;

}

.globe-panel {

	padding: 95px 0;

}

.globehead h3.sectitle {

	padding-bottom: 5px;

}

.map {

	margin-top: 100px;

	position: relative;

	z-index: 1;

}

.map img { width: 100%;}

.mapblock { position: relative;}

.mapover-block {

	text-align: center;

	width: 182px;

	position: absolute;

	bottom: 0;

	z-index: 2;

}

.mapover-block img { width: 100%; margin: 10px 0;}

.mapover-block h4 {

	font-size: var(--font18);

	line-height: 1.3;

    font-weight: var(--weight600);

	color: var(--blue);

}

.journey-panel .container {

	/*background-color: var(--lightbgcolor);*/

	/*padding: 90px 0 90px 90px;*/

	padding: 50px 0 0px 0;

}

.journey-panel img{width: 100%;}

.timeline {

  margin: 50px 0;

  list-style-type: none;

  display: flex;

  padding: 0;

  text-align: center;

}



.timeline li {

  transition: all 200ms ease-in;

}



.timestamp {

  width: 100%;

  margin-bottom: 20px;

  padding: 0px 40px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  font-weight: 100;

}



.status {

  padding: 0px 40px;

  display: flex;

  justify-content: center;

  border-top: 4px solid #3e70ff;

  position: relative;

  transition: all 200ms ease-in;

}



.status span {

  font-weight: 600;

  padding-top: 20px;

}



.status span:before {

  content: "";

  width: 25px;

  height: 25px;

  background-color: #e8eeff;

  border-radius: 25px;

  border: 4px solid #3e70ff;

  position: absolute;

  top: -15px;

  left: calc(50% - 12px);

  transition: all 200ms ease-in;

}



.swiper-control {

  text-align: right;

}



.swiper-container {

  width: 100%;

  height: 250px;

  margin: 50px 0;

  overflow: hidden;

  padding: 0 20px 30px 20px;

}



.swiper-slide {

  width: 200px;

  text-align: center;

  font-size: 18px;

}



.swiper-slide:nth-child(2n) {

  width: 40%;

}



.swiper-slide:nth-child(3n) {

  width: 20%;

}


/*------- Team Starts --------*/

.team-panel {
    margin-top: 100px;
}

.team-panel .head {
    font-size: var(--font59);
    font-weight: 300;
    color: var(--primary);
    letter-spacing: -2.36px;
    margin-bottom: 30px;
}
.team-panel .sectitle span {
    font-weight: 500;
    color: var(--blue);
}
.team-img img {
    border-radius: 15px 15px 0 0;
}
.team-detail {
    border-top: 7px solid;
    border-image: linear-gradient(90deg, #0079A8 0%, #00B1D8 54.79%, #2DCA7F 101.14%) 1;
}
.team-detail h4 {
    font-size: var(--font24);
    font-weight: 500;
    color: var(--primary);
}
.team-detail small {
    font-size: var(--font18);
    font-weight: 500;
    color: var(--lightGray);
}
.main-head {
    padding-bottom: 40px;
}
.main-head .sectitle {
    padding-bottom: 20px;
    font-size: var(--font43);
}
.main-head small {
    color: #5B5B5B;
    font-size: var(--font36);
}

/*------- Team Ends --------*/


.map img{margin: 60px 0;}

.counter-box {

    text-align: center;

    margin: 0 0 50px;

	border: 1px solid #E5E5E5;

    box-sizing: border-box;

    border-radius: 14px;

    padding: 36px 25px 18px;

}

.counter-box h2{

	font-size: 45px;

	line-height: 1;

	font-weight: 600;

	color: var(--blue);

	    letter-spacing: -0.03em;

}

.counter-panel{

	display: flex;

	flex-wrap: wrap;

	justify-content: space-between;

	align-items: center;

}

.counter-mid-column{

	width: calc(100% - 440px);

	margin: auto;

}

.counter-column{

	max-width: 220px;

	width: 100%;

}

.core-panel{

	padding: 85px 0;

}

.core-panel .sectitle{

	padding-bottom: 17px;

}

.care-block{	

	display: flex;

	justify-content: space-between;

	padding-top: 50px;

}

.care-box{

	width: 23.5%;

    border-radius: 10px;

    min-height: 400px;

    background-color: var(--lightbg);

    padding: 20px 25px 50px;

	display: flex;

    flex-wrap: wrap;

    align-content: flex-end;

	position: relative;

	overflow: hidden;

}

.care-box:before, .care-box:after{

	content: "";

	width: 100%;

	height: 100%;

	left: 0;

	top: 0;

	position: absolute;

	z-index: 1;

	background: rgba(0, 0, 0, 0.25);

	background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 10%,  rgb(0, 37, 51, 0.75) 100%);

	transition: all 500ms linear;

	opacity: 90%;

}

.care-box:after{

	opacity: 0%;

}

.care-box:hover:after{

	opacity: 100%;

}



.care-box.commitment{background: url('../images/core-value-commitment-img.jpg') no-repeat center center; background-size: cover;}

.care-box.acountability{background: url('../images/core-value-accountability-img.jpg') no-repeat center center; background-size: cover;}

.care-box.respect{background: url('../images/core-value-respect-img.jpg') no-repeat center center; background-size: cover;}

.care-box.excellence{background: url('../images/core-value-e-img.jpg') no-repeat center center; background-size: cover;}

.care-box:last-child{margin-bottom: 0px;}

.care-box h5 {

	color: #fff;

	font-size: 18px;

	font-weight: 300;

	line-height: 1;

	position: relative;

}



.care-box p {

	color: #fff;

	margin-top: 15px;	

}

.care-box:last-child{border: 0;}

.care-heading{position: relative; z-index: 3;}

.care-box h5 span{

	display: block;	

	font-size: 26px;

	font-weight: 500;

}

.care-box h2.fst-letter{

	color: rgb(255 255 255 / 34%);

    font-size: 140px;

    line-height: 120px;

    z-index: -2;

    margin-left: -9px;

}

.care-disc{

	opacity: 0;

	overflow: hidden;

	transition: all 500ms cubic-bezier(0.25, 1, 0.5, 1);

	position: relative;

	z-index: 3;

	height: 0;

}

.care-box:hover .care-disc{

	opacity: 1;

	height: 120px;

}

.logo-narative-panel{

	display: flex;

	justify-content: center;

	flex-wrap: wrap;

	padding: 125px 0 50px;

}

.narrative-block{

	background-color: #f6f6f6;

    padding: 80px 50px 60px;

	    width: 100%;

    max-width: 480px;

    border-radius: 50%;

    height: 480px;

	display: grid;

	align-items: center;

	position: relative;

	margin: 2px;

}

/*.narrative-block, .narrative-block p{

	-webkit-transition: all 400ms linear;

	-moz-transition: all 400ms linear;

	-o-transition: all 400ms linear;

	-ms-transition: all 400ms linear;

	transition: all 400ms linear;

}*/

.narrative-block:after{

	content: "";

    position: absolute;

    left: auto;

    right: -1px;

    top: auto;

    bottom: 86px;

    width: 380px;

    height: 380px;

    border-radius: 50%;

    background-color: #fff;

    z-index: -1;

}

.narrative-block:nth-child(2):after{

	left: -1px;

    top: 79px;

    bottom: auto;

}

.narrative-block:before{

	content: "";

	position: absolute;

	left: -5px;

    right: auto;

    top: auto;

    bottom: 4px;

    width: 102%;

    height: 102%;

	border-radius: 50%;

	background-color: var(--darkblue);

	z-index: -2;

	    background: linear-gradient(87deg, #54af3a, #00a0e3);

}

.narrative-block:first-child:before{

	left: auto;

	right: -5px;

    top: 1px;

    bottom: auto;

	background: linear-gradient(87deg, #323c8d, #009846);

}

.narrative-block p{color: #000;}

.narrative-block img{width: 170px; height: auto; margin-bottom: 35px;}

.narrative-block h5{

	font-size: 24px;

    margin-bottom: 10px;

    color: var(--blue);

    letter-spacing: -0.03em;

	background: linear-gradient(180deg, #2DCA7F 0%, #00B1D8 50%, #0079A8 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

	text-transform: lowercase;

}

/*.narrative-block:hover {

    background: var(--darkblue);

}

.narrative-block:hover p{color: #fff;}*/

#directorthought.modal, .discipline-modal.modal {padding: 0 !important;}

#directorthought .modal-body, #directorthought .profile-panel, .discipline-modal .modal-body{padding: 0;}

#directorthought .modal-header, .discipline-modal .modal-header{padding: 0; border: 0;}

#directorthought .modal-content, .discipline-modal .modal-content{border-radius: 0px;}

#directorthought .modal-dialog, .discipline-modal .modal-dialog {max-width: calc(100vw - 61px);}

#directorthought.modal.fade .modal-dialog, .discipline-modal.modal.fade .modal-dialog{transform: translate(0) scale(0.8);}

#directorthought.modal.show .modal-dialog, .discipline-modal.modal.show .modal-dialog{transform: scale(1);}

#directorthought.modal, .discipline-modal.modal{overflow: hidden;}

#directorthought .profile-panel:before{display: none;}

#directorthought .prodes{padding: 80px 30px 80px 80px;}

#directorthought .desbox{ overflow-y: scroll; height: calc(100vh - 300px); padding-right: 50px;}

.discipline-modal .descontent { overflow-y: scroll; height: calc(100vh - 315px); padding-right: 50px;}

.discipline-modal#discfurtherdisciplines .descontent {height: calc(100vh - 200px);}

#directorthought .desbox p{ font-weight: 400;}

#directorthought .desbox p:not(#directorthought .desbox p:first-child){ padding-left: 72px;}

#directorthought .close{ color: #fff; text-shadow: none;}

#directorthought .prodesftr {

    margin: 0; 

    position: absolute;

    left: 37%;

    bottom: 80px;

    z-index: 999;

}



#directorthought ::-webkit-scrollbar, .discipline-modal ::-webkit-scrollbar, 
.careerspopup .modal-content .modal-body::-webkit-scrollbar, 
.careerspopup .modal-content .modal-body .frmleft::-webkit-scrollbar {width: 8px;} /* width */

#directorthought ::-webkit-scrollbar-track, .discipline-modal ::-webkit-scrollbar-track, 
.careerspopup .modal-content .modal-body::-webkit-scrollbar-track, 
.careerspopup .modal-content .modal-body .frmleft::-webkit-scrollbar-track {background: #f1f1f1;border-radius: 5px;} /* Track */

#directorthought ::-webkit-scrollbar-thumb, .discipline-modal ::-webkit-scrollbar-thumb, 
.careerspopup .modal-content .modal-body::-webkit-scrollbar-thumb, 
.careerspopup .modal-content .modal-body .frmleft::-webkit-scrollbar-thumb {background: #888; border-radius: 5px;} /* Handle */

#directorthought ::-webkit-scrollbar-thumb:hover, .discipline-modal ::-webkit-scrollbar-thumb:hover, 
.careerspopup .modal-content .modal-body::-webkit-scrollbar-thumb:hover, 
.careerspopup .modal-content .modal-body .frmleft::-webkit-scrollbar-thumb:hover  {background: #555; } /* Handle on hover */





.oem-intro{padding: 100px 0 0;}

.oem-description{
	padding: 50px 0 100px;
}

.oem-description h4{
	color: var(--blue);
	padding: 0 0 25px;
}

.oem-description ol {list-style-position: inside; margin-bottom: 40px;}

.oem-description ol li{
	font-size: var(--font18);
    line-height: 1.4;
    font-weight: var(--weight300);
    color: var(--black);padding-bottom: 6px;
}

a.contact-link {color: var(--blue); font-weight: 600;}
a.contact-link:hover {color: var(--secondary);}

.veterinary-panel {padding: 0 0 100px;}
.veterinary-panel img{width: 80%;}
.disccontent-wrap {padding: 20px 0 0 60px;}



.whatsapp-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    z-index: 99;
}

.whatsapp-link img {
    width: 100%;
}

.disc-panel {
    padding: 60px 15px 60px 35px;
}
.disc-panel img{
   width: 100%;
}

.fur-des-row{
	margin-bottom: 60px;
}

.descontent h4 {
	margin-bottom: 35px;
	color: var(--darkblue);
	font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.02em;

}

.descontent p {
	font-size: var(--font18);
	line-height: 1.6;
	font-weight: var(--weight400);
	letter-spacing: -0.03em;
	display: flex;
	margin-bottom: 25px;

}

/*------------------ contact css ------------------*/

.contact-info{
	background: var(--lightbg);
    padding: 50px 50px;
}

.contact-info h4{
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #6c6e70;
}

.contact-info h5{
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0px;
	color: #5f5f5f;
}

.contact-info p, .contact-frm-panel p {
	font-size: 16px;
	margin-bottom: 0px;
	color: #5f5f5f;
}

.contact-info p a{color: #5f5f5f;}

.contact-info p a:hover{color: var(--blue);}

/*.network-block{

	border-top: 1px solid #e5e5e5;

	border-bottom: 1px solid #e5e5e5;

	margin: 20px 0;

	padding: 20px 0;

}

.network-box-panel ul{

	list-style: none;

	padding: 10px 0 0;

	column-count: 4;

}

.network-box-panel ul li{

	font-size: 16px;

	padding: 3px 0px;

	color: #000;

	

}*/

.map-block {width: 100%; height: 100%;}

.map-block iframe{width: 100%; height: 100%; display: block;}

.contact-frm-panel{
	padding: 0 70px 0 15px;
	width: calc(100% - 556px);
}
.contact-address-panel {
    padding: 0 15px;
    width: 555px;
}
.contact-frm-container{margin: 50px auto 0;}

.contact-frm-panel h4{
	font-size: 26px;
	font-weight: 600;
	color: #000;
	margin-bottom: 10px;
}
.contact-address-panel h4 br{display: none;}
.contact-frm-panel form .row{
	margin-bottom: 35px;
}

.contact-frm-panel .form-group label, .contact-frm-panel .frmgroup label {
	display: block;
	color: #5f5f5f;
	font-size: 16px;
	margin-bottom: 0;
	font-weight: 400;
}

.contact-frm-panel .form-group input,
.contact-frm-panel .form-group select,
.contact-frm-panel .frmgroup textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid #C4C4C4;
	padding: 10px 15px 10px 0;
	min-height: 48px;
	text-align: left;
	font-size: 16px;
	line-height: 1;
	color: #a2a2a2;
	border-radius: 0;
}

.contact-frm-panel .frmgroup textarea {
	height: 120px;
	resize: vertical;
	line-height: 1.5;
	box-shadow: none;
}

.contact-frm-panel .form-group {
	margin-bottom: 0;
}

.contact-frm-panel .form-btn {
	background-color: var(--secondary);
	padding: 15px 15px;
    color: #fff;
    border: 0;
    width: 185px;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    margin-top: 35px;
    text-transform: uppercase;
	-webkit-transition: all 400ms linear;
	-moz-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	-ms-transition: all 400ms linear;
	transition: all 400ms linear;
}

.contact-frm-panel .form-btn:hover {background-color: var(--blue);}

.contact-frm-panel .form-group label, .contact-frm-panel .frmgroup label{font-weight: 600;}

.contact-frm-panel #form-success{height: 0; margin: -50px 0 50px;}

.contact-frm-panel .form-group label span{color: #d70505;}

div.error {
    color: #d70505;
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    margin-top: 4px;
    padding: 6px 3px;
    text-align: left;
}

.success-msg {
    font-size: 30px;
    text-align: center;
    font-weight: 300;
    background-color: var(--secondary);
    padding: 70px 50px;
    color: #fff;
}

/*------------------ products css ------------------*/

/*.products-name-panel{

	display: grid;

    grid-template-columns: 25% 25% 25% 25%;

    grid-gap: 10px;

}

.products-name a{

	padding: 30px 25px;

	background-color: var(--lightbg);

	height: 200px;

	-webkit-transition: all 400ms linear;

	-moz-transition: all 400ms linear;

	-o-transition: all 400ms linear;

	-ms-transition: all 400ms linear;

	transition: all 400ms linear;

	width: 100%;

	display: grid;

	border-radius: 10px;

}

.products-name h3{

	font-weight: 300;

	font-size: 32px;

}

.products-name a {

	color: var(--blue);

}

.products-name:hover a {

	background-color: var(--blue);

}

.products-name:hover a {

	color: #fff;

}*/

/*------------------ icon hover block css ------------------*/





.organizrow{

    position: relative;

    display: flex;

  	flex-wrap: wrap;

    justify-content: space-between;

	padding: 60px 0 20px;

	    margin: -100px 0 10px;

}



.organizrow .organizcols {

    position: relative;

    cursor: pointer;

  	height: 180px;

	width: 30%;

	margin: -10% 1.2% 12%;/*margin: -6% 1.2% 12%;*/

}



.organizrow .organizcols .orcol{

    height: 195px;

    transition: 0.5s;

}



.organizrow .organizcols .orcol.orcol1{

    position: relative;

	background: var(--lightbgcolor);

    display: flex;

    /*justify-content: center;*/

    align-items: center;

    z-index: 1;

    transform: translateY(100px);

	padding: 20px;

	text-align: left;

	border-bottom: 1px solid #AECFDC;

}



.organizrow .organizcols:hover .orcol.orcol1{

    background: var(--lightbg);

    border-color: var(--lightbg);

    transform: translateY(0);

}

.organizrow .organizcols:hover {

	z-index: 3;

}

.organizrow .organizcols .orcol.orcol1 .content{

    opacity: 1;

    transition: 0.5s;

}



.organizrow .organizcols:hover .orcol.orcol1 .content{

    opacity: 1;

}



.organizrow .organizcols .orcol.orcol1 .content img{

    max-width: 60px;

	margin-bottom: 18px;

}


.organizrow .organizcols .orcol.orcol1.makeinindia .content img{
    height: 36px;
    max-width: 100%;
    margin: 18px 0 19px;
}



.organizrow .organizcols .orcol.orcol1 .content h3{

    margin: 10px 0;

    padding: 0;

    text-align: left;

	font-size: 22px;

        line-height: 1.1;

    font-weight: var(--weight700);

    color: var(--primary);

    letter-spacing: -0.025em;

    

}

.organizrow .organizcols .orcol.orcol1 .content p {

	font-size: 18px;

	line-height: 1.4;

    font-weight: var(--weight400);

    color: #005F84;

}

.organizrow .organizcols .orcol.orcol2{

    position: relative;

    background: #f6f6f6;

    display: flex;

    justify-content: center;

    align-items: flex-start;

    padding: 20px;

    box-sizing: border-box;

    /*box-shadow: 0 10px 25px rgb(0 0 0 / 16%);*/

    transform: translateY(-120px);

	height: auto;

}



.organizrow .organizcols:hover .orcol.orcol2{

    transform: translateY(0);

	background: #fff;

	box-shadow: 0 5px 28px rgb(0 0 0 / 12%);

}

.organizrow .organizcols:before{

	content: "";

	position: absolute;

	width: 100%;

	height: 220px;

	left: 0;

	right: 0;

	top: 8px;

	bottom: 0;

	    background: rgb(0 0 0 / 15%);

    filter: blur(19px);

	opacity: 0;

}

.organizrow .organizcols:hover:before{

   opacity: 1;

	 transition: 0.5s;

	height: 100%;

}

.organizrow .organizcols .orcol.orcol2 .content p {

	font-size: 15px;

    line-height: 1.2;

    padding: 5px 0;

    font-weight: 400;

    list-style: square;

	margin: 0 0 5px;

}





.varients-panel {display: flex; flex-wrap: wrap;}

.varient-blocks {

	width: 31%;

    background: var(--white);

    border: 1px solid #E5E5E5;

    box-sizing: border-box;

    border-radius: 14px;

    padding: 18px 25px;

    margin: 1% 1%;

	position: relative;

    overflow: hidden;

	z-index: 2;

}

.varients-panel.two-var .varient-blocks{width: 48%;}
.varients-panel.single-varblock .varient-blocks{width: 100%;}
.single-varblock img{padding: 30px 0;}

.varient-blocks img{width: 100%;}

.varient-blocks p {

	font-weight: 500;

	margin: 0;

	padding: 10px 0 0;

}

.varient-overview {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    padding: 35px 40px;

   /* background: #AECFDC;

	background: linear-gradient(0deg, #2dca7f57 0%, #00B1D8 50%, #0079A8 100%);*/

	

	opacity: 0;

	z-index: 5;

}

.varient-overview h4, .varient-overview ul li{color: #fff;}

.varient-overview h4{

	font-size: 24px;

}

.varient-overview ul li{

	font-size: 18px;

    font-weight: 400;

}

.varient-blocks, .varient-blocks img, .varient-overview, .varient-blocks:before {

		-webkit-transition: all 600ms cubic-bezier(0.22, 1, 0.36, 1);

	-moz-transition: all 600ms cubic-bezier(0.22, 1, 0.36, 1);

	-o-transition: all 600ms cubic-bezier(0.22, 1, 0.36, 1);

	-ms-transition: all 600ms cubic-bezier(0.22, 1, 0.36, 1);

	transition: all 600ms cubic-bezier(0.22, 1, 0.36, 1);

}

.var-img-nm p {

		-webkit-transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);

	-moz-transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);

	-o-transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);

	-ms-transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);

	transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);

}

.varient-blocks:before{

	content: "";

	width: 100%;

	/*height: 100%;*/

	position: absolute;

	left: 0;

	right: 0;

	top: 0;

	/*bottom: 0;*/

	/*background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 65%, rgb(174 207 220 / 49%) 100%);*/

	background: linear-gradient(26deg, #2dca7f57 0%, #00B1D8 50%, #0079A8 100%);

	z-index: -1;

	opacity: 0;

	bottom: 30%;

}



.var-ov.varient-blocks:before{

	bottom: 0;

}

.varient-blocks:hover {

	border: 1px solid #AECFDC;

}

.varient-blocks:hover img{

	    transform: scale(1.07);

}

.varient-blocks:hover .var-img-nm p, .no-hover-bg.varient-blocks:hover:before{

	    opacity: 0;

}

.varient-blocks:hover .var-img-nm img{opacity: 0.12;}

.varient-blocks:hover .varient-overview, .varient-blocks:hover:before{

	opacity: 1;

}

.sub-head{

	font-weight: 600;

	padding-left: 1%;

	margin-bottom: 20px;

}





.fw-500{font-weight: 500 !important;}

.fw-600{font-weight: 600 !important;}

.tech-heading {

    background: var(--blue);

    padding: 38px 20px 30px;

    margin-bottom: -2px;

    margin-top: -2px;

}
.tech-heading .sectitle{color: #fff;}


ul.bullet-list li {

    list-style-type: disc;

    /*font-size: 16px;*/

	position: relative;

	padding: 3px 0 3px 26px;

}



ul.bullet-list li:before {

    content: "";

    width: 8px;

    height: 8px;

    position: absolute;

    background: #009ee3;

    left: 0;

    top: 13px;

    border-radius: 20px;

}

a.tecklink{

	text-align: right;

    font-size: 15px;

    font-style: italic;

    color: var(--blue);

	display: flex;

    justify-content: flex-end;

    align-items: center;   

	height: 20px;

    align-self: end;

}

.dshline{
	width: 10px;
	height: 2px;
	background: var(--blue);
	margin-right: 10px;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	transition: all 400ms ease;
}

a.tecklink:hover{
	color: #0093D3;
}

a.tecklink:hover .dshline{
	width: 30px;
	background: #ddd;
}

#technology .sticky-top{z-index: 20;}

.border-block {
	border: 1px solid #ddd;
}

.cri-block h3.sectitle span {
	font-size: 50px;
}

.cri-block h3.sectitle span small{
	font-size: 55%;
}

.lightdes {
	color: #eee;
}

.seclink{height: 0;}



.flexseries-row {padding: 120px 0 0;}

.flexseries-row h5{
	font-size: 22px;
	font-weight: 600;
	color: var(--blue);
	padding: 25px 0 12px;
}

.flexseries-row ul li{
	font-size: var(--font18);
    line-height: 1.4;
    font-weight: var(--weight300);
    color: var(--black);
    padding-bottom: 8px;
}

.contact-side-block .soc-icon{
	cursor: pointer;
	width: 45px;
    height: 40px;
	display: flex;
    align-items: center;
    justify-content: center;
	color: #fff;
	background: transparent;
}

.contact-side-block .soc-icon:hover{
	box-shadow: 0px 2px 13px rgb(0 0 0 / 55%);
	position: relative;
    z-index: 2;
}

.contact-side-block .soc-icon.whatsapp:hover {
	background-color: #00c938;
}

.contact-side-block .soc-icon.facebook:hover {
	background-color: #3B5998;
}

.contact-side-block .soc-icon.linkedin:hover {
	background-color: #007bb6;
}

.contact-side-block .soc-icon.youtube:hover {
	background-color: #FF0000;
}

.contact-side-block .soc-icon, .contact-side-block {
	-webkit-transition: all 0.45s ease;
	-moz-transition: all 0.45s ease;
	-o-transition: all 0.45s ease;
	-ms-transition: all 0.45s ease;
	transition: all 0.45s ease;
}

.contact-side-block{
	display: flex;
	justify-content: space-between;
	/*background: var(--blue);*/
	background: linear-gradient(146.33deg, #2DCA7F 0%, #00B1D8 54.17%, #0079A8 100%);
	width: 95px;
	position: fixed;
	top: 60%;
	right: 0;
	overflow: hidden;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	z-index: 99;
	margin-right: -45px;

}

.contact-head {
    position: relative;
    display: block;
    width: 50px;
    height: 160px;
	z-index: -2;
}
.contact-side-block:hover .contact-head.cont-hover{z-index: 2;}

.contact-head a {
   font-size: 16px;
    line-height: 50px;
    font-weight: 400;
    color: #fff;
    width: 160px;
    transform: rotate(-90deg);
    letter-spacing: 0.5px;
    position: absolute;
    bottom: -50px;
    text-align: center;
    display: block;
    transform-origin: left top;
	/*background: transparent;*/
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(146.33deg, #2DCA7F 0%, #00B1D8 54.17%, #0079A8 100%);
}

.contact-head a:hover{background: var(--darkblue);} 

.contact-side-block:hover{margin-right: 0;}

.cont-mob{display: none;}
.contact-social ul{
	list-style: none;
}
.varients-panel.aquaflow-trolley .varient-blocks {
    width: 100%;
}

.light-txt{color: #c6c6c6;}
.blue-txt{color: #009ee3;}

.testimonialmore { margin: -50px 120px 0px auto; text-align: right;}

.vismiss-panel {
	padding: 90px 0 5px;
}
.vision-mission-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.shalya-vision-box {
    background: var(--lightbgcolor);
    padding: 50px 45px;
    margin-top: 45px;
    border-radius: 12px;
    display: flex;    
    position: relative;
	overflow: hidden;
	width: calc(50% - 10px);
	align-items: flex-start;
	margin: 0!important;
}
.shalya-vision-box:after {
    content: "VISION";
    position: absolute;
    color: rgb(0 147 211 / 6%);
    font-size: 169px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -0.041em;
    font-family: var(--title-font);
    left: auto;
    right: -7px;
    bottom: 92px;
}
.shalya-vision-box.mission-box:after{
	content: "MISSION";
}
.shalya-vision-box img{
	width: 60px;
    margin-right: 36px;
}
.shalya-vision-box h4 {
    font-size: 60px;
    line-height: 1;
    font-weight: 900;
    color: #0093D3;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-style: italic;
    letter-spacing: -0.01em;
    background: linear-gradient(180deg, #2DCA7F 0%, #00B1D8 50%, #0079A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;   

}
.shalya-vision-box p {
        font-size: 30px;
    line-height: 1.2;
    color: #464646;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.012em;
    font-style: italic;
    color: var(--primary);
}
.brand-promise-block{
	border-left: 4px solid #ecf6fa;
    padding: 0 0 0 40px;
}
.brand-promise-block h4{
	font-size: 55px;
	line-height: 1;
    font-weight: var(--weight600);
    color: #0093D3;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.brand-promise-block p{

	font-size: 30px;
	line-height: 1.4;
    font-weight: var(--weight300);
    color: #464646;
    margin: 0;

}

.integra-feature-img {
    max-width: 320px;
}

ul.bottomnav {
    display: flex;
    align-items: center;
}

.g-translate .la-globe {
	font-size: 26px; 
}
header.sticky .g-translate .la-globe {
	color: #474747;
}
.g-translate .dropdown-toggle::after{padding-bottom: 6px;}
.g-translate .dropdown-menu-innerwrap{ padding: 30px 0;}


header .rightnav .smdrop.g-translate .dropdown-menu {
	width: calc(84vw - 50px);
	min-width: auto;
    left: auto;
    right: 18px;
    padding: 0;
}

.g-translate .goog-te-gadget a.goog-logo-link {
	display: inline-block;
	padding: 0 3px;
}
.g-translate .goog-te-gadget select.goog-te-combo {
	width: 100%;
	min-width: 240px;
	padding: 10px 24px 12px 10px;
	border-radius: 4px;
	font-size: 15px;
	font-family: var(--body-font);
	border: solid 1px #BBB;
	position: relative;	
	-moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
	background: url(../images/down-arrow.svg) 95% 19px no-repeat;
    background-size: 14px;
}

.translated-rtl #site-header,
.translated-ltr #site-header {
	top: 38px;
}
.translated-rtl body,
.translated-ltr body {
	margin-top: -1px;
}
header .rightnav .smdrop.g-translate .dropmenu-col, header .rightnav .smdrop.g-translate .dropmenu-col {
    min-width: 100px;
	width: auto;
    margin: 0 0 0 auto;
}

.milestones-wrapper {
    padding: 0 40px;
    max-width: calc(100% - 210px);
    margin: 0 0 -70px auto;
    position: relative;
}
.milestones-wrapper h2{
	font-size: 18px;	
    line-height: 1.12;
	font-weight: 600;
	text-align: right;
	color: var(--darkblue);
	background: #fff;
    padding: 15px 14px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: -15px 0px 19px -11px #00000054;
    text-align: center;
}
.milestones-wrapper h2:first-of-type{
	position: absolute;
    left: -200px;
    max-width: 205px;
    top: 50px;
}
.milestones-wrapper h2:last-of-type{
	position: absolute;
    left: -200px;
    max-width: 205px;
    top: 185px;
}
.historyslider.owl-carousel .owl-stage-outer:before{
	content: "";
	width: 100%;
	height: 10px;
	position: absolute;
	top: 145px;
	left: 0;
	right: 0;
	background: var(--blue);
    background: -webkit-linear-gradient(90deg, #2DCA7F 0%, #00B1D8 54.17%, #0079A8 100%);
    background: linear-gradient(270deg, #2DCA7F 0%, #00B1D8 54.17%, #0079A8 100%);
}
.historyslider.owl-carousel .item .milestone-bottom:before{
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	top: -10px;
	border-radius: 50%;
	left: calc(50% - 10px);
	right: auto;
	border: 3px solid var(--blue);
	background: #fff;
}
.mileston-block{
	text-align: center;
	padding: 0 20px;
}
.mileston-block h3{
	font-size: 35px;
    line-height: 1;
    font-weight: var(--weight600);
    color: #0093D3;
    margin-bottom: 10px;
}
.mileston-block p{
	font-size: 18px;
    line-height: 1.2;
    font-weight: var(--weight300);
    color: #464646;
    margin: 0;
}
.mileston-block img{
	max-width: 120px;
    margin: 15px auto 0;
}
.milestone-top{
	min-height: 150px;
	display: flex;
  justify-content: flex-end;
  flex-direction: column;
	padding-bottom: 30px;
}
.milestone-bottom{
	position: relative;
	min-height: 165px;
	padding-top: 30px;
}
.mileston-block .milestone-top h3 {margin: 15px 0 0}
.mileston-block .milestone-top p {font-weight: 400; font-size: 20px;}

.historyslider.owl-carousel .owl-nav button.owl-prev, .historyslider.owl-carousel .owl-nav button.owl-next{
	 position:absolute;
	width: 40px;
	height: 40px;
	background: #fff;
	margin: 0;
} 
.historyslider .owl-prev {left: -40px; top: 130px;}
 .historyslider .owl-next {right: -40px; top: 130px;}

.historyslider .owl-prev:before, .historyslider .owl-next:before  {
	display: block;
	content: "";
	position: absolute;
	top: 0px;
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
}

.historyslider .owl-prev:before {border-right: 20px solid #0079A8; left: 15px;}
.historyslider .owl-next:before{border-left: 20px solid #2dca7f; right: 15px;}
.historyslider.owl-theme .owl-nav.disabled + .owl-dots{margin: 0;}
.historyslider.owl-carousel .owl-nav button.owl-prev span, .historyslider.owl-carousel .owl-nav button.owl-next span {opacity: 0;}

.widthcontainer .row{margin-right: 0;}
.testimonial-panel .widthcontainer .row{margin-right: -15px;}


/*Map svg animation*/

	.mapblock svg {
		width: 100%;
		max-width: 780px;
		margin: 30px auto;
		display: block;
	}


	#line_1 {
		stroke-dasharray:  350%, 96%;
		stroke-dashoffset: 100%;
		animation: lineone 6s linear 1.2s forwards infinite;
	}
	@keyframes lineone {
		from {stroke-dashoffset: 400%;}
		to {stroke-dashoffset: 50%;}
	}

	#line_2 {
		stroke-dasharray:  350%, 95%;
		stroke-dashoffset: 80%;
		animation: linetwo 6s linear 1.3s forwards infinite;
	}
	@keyframes linetwo {
		from {stroke-dashoffset: 400%;}
		to {stroke-dashoffset: 50%;}
	}

	#line_3 {
		stroke-dasharray:  350%, 70%;
		stroke-dashoffset: 1000;
		animation: linethree 6s linear 1.45s forwards infinite;
	}
	@keyframes linethree {
		from {stroke-dashoffset: 400%;}
		to {stroke-dashoffset: 50%;}
	}

	#line_4 {
		stroke-dasharray:  350%, 65%;
		stroke-dashoffset: 1000;
		animation: linefour 6s linear 1.6s forwards infinite;
	}
	@keyframes linefour {
		from {stroke-dashoffset: 400%;}
		to {stroke-dashoffset: 50%;}
	}

	#line_5 {
		stroke-dasharray:  350%, 60%;
		stroke-dashoffset: 1000;
		animation: linefive 6s linear 1.7s forwards infinite;
	}
	@keyframes linefive {
		from {stroke-dashoffset: 400%;}
		to {stroke-dashoffset: 50%;}
	}

	#line_6 {
		stroke-dasharray:  350%, 50%;
		stroke-dashoffset: 1000;
		animation: linesix 6s linear 1.7s forwards infinite;
	}
	@keyframes linesix {
		from {stroke-dashoffset: 400%;}
		to {stroke-dashoffset: 50%;}
	}

	#line_7 {
		stroke-dasharray:  350%, 50%;
		stroke-dashoffset: 1000;
		animation: lineseven 6s linear 1.8s forwards infinite;
	}
	@keyframes lineseven {
		from {stroke-dashoffset: 400%;}
		to {stroke-dashoffset: 50%;}
	}

	#point-1 {opacity: 1; transform: scale(1); animation: pointone 6s linear 0.2s forwards infinite;}
	#point-2 {opacity: 1; transform: scale(1); animation: pointtwo 6s linear 0.2s forwards infinite;}
	#point-3 {opacity: 1; transform: scale(1); animation: pointthree 6s linear 0.2s forwards infinite;}
	#point-4 {opacity: 1; transform: scale(1); animation: pointfour 6s linear 0.2s forwards infinite;}
	#point-5 {opacity: 1; transform: scale(1); animation: pointfive 6s linear 0.2s forwards infinite;}
	#point-6 {opacity: 1; transform: scale(1); animation: pointsix 6s linear 0.2s forwards infinite;}
	#point-7 {opacity: 1; transform: scale(1); animation: pointseven 6s linear 0.2s forwards infinite;}
	@keyframes pointone {
		0% {opacity: 1; transform: scale(1);} 22% {opacity: 1; transform: scale(1);} 26% {opacity: 0; transform: scale(0.1);} 50% {opacity: 0; transform: scale(0.1);} 55% {opacity: 1; transform: scale(1);} 100% {opacity: 1; transform: scale(1);}
	}
	@keyframes pointtwo {
		0% {opacity: 1; transform: scale(1);} 28% {opacity: 1; transform: scale(1);} 32% {opacity: 0; transform: scale(0.1);} 57% {opacity: 0; transform: scale(0.1);} 62% {opacity: 1; transform: scale(1);} 100% {opacity: 1; transform: scale(1);}
	}
	@keyframes pointthree {
		0% {opacity: 1; transform: scale(1);} 22% {opacity: 1; transform: scale(1);} 26% {opacity: 0; transform: scale(0.1);} 42% {opacity: 0; transform: scale(0.1);} 47% {opacity: 1; transform: scale(1);} 100% {opacity: 1; transform: scale(1);}
	}
	@keyframes pointfour {
		0% {opacity: 1; transform: scale(1);} 25% {opacity: 1; transform: scale(1);} 30% {opacity: 0; transform: scale(0.1);} 45% {opacity: 0; transform: scale(0.1);} 50% {opacity: 1; transform: scale(1);} 100% {opacity: 1; transform: scale(1);}
	}
	@keyframes pointfive {
		0% {opacity: 1; transform: scale(1);} 31% {opacity: 1; transform: scale(1);} 36% {opacity: 0; transform: scale(0.1);} 47% {opacity: 0; transform: scale(0.1);} 53% {opacity: 1; transform: scale(1);} 100% {opacity: 1; transform: scale(1);}
	}
	@keyframes pointsix {
		0% {opacity: 1; transform: scale(1);} 31% {opacity: 1; transform: scale(1);} 36% {opacity: 0; transform: scale(0.1);} 47% {opacity: 0; transform: scale(0.1);} 53% {opacity: 1; transform: scale(1);} 100% {opacity: 1; transform: scale(1);}
	}
	@keyframes pointseven {
		0% {opacity: 1; transform: scale(1);} 31% {opacity: 1; transform: scale(1);} 36% {opacity: 0; transform: scale(0.1);} 47% {opacity: 0; transform: scale(0.1);} 53% {opacity: 1; transform: scale(1);} 100% {opacity: 1; transform: scale(1);}
	}

	#point-1, #point-2, #point-3, #point-4, #point-5, #point-6, #point-7 {transform-origin: center; transform-box: fill-box;}
		


/*Map svg animation*/
.testimonial-video-panel{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.tm-video-block {
    width: 33%;
    border-radius: 10px;
    overflow: hidden;
}
.tm-video-block a{
	display: block;
    position: relative;
}

.tm-video-block a::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(1, 1, 1, 0.56) url(../images/vidplaybutton.svg) no-repeat;
    background-size: 42px;
    background-position: 9% 87%;
	opacity: 0.75;
}
#videopopup .modal-content {
    border: 0;
    border-radius: 17px;
    overflow: hidden;
}
#videopopup .modal-body {
    padding: 0px;
	background: #000;
}

.integra-feature-img img, .oemimage img, .aquaflow-trolley-img img, .tm-video-block img {width: 100%;}

/*------------------ footer css ------------------*/

footer {
    letter-spacing: -0.02em;
    padding: 55px 0px 0;
    width: 100%;
    bottom: 0;
	color: var(--white);
    background-color: var(--ftrbg);
}

.ftrwrap { padding-bottom: 20px;}

.ftrlogo {
	width: 146px;
    margin-bottom: 25px;
}

.links li {
	display: block;
}

.links li a {
	display: inline-block;
	font-size: var(--font14);
    line-height: 1.1;
    font-weight: var(--weight400);
	color: var(--white);
	padding: 7px 0;
	transition: all 0.4s linear;
	text-align: left;
}

.links li a:hover, .ftrcol a:hover {
	color: #00aed6;
	padding-left: 6px;
}

.copywrap ul li a:hover {
	color: var(--secondary);}

.ftr-right h5 {
	font-family: var(--body-font);
	font-weight: var(--weight400);
	font-size: var(--font14);
	line-height: 1.3;
	color: var(--white);
	margin-bottom: 10px;
}

.ftr-right h5 a {
	display: block;
	font-size: 23px;
	font-family: var(--title-font);
	font-weight: var(--weight500);
	letter-spacing: -0.05em;
	color: #009ee3;	
    font-style: italic;
    margin-top: 6px;
	background: linear-gradient(180deg, #2DCA7F 0%, #00B1D8 50%, #0079A8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ftr-right p {
	font-size: var(--font14);
    line-height: 1.4;
    font-weight: var(--weight400);
    padding: 0;
    margin-bottom: 10px;	
	transition: all 0.4s linear;
}

.ftr-right p b {
	font-weight: var(--weight700);
}

.ftrsocial {
	margin-top: 10px;
}

.ftrsocial ul li { display: inline-block;}

.ftrsocial ul li a, .ftrcol a {
	display: inline-block;
	color: var(--white);
	font-size: 18px;
	line-height: 1;
	transition: all 0.4s linear;
    text-align: center;
}

.icon-button {
	border-radius: 0;
	cursor: pointer;
	display: inline-block;
	height: 2.2rem;
	line-height: 2.2rem;
	margin-right: 5px;
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	width: 2.2rem;

}

.icon-button span {
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 0;
}

.icon-button:hover span {
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 0;
	margin: -1.1rem;
}



/* Icons */

.icon-button i {
	background: none;
	color: white;
	height: 2.2rem;
	left: 0;
	line-height: 2.2rem;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 2.2rem;
	z-index: 10;
}



.twitter span {background-color: #4099ff;}
.facebook span {background-color: #3B5998;}
.linkedin span {background-color: #007bb6;}
.youtube span {background-color: #FF0000;}
.whatsapp span {background-color: #00c938;}
.con-wapp {width: 27px; height: auto; display: inline-block; margin: 5px 0 -8px 5px; -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s linear; -o-transition: all 0.3s linear; -ms-transition: all 0.3s linear; transition: all 0.3s linear;}
.con-wapp:hover {-webkit-transform: scale(1.15); transform: scale(1.15);}
.con-wapp img {width: 100%; display: block;}


.instagram span {
	background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.icon-button:hover .icon-twitter,
.icon-button:hover .icon-twitter,
.icon-button:hover .icon-facebook,
.icon-button:hover .icon-glinkedin,
.icon-button:hover .fa-instagram {
	color: white;
}

.btmwrap {
	padding: 0 0 45px;
}

.copywrap {
	display: flex;
	align-items: center;
}

.copywrap ul li {
	display: inline-block;
}

.copywrap ul li a {
	color: #9B9B9B;
	font-size: 14px;
	line-height: 1;
	padding: 0 10px;
	display: block;
}

.copywrap ul li:first-child a {
	border-right: 1px solid #9B9B9B;
	padding-left: 0;
}

.btmwrap p {
	font-size: 14px;
	line-height: 1;
	color: #9B9B9B;
	margin: 0 0 0 40px;
}

.ftrimg img { width: 185px;}

.owl-carousel .owl-stage, .owl-carousel.owl-drag .owl-item, .owl-carousel{
    -ms-touch-action: auto;
        touch-action: auto;
}
/*.back_to_top {
    width: 50px;
    height: 50px;
    opacity: 1;
    position: fixed;
    bottom: 8px;
    text-align: center;
    right: 20px;
    display: none;
    background: linear-gradient(2deg, #00B1D8 0%, #0079A8 100%);
    z-index: 999;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    padding: 15px 0;
    font-weight: 400 !important;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.back_to_top .svg-inline--fa {
    color: #fff;
    font-size: 26px;
}

.back_to_top:hover {
    color: #f1f5fd;
}*/

/*------------------ all images css ------------------*/

header .logo img, .ftrlogo img, .productcol img, .postimg img, .introimg img, .esuimg img, .fleximg img, .modelimg img, .logo-nar-block img {
    width: 100%;
}

.tabbed-content {
  display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.tabs ul li a.active .fleximg h4 {
	color: #464646;
}

.tabs ul li a:hover .fleximg:before, .tabs ul li a.active .fleximg:before {
  left: -100%;
}
.item::before {
  cursor: pointer;
  display: block;
}

.item.active .item-content {
  padding: 1em;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.filegroup.grecaptcha {margin: 20px 0px 0px 0;}
div#_response {width: 100%;color: #155724;margin-top: 10px;font-size: 14px;}

@media all and (min-width: 860px) {
  .item.active .item-content {
    padding-top: 0;
  }
  .tabs-side .tabs li {
    margin-bottom: 2px;
  }
}

/* 
The project specific CSS starts here
This is the minimum CSS that you will need in order for this to work
*/

.tabbed-content .tabs {display: none;}
.tabbed-content .item::before {content: attr(data-title); background-image: url(../images/flex500.jpg);}
.tabbed-content .item .item-content {opacity: 0; visibility: hidden; height: 0; position: relative; right: -50%; transition: all 0.4s ease;}
.tabbed-content .item.active .item-content {opacity: 1; visibility: visible; height: auto; right: 0;}


@media all and (min-width: 860px) {
	.tabbed-content .tabs {display: block;}
	.tabbed-content .tabs li {display: inline-block;}
	.tabbed-content .tabs li a {display: block;}
	.tabbed-content .item {min-height: 0;}
	.tabbed-content .item::before {display: none;}
	.tabbed-content.tabs-side .tabs {width: 41%; margin-top: -50px;}
	.tabbed-content.tabs-side .tabs li {display: block;}
	.tabright {width: 50%;}
}

/*--- latest file  ---*/



.highlight-panel {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.71);
	width: 100%;
	height: 100%;
	z-index: 99999;
	top: 0;
	left: 0;
	display: none;
	backdrop-filter: blur(4px);
	display: flex;
    justify-content: center;
}

.highlight-block {
	position: absolute;
	top: 50%;
	width: auto;
	/*max-width: 750px;*/
	left: auto;
    right: auto;
	margin: 0 auto 20px auto;
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 5px;
	background-color: #fff;
	color: #000;
	font-size: 13px;
	line-height: 20px;
	text-align: justify;
}

.highlight-block img {
	display: block;
    width: auto;
    height: 100%;
}

.highlight-close {
	display: block;
	text-align: center;
	background-color: #00649a;
	background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(146.33deg, #2DCA7F 0%, #00B1D8 54.17%, #0079A8 100%);
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(146.33deg, #2DCA7F 0%, #00B1D8 54.17%, #0079A8 100%);
	color: #fff;
	padding: 5px 10px;
	cursor: pointer;
	position: absolute;
	z-index: 99;
	top: 0px;
	right: -36px;
	font-size: 22px;
	line-height: 1;
	font-weight: bold;
}

.scroll-block {
	position: relative;
	height: 100%;
}

.portrait-hl-block{
	/*max-width: 650px;*/
	height: 90vh;
}
.projectwrap {
	display: flex;
    flex-wrap: wrap;
}
.projectcol {
	width: 30%;
	margin: 2% 1.5%;
	background-color: #F6F6F6;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	position: relative;
	border: 1px solid #DFDFDF;
}
.projectimg {
	width: 100%;
	border-radius: 15px 15px 0px 0px;
	overflow: hidden;
}
.projectimg img {
	width: 100%;
	height: 206px;
	object-fit: cover;
	border-radius: 15px 15px 0px 0px;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
}
.projectcol:hover .projectimg img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.projectdes {
	padding: 21px 60px 21px 15px;
	position: relative;
}
.projectdes h3 {
	font-weight: 400;
font-size: 18px;
line-height: 1;
text-align: center;
letter-spacing: -0.04em;
color: #5B5B5B;
font-family: var(--body-font);
}
.projectdes span {
	background: linear-gradient(180deg, #2DCA7F 0%, #00B1D8 54.17%, #0079A8 100%);
	background: -webkit-linear-gradient(180deg, #2DCA7F 0%, #00B1D8 54.17%, #0079A8 100%);
border-radius: 15px 0px;
font-size: 20px;
color: #fff;
padding: 10px 20px;
position: absolute;
right: -12px;
bottom: -12px;
}
.projectdes span a {
	color: #fff;
	
	display: block;
}
.projectcol a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.project-logo {
	width: 220px;
	margin: 0 auto 70px;
	border: 1px solid #dfdfdf;
    border-radius: 10px;
	padding: 10px;
}
.project-logo img {
	height: auto;
}
.project-logo img, .project-item img { width: 100%;}
.project-item {
	border: 1px solid #DFDFDF;
border-radius: 15px;
overflow: hidden;
position: relative;
margin-bottom: 25px;
}
.project-item img,
.project-item:before,
.project-item:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}


.project-item:before,
.project-item:after {
  content: '';
  background-color: #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.project-item:before {
  width: 30px;
  height: 1px;
  left: 100%;
}

.project-item:after {
  height: 30px;
  width: 1px;
  top: 0%;
}
.project-item:hover:before,
.project-item.hover:before,
.project-item:hover:after,
.project-item.hover:after {
  opacity: 1;
  top: 50%;
  left: 50%;
}
.project-item .projectoverlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(118.3deg, rgba(45, 202, 127, 0.8) 7.04%, rgba(0, 177, 216, 0.8) 56.24%, rgba(0, 121, 168, 0.8) 97.87%);
	background: linear-gradient(118.3deg, rgba(45, 202, 127, 0.8) 7.04%, rgba(0, 177, 216, 0.8) 56.24%, rgba(0, 121, 168, 0.8) 97.87%);
	-webkit-transform:scale(0.8);
	transform:scale(0.8);
	opacity: 0;
	border-radius: 15px;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-moz-transform:scale(0.8);
	-ms-transform:scale(0.8);
	-o-transform:scale(0.8);
}
  .project-item:hover .projectoverlay {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.project-item img {
	width: 100%;
	height: 310px;
	object-fit: cover;
	border-radius: 15px 15px 0px 0px;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
}

.project-item a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 25px 50px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 15px;
}
.projectbanner {
	height: 575px;
	background-size: cover !important;
	background-position: center center;
}
.video-wrap {
	width: 70%;
	margin: 0 auto;
}
.video-wrap video {
	width: 100%;
}