/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
  font-family: 'poppins', serif;
color: #444444;overflow-x:hidden;width:100%;
}
html{font-size: 15px;}

a {
  color: var(--orange);-webkit-transition: all ease-in-out 300ms;-o-transition: all ease-in-out 300ms;transition: all ease-in-out 300ms;text-decoration: none;
}

a:hover {
  color: #e76668;
  text-decoration: none;
}
a:hover, a:active, a:link, a:focus {outline: 0px;}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}
:root{
	--bottle-green:#0d4626;
	--orange:#f37126;
	--yellow: #fcc500;
	--marun: #fc7d00;
	--lightGreen: #517018;
  --darkBg: #252525;
}
b{font-weight:800;}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: var(--yellow);
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) 
{
  [data-aos-delay] 
  {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 3;
    background: #ffffff;
    box-shadow: none;
	padding-top: 0px;transition: all ease-in-out 300ms;
}
#header.header-scrolled {background: #ffffff;animation:stickyHead 800ms;position: fixed;box-shadow: 0 0 10px rgb(0 0 0 / 10%);}

@keyframes stickyHead {
  0%{transform: translateY(-100%);}
  50%{transform: translateY(-100%);}
  100%{transform: translateY(0%);}
}



#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  display: flex;align-items: center;
}

#header .logo a {
  color: #111111;
  padding:15px 10px 15px 0;display:block;margin-right: 15px;position: relative;}
#header .logo a:after {position: absolute;content: "";right: 0;top: 50%;width: 1px;height: 60px;background: #f5f5f5;margin-top: -30px;}

#header .logo a span {
color: var(--orange);display: inline-block;font-size: 1rem;border-left: 2px solid var(--warning);height: 50px;padding: 10px;margin-left: 10px;
}

#header .logo img {
  max-height: 80px;transition:all ease-in-out 300ms;max-width: 360px;
}


/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .dropdown-menu li {
    position: relative;
  }

  .nav-item .submenu {
    display: block;
    position: absolute;
    left: 100%;
    top: -2px;
    transform: translateY(30px);opacity: 0;transition: all ease-in-out 300ms;visibility: hidden;
  }

  .nav-item.rightMenu .submenu {
    right: 100%;
    left: auto;
  }

  .dropdown-menu>li:hover {
    background-color: #f1f1f1
  }

  .dropdown-menu>li:hover>.submenu {
    transform: translateY(0px);opacity: 1;visibility: visible;
  }
}

/* ============ desktop view .end// ============ */
/* ============ small devices ============ */
@media (max-width: 991px) {
  .dropdown-menu .dropdown-menu {
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    margin-bottom: .5rem;
  }
}

/* ============ small devices .end// ============ */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.navbar-expand-lg .navbar-collapse{height: 100%;}
.navbar{padding: 0;}
.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media all and (min-width:1024px){
.navbar > ul {
  display: flex;
}

.navbar  ul > li {
  position: relative;
  white-space: nowrap;
  padding: 0px 1px;
}

.navbar a {
  display: block;
  position: relative;
  color: #111111;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  line-height: 60px;
  padding: 1.2rem .5rem;
}
.navbar > ul > li > a{padding: 18px 18px 18px 18px;}
.header-scrolled .navbar a {line-height: 2.7;}


.navbar .navbar-nav a:hover, .navbar .navbar-nav .active > a, .navbar .navbar-nav li:hover > a {
  color: #f37421;
  background: #f5f5f5;
}
.navbar ul li a:hover{color: #000;}

.navbar .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 0px 0 10px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.dropdown-menu{white-space: nowrap;transform: translateY(30px);opacity: 0;transition: all ease-in-out 300ms;visibility: hidden;display: block;}
.dropdown-menu.show{white-space: nowrap;transform: translateY(0px);opacity: 1;transition: all ease-in-out 300ms;visibility: visible;display: block;}
.navbar .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .drop-down li {
  min-width: 200px;
  position: relative;
  max-height:33px;
}

.navbar .drop-down ul a {
  padding: 10px 20px;
  font-size: 0.9em;
  text-transform: none;opacity:0;transition:all ease-in-out 300ms;
}
.navbar .drop-down ul li:nth-child(2) a {transition-delay:10ms;}
.navbar .drop-down ul li:nth-child(3) a {transition-delay:20ms;}
.navbar .drop-down ul li:nth-child(4) a {transition-delay:30ms;}
.navbar .drop-down ul li:nth-child(5) a {transition-delay:40ms;}
.navbar .drop-down ul li:nth-child(6) a {transition-delay:50ms;}
.navbar .drop-down ul li:nth-child(7) a {transition-delay:60ms;}
.navbar .drop-down ul li:nth-child(8) a {transition-delay:70ms;}
.navbar .drop-down ul li:nth-child(9) a {transition-delay:80ms;}
.navbar .drop-down ul li:nth-child(10) a {transition-delay:90ms;}
.navbar .drop-down ul li:nth-child(11) a {transition-delay:100ms;}
.navbar .drop-down ul li:nth-child(12) a {transition-delay:110ms;}
.navbar .drop-down ul li:nth-child(12) a {transition-delay:120ms;}
.navbar .drop-down ul li:nth-child(13) a {transition-delay:130ms;}
.navbar .drop-down ul li:nth-child(14) a {transition-delay:140ms;}
.navbar .drop-down ul li:nth-child(15) a {transition-delay:150ms;}
.navbar .drop-down:hover ul a {opacity:1;margin-top:6px;}

.navbar .drop-down ul a:hover, .navbar .drop-down ul .active > a, .navbar .drop-down ul li:hover > a {
  color: var(--orange);
}

/*.navbar .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}*/

.navbar .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.navbar .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.navbar .drop-down .drop-down > a {
  padding-right: 35px;
}

.navbar .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}
}

@media (max-width: 1366px) {
  .navbar .drop-down .drop-down ul {
    left: -90%;
  }
  .navbar .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .navbar .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/*Search*/
.searchWrap{border: 2px solid #9c9c9c;border-radius: 4px;max-width: 272px;margin-left: auto;margin-bottom: 18px;}.searchWrap .form-group{margin: 0;display: flex;flex-direction: row;}.searchInput{border: 0;width: 80%;width: calc(100% - 40px);margin: 0;padding: 8px 15px;line-height: 20px;outline-offset:0px;outline: 0px;}.search-btn{border: 0;background: #fff;}
.rightContent{padding-bottom: 18px;}.rightContent .call{font-size: 1.1rem;color: #000;font-weight: 500;}.rightContent .call svg{fill: var(--orange);color: var(--orange);stroke-width:0;margin-right: 6px;width: 20px;height: 20px;}


/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: var(--orange);
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover 
{
  background: #111111;
  color: #fff;
}

@media (max-width: 992px) 
{
  .get-started-btn 
  {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle 
{
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #111111;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #111111;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: var(--orange);
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.inner-banner#hero.section{height:50%;overflow:hidden;}
.breadcrumb-wrap{position:absolute;top:10%;left:0px;width:100%;}
.breadcrumb
{
	background:none;
}

#hero 
{
  width: 100%;
  background-size: cover;
  position: relative;
}

/* #hero:before { */
  /* content: ""; */
  /* background: rgba(0, 0, 0, 0.6); */
  /* position: absolute; */
  /* bottom: 0; */
  /* top: 0; */
  /* left: 0; */
  /* right: 0; */
/* } */
.section .hero-container
		{
			overflow: hidden;
			position: relative;width: 100%;max-height: 500px;
		}
		
.hero-container img.banner
		{
			opacity: 0;
			width:100%;
			position:relative;
			z-index:1;
		}
.hero-container .hero-item{position:relative;height:100%;max-height:calc(100vh - 96px);min-height:450px;overflow: hidden;margin: 0;}
.hero-container .hero-item .video{position: absolute;left: 0;top: 0;width: 100%;height: 100%;object-fit: cover;}
.hero-container .hero-item .video.ratio>*{object-fit: cover;}
.hero-container .hero-caption{position:absolute;bottom:10%;left:0%;display:flex;flex-direction:column;align-items:center;z-index:2;justify-content: center;background:rgba(0, 0, 0, 0.4);padding-top: 40px;padding-bottom: 40px;border-top-right-radius: 10px;border-bottom-right-radius: 10px;padding-right: 20px;padding-left: 6%;}
.inner_banner .hero-container .hero-caption{position:absolute;bottom:0px;left:0;display:flex;flex-direction:column;align-items:center;z-index:2;justify-content: center;background:rgba(0, 0, 0, 0.4);padding-top: 0px;padding-bottom: 0px;border-radius: 0px;padding: 20px;width: 100%;height: 100%;}

.hero-container .hero-caption .herotext
{
	max-width: 800px;
}

.hero-container .herotext h1
{
	font-size: 3.2rem;
	font-weight: 500;
	color: white;
	position:relative;
  text-transform: uppercase;
}

.hero-container .herotext h1 span{
color: #f37126;font-weight: 700;
}

.hero-container .herotext p
{
	font-size: 1.1rem;
	font-weight: 300;
	color: #fff;
  margin: .5rem 0 1rem;
  max-width: 700px;
}

.hero-container .herotext a.btn,.indexblock a.btn, .product a.btn
		{
			font-size:1rem;
			border-radius:6px;
			background-color: #f47523;
			color:#FFF;
			text-decoration:none;
			line-height:26px;
			display:inline-block;
      padding: .725rem 1.225rem;
      position: relative;
      padding-right: 3rem;
      margin-top: 15px;
      border:1px solid #f47523
		}
.hero-container .herotext a.btn.btn-dark,.indexblock a.btn.btn-dark, .product a.btn.btn-dark{background: transparent;color: #fff;border:1px solid #f47523}
.hero-container .herrotext a.btn.btn-dark:hover,.indexblock a.btn.btn-dark:hover, .product a.btn.btn-dark:hover{background: #f47523;}
.hero-container .herotext a.btn svg,.indexblock a.btn svg, .product a.btn svg{
  position: absolute;
  top: 50%;
  right: 2rem;
  margin: -10px;
  width: 20px;
  height: 20px;
  transition: all ease-in-out 300ms;
}
		
.hero-container .herotext a.btn:hover,.indexblock a.btn:hover, .product a.btn:hover
		{
			background-color:#000 !important;
		}	
.hero-container .herotext a.btn:hover svg,.indexblock a.btn:hover svg, .product a.btn:hover svg{
  right: 1.25rem;
}	




.hero-container .owl-carousel button span, .section.clients .owl-carousel button span {
    font-size: 3rem;
    background: #3d3d3d;
    display: block;
    line-height: 42px;
    color: #f37126;
    height: 10px;
    width: 10px;
    margin: 5px;
    border-radius: 50%;
}
.hero-container .owl-carousel button.active span, .section.clients .owl-carousel button.active span, .slick-dots .slick-active button {background: #f37126;;}
.hero-container .owl-carousel button.owl-dot:focus{outline: 0px;}
.hero-container .owl-dots,.slick-dots{position: absolute;bottom: 20px;left: 0;width: 100%;text-align: center;padding: 0;list-style-type: none;display: flex;flex-direction: row;align-items: center;justify-content: center;}
.hero-container .owl-dots .owl-dot,.slick-dots button{margin: 0 3px;border: 1px solid #f37126;width: 10px;height: 10px;border-radius: 50%;background: #fff;display: block;text-indent: -100px;overflow: hidden;line-height: 10px;padding: 0;font-size: 0px;box-shadow: 0 0 5px rgb(0 0 0 / 30%);}
.hero-container .owl-dots .owl-dot span{display: inline-block;width: 10px;height: 10px;border-radius: 50%;background: #fff;}
.hero-container .owl-dots .owl-dot.active span{background: var(--marun);}
.hero-container .owl-dots button.owl-dot:focus{outline: 0px;}

.bullet_list{list-style-type: none;margin: 1.5rem 0 0;padding: 1.5rem 0;border-top: 1px solid var(--marun);}
.bullet_list li{font-size: 1rem;padding-bottom: .8rem;padding-left:32px;position: relative;}
.bullet_list li::before{position: absolute;width: 6px;height: 6px;background: var(--marun);content: "";left: 0;top: 7px;border-radius: 6px;}





/*.section{padding:100px 0;}*/
.container{width:100%;max-width:1280px;}
#hero.section{padding:0px 0;margin-top: 60px;}
.clients-wrapper{position:relative;padding-left:134px;}
.section.clients{min-height:20px;margin-bottom:50px;padding:80px 0;}
#hero .clients h2{font-size:1.7rem;font-weight:500;text-transform:capitalize;padding:12px 1.5rem;color:#231f20;text-align:left;margin:0;}
.clients h2 span{display:block;color:var(--orange);font-weight:900;font-size:1.2rem;}


.heading{text-transform:uppercase;font-size:1.8rem;color:#303030;margin:0 0 22px;padding:0px;font-weight:500;}.heading span{font-weight:900;}
.step-list{list-style-type:none;}.step-list li{position:relative;padding-left:58px;font-size:.8rem;padding-bottom:3vh;}.step-list li .step{position:absolute;top:0;left:0;width:48px;height:48px;line-height:48px;text-align:center;background:var(--orange);color:#fff;font-weight:900;font-size:1.5rem;border-radius:50%;}.step-list li h3{font-weight:400;font-size:1.5rem;margin:0 0 8px;text-transform:uppercase;color:#000;}.step-list li p{color:#5a5a5a}
.img-wrap{padding-left:30px;}

.counts{color:#222;padding:2rem 0;}.counts h1{font-size:2rem;font-weight:200;padding-bottom:20px;}.counts h1 span{font-weight:400;font-size:1.5rem;display:block}.counts h1 span b{font-weight:900;}.count-box img{margin-bottom:8px;}.count-box p{font-size:.8rem;}.count-box h2{font-size:1.8rem;font-weight:900;margin:0;padding:0;}
.hed_line{color:#626262;}
.gray-bg{background:#f9f9f9 !important;}
.service-block{background:#fff;padding:15px 15px 10px;display:block;box-shadow:0px 0px 10px 2px rgba(0,0,0,.1);height:100%;margin:8px;border-radius:6px;position:relative;}
.owl-carousel .owl-stage{display: flex;flex-direction: row;}.owl-carousel.services-carousel .owl-stage,.owl-carousel.services-carousel2 .owl-stage{padding: 15px 0px 50px;}
.service-block:after,.service-block:before{background:var(--orange);content:"";position:absolute;z-index:-1;width:95%;height:95%;border-radius:8px;left:0;top:0;-webkit-transition: all .5s;-o-transition: all .5s;transition: all .5s;}
.service-block:after{top:auto;bottom:0px;}.service-block:before{left:auto;right:0px;}
.service-block:hover::after, a.service-block:hover::after {
    -webkit-transform: rotate(2deg) translateX(-5px) translateY(16px);
    -ms-transform: rotate(2deg) translateX(-5px) translateY(16px);
    transform: rotate(2deg) translateX(-5px) translateY(16px);
    -webkit-box-shadow: 0 10px 10px rgba(0,0,0,0.3);
    box-shadow: 0 10px 10px rgba(0,0,0,0.3);
}
.service-block:hover::before,a.service-block:hover::before {
    -webkit-transform: rotate(2deg) translateX(5px) translateY(-16px);
    -ms-transform: rotate(2deg) translateX(5px) translateY(-16px);
    transform: rotate(2deg) translateX(5px) translateY(-16px);
    -webkit-box-shadow: 0 10px 10px rgba(0,0,0,0.3);
    box-shadow: 0 10px 10px rgba(0,0,0,0.3);
}
.services-carousel .service-block .hover_image img,.services-carousel2 .service-block .hover_image img,.service-block .hover_image img{max-width:100%;width:auto;margin:0 auto;}.services-carousel2 .service-block .hover_image img, .services-carousel2 .service-block .hover_image svg,.service-block .hover_image svg{max-width:100px;margin-bottom:20px;margin-top:15px;fill:#60aa00;}.services-carousel2 .service-block .hover_image svg{height:100px;}
.services-carousel .service-block h4,.services-carousel2 .service-block h4,.service-block h4{color:#000;font-weight:400;position:relative;font-size:1.1rem;line-height:1.4rem;padding-bottom:8px;margin:10px 0 15px;text-transform:uppercase;}.services-carousel2 .service-block h4{font-weight:600;}.services-carousel .service-block h4 span,.services-carousel2 .service-block h4 span,.service-block h4 span{display:block;color:#6daa00;}
.services-carousel .service-block h4:after,.services-carousel2 .service-block h4:after,.service-block h4:after{content:"";position:absolute;bottom:0px;left:50%;width:40px;margin:0 0 0 -20px;background:#000;height:1px;}.services-carousel .service-block p,.services-carousel2 .service-block p,.service-block p{font-size:.85rem;color:#4b4b4b;margin:0;}
.services-carousel .owl-nav,.services-carousel2 .owl-nav{position:absolute;top:-40px;width:100%;}.services-carousel .owl-nav button,.services-carousel2 .owl-nav button{outline:0px;display:inline-block;width:24px;height:24px;background:#4b4b4b !important;color:#fff !important;line-height:24px;border-radius:4px;margin:0 4px;}.services-carousel .owl-nav button span,.services-carousel2 .owl-nav button span{display:block;line-height:22px;font-size: 1.8rem;margin-top: 2px;}

/*Dedicated Developer*/
.hiring_details{background:#ff0030;color:#fff;padding:4rem;}.hiring_details h2{font-size:2rem;line-height:1.2em;font-weight:700;border-bottom:1px solid #fff;}.hiring_details h2 span{font-size:3.8rem;display:block;font-weight:900;line-height:.8em;}
.link-btn{border:1px solid #fff;border-radius:4px;min-width:144px;text-align:center;color:#fff;position:relative;background:transparent;}.link-btn:hover{background:#fff;color:var(--orange);}

/*TECHNOLOGY PROFICIENCY*/
.technology .container{position:relative;width:100%;max-width:none;padding:4em 15px 5em;}.technology .container:before{position:absolute;left:0;top:0;right:0;bottom:0;background:rgba(0,0,0,.8);content:"";z-index:0;}
.technology .container .heading{color:#fff;position:relative;z-index:1;}.technology .container .hed_line{color:#fff;position:relative;z-index:1;}.technology .container .owl-carousel{padding:0em 40px 0px;margin:1em 0 0em;}
.techno-block{background:#fff;height: 100%;align-items: center;padding: 10px;display: flex;}.owl-carousel .owl-item .techno-block img{width:auto;margin:auto;align-self:center;}.owl-item:nth-child(2n) .techno-block{background:#ececec;}
.technology .owl-nav button{position:absolute;width:24px;height:100%;line-height:100%;outline:0px;top:0px;left:0;color:#fff;}.technology .owl-nav button.owl-next{left:auto;right:0px;}
.technology .owl-nav button span{color:#fff;font-size:3rem;}.technology .owl-nav button:hover span{color:var(--orange);}

/*eng_model*/
.eng_model_img{padding:0;max-width:100%;width:100%}
.engage_model_wrapper .row{background:#f8f8f8;text-align:left;}
.engage_model_wrapper:nth-child(2n) .row{background:#fff;text-align:right;flex-direction:row-reverse;}
.eng_model_content{align-self: center;}.eng_model_content h2{font-size:1.8rem;color:#000;font-weight:400;text-transform:uppercase;}.eng_model_content h2 span{color:#6daa00;font-weight:900;}
.eng-btn,a.eng-btn{min-width:240px;border-radius:0px;background:var(--orange);font-size:1.1rem;color:#fff;font-weight:400;text-transform:uppercase;padding:10px 15px;}
.btn:hover,a.eng-btn:hover{box-shadow:0px 5px 8px rgba(255,42,0,.3);background:#000;color:#fff;}

/*Feature Portfolio*/
.porfolio-carousel {padding:0 50px;}
.porfolio-carousel .owl-item{background:#f2f3f8;}
.portfolio-block{position:relative;height: 100%;}
.portfolio-block a{position:absolute;top:-100px;right:0;left:0;bottom:0;background:rgba(0,0,0,.6);display:flex;flex-direction:row;flex-wrap: wrap;padding:20px 15px;opacity:0;-webkit-transition: all .5s;-o-transition: all .5s;transition: all .5s;}
.portfolio-block .hover_image img{height:150px;object-fit:cover;}
.portfolio-block a div{align-self:center;}.hover_data h4{font-size:1rem;font-weight:900;color:#fff;margin-top:-60px;opacity:0;-webkit-transition: all .5s;-o-transition: all .5s;transition: all .5s;transition-delay:.5s;text-transform:uppercase;}.hover_data p{font-size:12px;color:#fff;opacity:0;-webkit-transition: all .5s;-o-transition: all .5s;transition: all .5s;transition-delay:.5s;}
.portfolio-block:hover a{opacity:1;top:0px;}.portfolio-block:hover a h4,.portfolio-block:hover a p{opacity:1;margin-top:0px}
.porfolio-carousel .owl-nav button{position:absolute;top:50%;width:48px;height:48px;transform:translateY(-50%);left:0px;outline:0;}.porfolio-carousel .owl-nav button span{font-size:3em;}.porfolio-carousel .owl-nav button.owl-next{left:auto;right:0px;}
.porfolio-carousel .owl-nav button:hover span{color:var(--orange);}

/*what People Says*/
.client-feedback-slider-five {
  position: relative;
  padding: 13rem 0;
  z-index: 2;
}
.mt-200 {
  margin-top: 200px;
}
.client-feedback-slider-five .container{max-width: 1320px;}
button, img {
  display: block;
}
.mt-25 {
  margin-top: 25px;
}
.title-style-six h2 {
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.27em;
  color: #000;
}
.title-style-six h2 span {
  color: #f37126;
  text-decoration: underline;
  text-decoration-thickness: 4px;
}
.mt-80 {
  margin-top: 40px;
}
.whatPeopleSays .container .tsti_wrapper{padding:2em 2em;}.testimonial-carousel{max-width:1000px;margin:0 auto;color:#fff;font-size:1.15rem;margin-top:2rem;}.testimonial-carousel p{margin-bottom:4vh;}
.dark-bg .heading{color:#fff;}
.client_name{position:relative;padding:30px 0;display:block;font-size:.8rem;}.client_name b{display:block;font-size:1.1rem;}.client_name:before{position:absolute;content:"";height:1px;width:60px;margin-left:-30px;background:#fff;top:0px;}
.testimonial-carousel .owl-dots button{width:12px;height:12px;border-radius:50%;background:#fff;margin:0 4px;outline:0;}.testimonial-carousel .owl-dots button.active{background:var(--orange);}

/*Blogs*/
.card-img {border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;height:230px;object-fit:cover;width:100%}

.blog-carousel .card-title {
  margin-bottom: 0.6rem;text-transform:uppercase;color:#000;font-size:1.2rem;
}
.card-text{color:#707070;font-size:.9rem;}

.cat {
  display: inline-block;
  margin-bottom: 1rem;
}

.fa-users {
  margin-left: 1rem;
}

.card-footer {
  font-size: 0.8rem;
}
.orange-btn{background:var(--orange);color:#fff;min-width:100px;}
.blog-carousel .owl-stage-outer{padding: 0 2px;}

.contact_wrapper{background:#fff;border-radius:6px;box-shadow:0px 0px 12px rgba(0,0,0,.2);overflow:hidden;}
.contact-info{background:var(--orange);color:#fff;text-align:left;padding:0;font-size:.8rem;}.contact-info img{opacity:.4;width:100%;height:100%;object-fit:cover;}
.info-box{position:relative;padding:0 10px 20px 25px;}.info-box i{position:absolute;left:0;top:0;font-size:1.2rem;}.info-box p{margin:0;padding:0;}
.contact-info a{color:#fff;display:inline-block;width:24px;height:24px;margin-right:4px;font-size:1.2rem;}
.contact-info .social-links{padding:3rem 15px 0;}
.contact-form{padding:3rem;}
.input_white_bg {
    background-color: #fff;
    border: 1px solid #e4e4e4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.input_white_bg i {
    border-right: 1px solid #e9e9e9;
    margin-right: 7px;
    padding-right: 18px;
    margin-left: 15px;
    width: 44px;font-size:1.4rem;color:#ccc;
}
.input_white_bg input {
    height: 48px;
    line-height: 48px;
    padding: 0 10px;
	width: 100%;
    border: 0;
    border-radius: 0;
    outline: none !important;
    font-size: 13px;
    color: rgb(134, 134, 134);
    line-height: 19px;
    letter-spacing: 0.5px;}
.form-heading
{
	display:block;position:relative;padding:0 40px 30px 0px;font-size:1.2rem;color:#000;text-align:left;font-weight:900;}.form-heading i{position:absolute;right:0px;color:var(--orange)
}
.container 
{
    max-width: 1240px;width:100%;
}
.poligonBg{background:url(../img/hex-pattern.svg) right center no-repeat;background-size:auto 80%;margin-top: 2Zrem;padding-top: 5rem;}


/*  Footrer Design */

#footer
{
	color: #ffffff;
	font-size: 1rem;
	background: #000000;
}

.footerblock .block
{
	background-color: #f7f7f7;
	width:100%;
	padding:50px 100px 0px 100px;
}

#footer .footer-top 
{
	padding: 60px 0 30px 0;
}

#footer .footer-top .container
{
	padding: 0 4rem;max-width: none;
}
@media (min-width:992px)
{
.five-column .col-lg-2{-ms-flex: 0 0 15%;flex: 0 0 15%;max-width: 15%;}
.five-column .col-lg-4{-ms-flex: 0 0 30%;flex: 0 0 30%;max-width: 30%;}
.five-column .col-lg-3{-ms-flex: 0 0 18%;flex: 0 0 18%;max-width: 18%;}
}

#footer .footer-top .footer-contact,#footer .footer-top .footer-links  
{
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 
{
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p 
{
    font-size: 1em;
    line-height: 24px;
    margin-bottom: 0;
}

#footer .footer-top h4 
{
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;text-transform: uppercase;
}

#footer .footer-top h4 a{color: #ffffff;}#footer .footer-top h4 a:hover{color: #f36d25;}
#footer .footer-top .footer-links ul 
{
    list-style: none;
    padding: 0 0 0 0px;
    margin: 0;
}

#footer .footer-top .footer-links ul li 
{
    padding: 10px 0;
    display: block;
    align-items: left;
}

#footer .footer-top .footer-links ul li:first-child 
{
    padding-top: 0;
}

#footer .footer-top .footer-links ul i 
{
    padding-right: 2px;
    color: white;
    font-size: 1.1rem;
    line-height: 1;
}

#footer .footer-top .footer-links ul a 
{
    color: #ffffff;
    transition: 0.3s;
    display: block;
    line-height: 1;font-size: 1.1rem;
}

#footer .footer-top .footer-links ul a:hover {color: #f36d25;}

#footer .footer-newsletter form 
{
    margin-top: 30px;
    background: #fff;
    padding: 5px 10px;
    position: relative;
    border-radius: 4px;
    text-align: left;
}

#footer .footer-newsletter form input[type="email"] 
{
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] 
{
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 1rem;
    padding: 0 20px;
    background: var(--orange);
    color: #231f20;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover 
{
    background: #e35052;
}

#footer .social-links a 
{
    font-size: 18px;
    display: flex;
    color: #ffffff;
    line-height: 1.5;
    padding: 4px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: left;
    transition: 0.3s;
}

#footer .social-links a i{font-size: 150%;margin-right: 8px;}

#footer .social-links a:hover 
{
    color: #f36d25;
    text-decoration: none;
}

#footer .footer-add p{margin-bottom: 8px;position: relative;padding-left: 32px;}#footer .footer-add a{color: #ffffff;}#footer .footer-add a:hover{color: #f36d25;}
#footer .footer-add p.call
{
	background: url("../img/Contact.png") left top no-repeat;
}


#footer .footer-add p.email{background: url("../img/Email.png") left top no-repeat;}
#footer .footer-add p.add{background: url("../img/Address.png") left top no-repeat;}
#footer .footer-top .footer-links ul .enq,#footer .footer-top .footer-links ul .supp{padding: 0;}
#footer .footer-top .footer-links ul .enq a{background: url("../img/Enquiry.png") left top no-repeat; padding:0px 0 8px 40px;line-height: 32px;font-weight: 600;}
#footer .footer-top .footer-links ul .supp a{background: url("../img/Support.png") left top no-repeat;padding:0px 0 8px 40px;line-height: 32px;font-weight: 600;}
.clients-carousel .owl-dots{display: block !important;top: 10px;position: relative;left: 0%;text-align: center;}
@media (min-width: 768px) {.dropdown-menu .dropdown .dropdown-menu {margin:0;border-width: 1px;}}
@media (min-width: 1023px) {
.dropdown-menu {margin-top: 0;}
.dropdown-menu .dropdown-toggle::after {vertical-align: middle;border-left: 4px solid;border-bottom: 4px solid transparent;border-top: 4px solid transparent;}
.dropdown-menu .dropdown .dropdown-menu {left: 100%;top: 0%;margin:0 20px;border-width: 0;}
.dropdown-menu > li a:hover,.dropdown-menu > li.show {background: #007bff;color: white;}
.dropdown-menu > li.show > a{color: white;}
.container.menu-item{justify-content: center;padding-top: 5rem;padding-bottom: 5rem;}
.dropdown-menu-full {
    border-top: none;
    border-left: none;
    border-right: none;
    margin-top: -5px;
	left:0;right:0px;border-top:0px solid var(--gray);border-radius:0;background:rgb(255, 255, 255);background: rgba(255, 255, 255, 0.95);
}

.columnWrap
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	z-index: 1003;
	transition: none;
	max-height: 1500px;
	overflow: hidden;
}

.header .menu-item-column 
{
    padding-right: 5%;
    padding-top: 2%;
    padding-bottom: 5%;
}
.nav-item .menu-item-contents {list-style: none;display: block;position: relative;text-align: left;padding: 10px 10px;max-width: 250px;color: #242020;overflow: hidden;min-width: 185px;}
.header .menu-item-column .menu-item-sub-col {
    float: left;
}
.nav-item .menu-item-contents {list-style: none;display: block;position: relative;text-align: left;padding: 0px 10px;max-width: 650px;color: #242020;overflow: hidden;min-width: 185px;}
.menu-item-content {padding: 0 10%;}
.dropdown-menu-full .form-row{justify-content:center;}.menu-item-sub-col{padding-right: 15px !important;}
.dropdown-menu {border-radius: 0;border-top: 2px solid #f37421;}
.dropdown-menu .dropdown-item,.header-scrolled .dropdown-menu .dropdown-item{padding:1rem 1rem;white-space:nowrap;border-radius:0px;color:#242020;font-size: 1rem;line-height: 1.5;}.dropdown-menu .dropdown-item:hover{color:#f47523;background-color: rgba(0, 0, 0, 0);}.dropdown-toggle::after{display: none;}
.dropdown-menu .dropdown-menu .dropdown-item,.header-scrolled .dropdown-menu .dropdown-menu .dropdown-item{white-space:normal;min-width: 240px;}

.menu-item-column .heading {
  color: #000000;
  border-bottom: 2px solid #6f6f6f;
  padding-left: 1%;
  padding-right: 1%;font-size: 100%;width: 100%;flex: 0 0 100%;margin-bottom: 0;
}
.dropdown-menu .menu-item-contents .dropdown-item{padding: 0.6rem 0;display: block;}
.header .navbar-nav li.menu-item-contents{padding-left: 1%;padding-right: 1%;}
.menu-sub-item{display: flex;flex-direction: row;flex-wrap: wrap;}
.header #main_navbar.navbar-expand-lg .menu-item-sub-col li{display: block;}
.header .navbar-nav li.menu-item-contents .submenu-seven{padding-left: 4%;}
.header .navbar-nav li.menu-item-contents .submenu-seven a{font-size: 80%;}
li.menu-item-contents.submenu-seven .dropdown-item:before {
  content: "-";
  display: inline;
  margin-left: -4%;
  padding-right: 5px;
}
}
.page-overlay, .page-overlay-header {
    position: fixed;
    height: 102vh;
    width: 100vw;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
    padding: 4rem 0 1rem 1rem;
    visibility: hidden;
    box-sizing: border-box;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
    -webkit-animation: page-overlay-fade-out 1s forwards;
    -moz-animation: page-overlay-fade-out 1s forwards;
    -ms-animation: page-overlay-fade-out 1s forwards;
    -o-animation: page-overlay-fade-out 1s forwards;
    animation: page-overlay-fade-out 1s forwards;
}
.header-overlay {
    opacity: .4;
    z-index: 1;
    visibility: visible;
    -webkit-animation: fade-in-menu-open 1s;
    -moz-animation: fade-in-menu-open 1s;
    -ms-animation: fade-in-menu-open 1s;
    -o-animation: fade-in-menu-open 1s;
    animation: fade-in-menu-open 1s;
    background-color: rgb(255, 255, 255);
}
@keyframes fade-in-menu-open {
0% {
    opacity: 0;
}
100% {
    opacity: .4;
}
    
}
@keyframes page-overlay-fade-out {
0% {
    opacity: .95;
}
100% {
    opacity: 0;
}
    
}

.unstyle{list-style-type:none;}
.bullet-list{width: 100%;display: block;}.bullet-list li{white-space:nowrap;background:#fff;border-left:4px solid var(--orange);padding:15px;font-size:1.2rem;font-weight:400;margin:12px;box-shadow:0px 0px 10px rgba(0,0,0,0.2);vertical-align:top;display:inline-block;}.bullet-list li i{font-size:2em;color:#00920d;margin-right:14px;vertical-align:middle;}.tagline{font-size:2rem;font-weight:200;}.big-font{font-size:1.6rem;font-weight:300;}
.heading span.big-font{font-weight:900;font-size:140%;}
.overlap-ligt-bg{background:rgba(255,255,255,0.9);padding:4rem;text-align:left;margin-left:-15rem;}

.prosess{padding:3rem 0;}.prosess h3{color:#000;margin-bottom:2rem;}
.process_slide_section{flex-wrap:wrap;display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: center;width: 100%;position: relative;cursor: pointer;}
.process_slide_section div.process_item {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-pack: start;-ms-flex-pack: start;justify-content: flex-start;-webkit-box-align: center;-ms-flex-align: center;align-items: center;text-align: left;padding: 0 20px 0 0;margin-right: 25px;position: relative;border-right: 1px solid #b7b7b7;margin:8px 25px 8px 0;}.process_slide_section div.process_item:last-child {border-right: 0px solid #b7b7b7;}
.ecommerce.process_slide_section{flex-wrap:wrap;}.ecommerce.process_slide_section div.process_item {margin-top:12px;margin-bottom:12px;}
.process_item::before {position: absolute;content: "\f0da";right: -7px;font: normal normal normal 18px/1 FontAwesome;color: #b7b7b7;top: 50%;transform: translate(0,-50%);-webkit-transform: translate(0,-50%);-moz-transform: translate(0,-50%);-ms-transform: translate(0,-50%);-o-transform: translate(0,-50%);}.ecommerce.process_slide_section div.process_item:before {display:none;}
.process_slide_section div.process_item:last-child::before {display:none;}
.process_slide_section div.process_item object, .process_slide_section div.process_item svg, .process_slide_section div.process_item img {font-size: 23px;color: #fff;width: 48px;-webkit-transition: background-color 0.5s;-o-transition: background-color 0.5s;transition: background-color 0.5s;height:48px;}
.process_slide_section div.process_item svg,.process_slide_section div.process_item object svg circle{fill: rgb(108, 108, 108);}
.process_slide_section div.process_item p{color:#333;padding-left:12px;margin: .5rem 0;}.process_slide_section div.process_item p span{font-weight:700;color:var(--orange);display:block;}







/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  width:100%;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
  background:#9f9f9f;
}
.team .member .member-img img{min-height:250px;object-fit:cover;width:100%;max-height:350px;}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #111111;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: #e03a3c;
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #111111;
}

.team .member .social i {
  font-size: 1.2rem;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #111111;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: .9rem;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}


.career .card {
    border-radius:0px;border:0px;
}
.career .card .card-body{margin-bottom:8px;background-color: #f7f7f9;padding:30px 37px;}
.career .card-header {
    padding: 0;
    min-height: 80px;
    background-color: #f7f7f9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 7px solid #fff;border-radius:0px;
}
.career .card-header a {
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    text-align: left;
    font-size: 1.3rem;
    color: #22292f;
    font-weight: 700;
    width: 100%;
    padding: 0 0 0 37px;
}
.career .card-header a:hover {background:none;box-shadow:none;text-decoration:none;}

.card-header a small {
    font-size: 1rem;
    text-transform: uppercase;
    display: block;
}
.open_wrapper_section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    padding: 21px 0 21px 30px;
}
.job_description h4 {
    font-size: 1.2rem;
    color: rgb(34, 41, 47);position:relative;margin-top: 38px;
    padding-bottom: 13px;
    position: relative;
    margin-bottom: 13px;
}
.job_description h4::after {
    position: absolute;
    left: 0%;
    bottom: 0;
    background-color: var(--orange);
    content: "";
    width: 27px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaec;list-style-type:none;margin-left:0px;padding-left:0px;
}
.job_description ul li {
    font-size: 15px;
    height: 2px;
}
.job_description ul {
    margin-top: 30px;
    color: rgb(108, 108, 108);
    letter-spacing: 0.3px;
    line-height: 22px;
    padding: 10px 0 10px 30px;
    position: relative;
}
.job_description ul li:after {
    content: "\f105";
    left: 0;
    font: normal normal normal 17px/1 FontAwesome;
    position: absolute;
    color: #000;
}

.caption{box-shadow: 0 0 black;border-left: 4px solid var(--orange);padding-left: 20px;}.caption h4{font-size:1.4rem;font-style:italic;}
.white-bg{background:#fff;padding:15px 30px;}
.technology-carousel{padding: 0 3rem;}.technology-carousel .owl-nav button{position:absolute;top:0%;height:100%;width:32px;outline:none;}.technology-carousel .owl-nav button span{font-size:3rem;}
.technology-carousel .owl-nav button.owl-next{right:0px;}.technology-carousel .owl-nav button.owl-prev{left:0px;}.technology-carousel .owl-nav button:hover{color:var(--orange);outline:none;}


.analyticsServices .blue-line {
    position: relative;
}
.blue-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--orange);
    transform: translateX(-50%);
}
.analyticsServices .img_wrap {
    max-width: 450px;
    padding: 30px 0;
}
 .text_wrap.text-right, .img_wrap.left-img {
    padding-right: 35px;
}
.text_wrap.text-left, .img_wrap.right-img {
    padding-left: 35px;
}
.text_wrap h4 {
    position: relative;font-weight:700;
}
.color_151 {
    color: #151515;
}
.fw_200 {
    font-weight: 600;
}
.fw_300 {
    font-weight: 600;
}
.fw_400 {
    font-weight: 600;
}
.fw_500 {
    font-weight: 600;
}
.fw_600 {
    font-weight: 600;
}
.fw_700 {
    font-weight: 600;
}
.fw_800 {
    font-weight: 600;
}
.fw_900 {
    font-weight: 600;
}
.analyticsServices .text_wrap p {
    max-width: 345px;
}
.color_333 {
    color: #333333;
}
.p_16 {
    font-size: 1rem;
}
.analyticsServices .img_wrap img {
    width: 100%;
}
.analyticsServices .text_wrap h4 .number_head {
    background-color: var(--orange);
    width: 52px;
    height: 52px;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    position: absolute;
    right: -76px;
    top: -10px;
    border: 5px solid #f9794c;
}
.analyticsServices .text_wrap.text-left h4 .number_head {
    left: -76px;
}

.center_big_font_block .center-block{max-width:1200px;padding:3rem;color:#000;}
.anal_services_block{padding:20px;}.anal_services_block .card{height:100%;}.anal_services_block .card img{margin-bottom:15px;max-width:100%;}.anal_services_block .card h3{color:#000;position:relative;padding-bottom:4px;margin-bottom:10px;font-size:1.4rem;}.anal_services_block .card h3:before{content:"";position:absolute;bottom:0px;left:50%;margin-left:-20px;width:40px;height:2px;background:var(--orange);}

.top-slide-wrapper{position:relative;color:#fff;}.top-slide-block{margin:3rem 0;padding:3rem;}.top-slide-wrapper h1{font-weight:400;}.top-slide-wrapper h1 b{font-weight:800;}
.top-slide-block p{max-width:600px;font-size:1.2rem;margin:20px auto 40px;}.top-slide-block:before, .top-slide-block:after{content:"";position:absolute;z-index:0;width:40%;height:30%;border:4px solid rgba(255,255,255,.5);}.top-slide-block:before{left:0;top:0;border-right:0;border-bottom:0;} .top-slide-block:after{bottom:0;right:0;border-left:0;border-top:0;}
.action-wrapper{padding:20px 15px;}

.mobile-system svg{width: 84px;height: 84px;color: #6d6d6d;fill: #6d6d6d;margin-bottom: 25px;}
.mobile-system .heading{font-size:1.3rem;margin-bottom:10px;}.mobile-system p{max-width:320px;margin:0 auto;}
.point-list{margin:0;padding:.5rem 0 2rem 0;list-style-type:none;}
.point-list li{position:relative;padding-left:30px;font-size:1.1rem;font-weight:700;padding-bottom:8px;}.point-list li i{position:absolute;top:0;left:0;font-size:1.4rem;color:var(--orange)}
.dedicated_bg{background: rgba(174,255,0,1);
background: -moz-linear-gradient(45deg, rgba(174,255,0,1) 0%, rgba(240,24,60,1) 59%, rgba(255,0,102,1) 100%);
background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(174,255,0,1)), color-stop(59%, rgba(240,24,60,1)), color-stop(100%, rgba(255,0,102,1)));
background: -webkit-linear-gradient(45deg, rgba(174,255,0,1) 0%, rgba(240,24,60,1) 59%, rgba(255,0,102,1) 100%);
background: -o-linear-gradient(45deg, rgba(174,255,0,1) 0%, rgba(240,24,60,1) 59%, rgba(255,0,102,1) 100%);
background: -ms-linear-gradient(45deg, rgba(174,255,0,1) 0%, rgba(240,24,60,1) 59%, rgba(255,0,102,1) 100%);
background: linear-gradient(45deg, rgba(174,255,0,1) 0%, rgba(240,24,60,1) 59%, rgba(255,0,102,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aeff00', endColorstr='#ff0066', GradientType=1 );position:relative;}
.dedicated_bg::before{background-image:url('../img/dedicated_developer_banner_bg.png');background-position:right top;background-repeat:no-repeat;background-size:auto 100%;content:"";width:100%;height:60%;right:0;left:0;position:absolute;}
.hire_img img{width:100%;}
.bollet-list{list-style-type:disc;padding-left:10px;}.bollet-list li{padding-bottom:12px;}
.adds_value.hire-colns .owl-hiretop {
    display: flex;
}
.adds_value.hire-colns .hirebox-colors {
    min-height: 290px;
    padding: 20px;
    background-color: #ff5f3f;
    margin-bottom: 30px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: 0px 10px 25px 0px rgba(248, 72, 139, 0.3);
    -webkit-box-shadow: 0px 10px 25px 0px rgba(248, 72, 139, 0.3);
    -moz-box-shadow: 0px 10px 25px 0px rgba(248, 72, 139, 0.3);
}
.adds_value.hire-colns .hirebox-colors h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;text-transform:uppercase;
}
.adds_value.hire-colns .hirebox-colors .hire-details {
    margin-top: 30px;list-style: none;padding:0;
}
.adds_value.hire-colns .hirebox-colors .hire-details li {
    color: #fff;
    margin-bottom: 15px;
}
.adds_value.hire-colns .hirebox-colors .hire-details li.line {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}
.adds_value.hire-colns .hirebox-colors.hc1 {
    background: linear-gradient(-35deg, #ff993f 0%, #ff531e 100%);
    -webkit-background: linear-gradient(-35deg, #ff993f 0%, #ff531e 100%);
    -moz-background: linear-gradient(-35deg, #ff993f 0%, #ff531e 100%);
}
.adds_value.hire-colns .hirebox-colors.hc2 {
    background: linear-gradient(-35deg, #e040fb 0%, #fe5e31 100%);
    -webkit-background: linear-gradient(-35deg, #e040fb 0%, #fe5e31 100%);
    -moz-background: linear-gradient(-35deg, #e040fb 0%, #fe5e31 100%);
}
.adds_value.hire-colns .hirebox-colors.hc3 {
    background: linear-gradient(-35deg, rgba(255,152,2,1) 0%, rgba(255,4,126,1) 100%);
    -webkit-background: linear-gradient(-35deg, rgba(255,152,2,1) 0%, rgba(255,4,126,1) 100%);
    -moz-background: linear-gradient(-35deg, rgba(255,152,2,1) 0%, rgba(255,4,126,1) 100%);
}
.adds_value.hire-colns .hirebox-colors.hc4 {
    background: linear-gradient(-35deg, #00c0ff 0%, #fb29c2 100%);
    -webkit-background: linear-gradient(-35deg, #00c0ff 0%, #fb29c2 100%);
    -moz-background: linear-gradient(-35deg, #00c0ff 0%, #fb29c2 100%);
}
.new-allTabs .hireTabs .nav-tabs {
    text-align: center;
    border-bottom: none;
    margin-top: 30px;margin-bottom:12px;display:block;
}
.new-allTabs .hireTabs .nav-tabs li {
    float: none;
    display: inline-block;
    vertical-align: top;
    margin: 5px;
}
.new-allTabs .hireTabs .nav-tabs li a {
    background-color: #ffffff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    font-weight: 600;
    border: none;
    color: #272727;
    padding: 15px 30px;text-transform:uppercase;
}
.new-allTabs .hireTabs .nav-tabs li a.active {background:var(--orange);color:#fff;}
.new-allTabs .hireTabs .tab-content {
    padding: 30px 0;
}
.new-allTabs h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
}
.new-allTabs .hireTabs .tab-content ul{list-style-type:none;padding:0;}
.new-allTabs .hireTabs .tab-content li {
    display: inline-block;
    margin: 13px 10px;
    vertical-align: top;
    background-color: #FFFFFF;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    box-shadow: 0px 10px 25px 0px rgba(139, 180, 226, 0.25);
    -webkit-box-shadow: 0px 10px 25px 0px rgba(139, 180, 226, 0.25);
    -moz-box-shadow: 0px 10px 25px 0px rgba(139, 180, 226, 0.25);
}
.new-allTabs .hireTabs .tab-content li a {
    display: block;
    width: 220px;
    padding: 35px 10px;
}
.new-allTabs .hireTabs .tab-content .hireTag li abbr {
    display: inline-block;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    background-position: center center;
}
.new-allTabs .hireTabs .tab-content .hireTag li span {
    display: block;
    color: #000;
    font-weight: 600;
    margin-top: 10px;
}
.stepscolorbg .owl-hirebottom {
    display: block;
}
.stepscolorbg .owl-hirebottom.color-steps{list-style-type:none;margin:0;padding:0;display:flex;align-items:center;flex-direction:row;flex-wrap: wrap;}.color-steps li{width:18%;position:relative;margin:12px 1%;background:#fff;height:100%;min-height:230px;border-radius:6px;color:#333;font-size:1.2rem;line-height:normal;overflow:hidden;padding:5px 5px 0px;transition:all ease-in-out 300ms;}
.hireStep{position:absolute;top:0;right:0;width:32px;background:var(--orange);color:#fff;line-height:32px;font-weight:600;transition:all ease-in-out 300ms;}.color-steps li .nme{padding:40px 12px 12px;}.color-steps li .nme i{background:url("../img/all-icon-img-1.png") left top no-repeat;width:60px;height:60px;margin:auto;display:block;margin-bottom:15px;transition:all ease-in-out 300ms;}
.color-steps li .nme.step2 i{background-position:0px -70px;}
.color-steps li .nme.step3 i{background-position:0px -142px;}
.color-steps li .nme.step4 i{background-position:0px -215px;}
.color-steps li .nme.step5 i{background-position:0px -286px;}
.color-steps li:hover{background:var(--orange);color:#fff;}
.color-steps li:hover .hireStep{background:#fff;color:var(--orange);}
.color-steps li:hover .nme i{background:url("../img/all-icon-img-1.png") right top no-repeat;}
.color-steps li:hover .nme.step2 i{background-position:right -70px;}
.color-steps li:hover .nme.step3 i{background-position:right -142px;}
.color-steps li:hover .nme.step4 i{background-position:right -215px;}
.color-steps li:hover .nme.step5 i{background-position:right -286px;}

.list-box-ios{background:#fff;border-radius:6px;overflow:hidden;box-shadow:0px 0px 12px rgba(255,42,0,.2);margin:3rem 0;padding:30px 20px}
.ios-beterServices.tab-add .list-box-ios li{display:flex;flex-direction:row;width:100%;}
.ios-beterServices.tab-add .list-box-ios li a{display:block;width:100%;padding:0px;background:#F5f5f5;margin-bottom:2px;}
.ios-beterServices.tab-add .list-box-ios li a span{display:inline-block;margin-right:12px;height:100%;background:rgba(0,0,0,0.1);padding:12px 8px;font-size:1.8rem;line-height:100%;vertical-align:top;}
.ios-beterServices.tab-add .list-box-ios li a h3{display:inline-block;font-size:1.3rem;padding:14px 0;margin:0;}
.ios-beterServices.tab-add .nav-tabs{border:0px;}.ios-beterServices.tab-add .nav-tabs .nav-link{border:0px;}.ios-beterServices.tab-add .nav-tabs .nav-link.active{background:var(--orange);color:#fff;}
.em-list .white-base{background:#fff;border-radius:50%;width:84px; height:84px;line-height:64px;font-size:3rem;display:block;margin:0 auto 15px;box-shadow:0 0 8px rgba(0,0,0,.2);padding:10px;}
.em-list .em-item{padding-bottom:20px;}
.em-list .white-base i{color:var(--orange);display:block;line-height:50px;margin-top:5px;}
.has-error{color:red;}
.form-message{background:#f3ffe8;border:1px solid #9dff45;border-radius:4px;color:#57b800;display:none;}
.form-group label.has-error{position: absolute;
    left: 5px;
    bottom: -11px;
    font-size: 12px;
    padding: 0px 8px;
    margin: 0;
    background: #ffdfdf;
    color: red;
    border: 1px solid red;
    border-radius: 0 0px 5px 5px;
}
.form-group {position: relative;}
ul.process_slide_section{list-style-type:none;text-align:left;padding:0;justify-content:left;}ul.process_slide_section li{list-style-type:none;margin-right:10px;margin-bottom:8px;padding:8px 12px;background:rgba(0,0,0,0.3);border-radius:4px;}ul.process_slide_section li:last-child{border:0px;}.slide-block{padding:3rem 0;}
.pro_modules.tab-content li a{font-weight:600;min-height:80px;vertical-align:middle;padding:15px 15px !important;display:flex !important;align-items:center;}.pro_modules.tab-content li a span{align-self:center;width:100%;margin:0 !important;}
.no-shadow{box-shadow:none !important;text-shadow:none !important;}
#cptchaQues{border:0px;padding:5px 12px;text-align:center;border-radius:0;font-size:2rem;font-weight:600;}
.address{background:url(../img/main_banner_bg.jpg) center right no-repeat;background-size:cover;padding:6rem 0;}
.branches_all_over_world span {
    font-size: 1.6rem;
    color: rgb(65, 69, 73);
    font-weight: 800;
    margin-bottom: 30px;
    display: block;
}
.branches_all_over_world {
    padding-left: 35px;
    padding-right: 35px;
    background-color: rgb(255, 255, 255);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.03);
    text-align: center;
    max-width: 663px;
    padding: 40px 87px 23px 87px;
    margin: 15px auto;
}
.branches_all_over_world address {
    font-size: 1.1rem;
    color: rgb(65, 69, 73);
    line-height: 24px;
    letter-spacing: 1px;
    padding-bottom: 20px;
    margin-bottom: 20px;
/* border-bottom: 1px solid #e4e4e4; */
}
.branches_all_over_world a{    color: rgb(65, 69, 73);font-weight: 500;letter-spacing: 0.5px;font-size:1.1rem;}.branches_all_over_world a i{font-size:1.5rem;margin-right:12px;vertical-align:middle;}
.figure{font-size:1.6rem;text-align:center;border-radius:6px;padding:12px 20px;margin:15px 0;border:1px solid #fff;line-height:normal;}.figure span{display:block;font-weight:800;line-height:normal;font-size:2.2rem;}
.new-allTabs .hireTabs .tab-content .hireTag li span i{display:block;font-size:4rem;color:var(--orange);font-weight:300;margin-bottom:20px;}
.normal-blocks .service-block{background:#fff;display:block;}.normal-blocks .col-md-4{padding:15px;}
.normal-blocks .service-block:after, .normal-blocks .service-block:before{z-index:-1;}
.main-wrapper {width: 100%;}.videowrapper.ytvideo {text-align: center;}.videowrapper iframe, .videowrapper video {height: 280px;max-width: 455px;width: 100%;}

.dark_bg
{
	padding: 3em 3.5em 2em;
	height:100%;
	background:	#F5F5F5;
}

/*.session
{
	padding:1rem 1.8rem 0.5 rem;
	height: 50;
	background:#111cj;
}*/

.icon
{
	background: center center no-repeat;
    background-size: auto 100%;
	margin-bottom: 0px;
}

.form
{
    border-radius: 6px;
    padding: 20px 30px;
    max-width: 900px;margin: 3rem auto 0;
}	

.text-primary 
{
    color: #f47621 !important;
}

.form .form-control{background: transparent;border-radius: 0;border: 0;border-bottom: 1px solid #00000040;padding-left: 0px;}
.form .form-control:focus{outline: 0;box-shadow: none;border-bottom: 1px solid #00000090;}
.form textarea.form-control{resize: none;height: 100px;}

.addressWrap p 
{
    position: relative;
    padding-left: 42px;
    padding-bottom: 15px;
}

addressWrap 
{
    padding: 20px 15px;
}

.addressWrap p:first-child svg 
{
    top: 5px;
}

.addressWrap svg 
{
    opacity: .7;
    position: absolute;
    top: 0px;
    left: 0px;
}

.btn:not(:disabled):not(.disabled) 
{
    cursor: pointer;
}

.btn.btn-lg 
{
    padding: .8rem 2.4rem;
    font-size: .94rem;
}
.btn svg{width: 16px;height: 16px;}
.btn-primary, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle 
{
    color: #fff;
    background-color: var(--darkBg) !important;
    border-color: var(--darkBg) !important;
}

.btn-primary 
{
    background-color: #f47621!important;
    color: #fff;border-color: #f47621!important;
}

.welcome-blocks .col-6
	{
		padding-bottom:30px;
	}
	
.welcome-blocks
	{
		height:100%;
	}

.box1, .box2, .box3, .box4
	{
		background-color: #f37126;border-radius: 6px;
	}
.box2, .box3
	{
		background-color: #003699;
	}

.boxblock{padding: 1.5rem;}

.box1 h4, .box1 p, .box2 h4, .box2 p, .box3 h4, .box3 p, .box4 h4, .box4 p
	{ 
		text-align:center; 
		position:relative;
		overflow:hidden;
		color:white;
	}

.box1 .icon, .box2 .icon, .box3 .icon, .box4 .icon
	{
		height:100px;
		width:100px;
		text-align: center;
		display: block;
		margin: 0 auto;
	}

.boxblock .icon img
	{
		margin: auto;
		display: inline-block;
	}

.boxblock h4
	{
		font-weight: 600;
		font-size: 1.3rem;
		padding: 0;
		margin: 0 0 1rem;min-height: 70px;
	}

.boxblock p
	{
		font-size: .9rem;
		max-width: 230px;
		margin: 0 auto;
	}

.read a
	{
		padding: 8px 15px;
		font-size:1rem;
		border-radius:6px;
		background-color: #f47523;
		color:#FFF;
		text-decoration:none;
		line-height:26px;
		display:inline-block;
	}	
		
.read a:hover
	{
		background:#000;
	}

.aboutbox
	{
		width: 350px;
		background-color: #f37126;
		position: absolute;
		border-radius: 15px;
		left: -50px;
		bottom: 50px;
	}

.about .aboutbox
	{
			margin-left:355px;
	}

.aboutblock h2, .aboutblock p
	{
		text-align:left; 
		position:relative;
		overflow:hidden;
		padding:22px 25px 10px 25px;
	}

section{padding:100px 0;}
.gray_bg
{
	background:#f8fbfe url('../img/bread-bg.png') center top no-repeat !important;background-size:cover;
	}

.product
{
	background: #fff url('../img/cards-bg.png') center center no-repeat;background-size:cover;
	border-radius: 6px;
	overflow: hidden;
	padding-bottom: 12px;
	text-align: left; 
	margin-top:30px;
	height:100%;
}

.productImg
{
	display:block;
	margin-bottom:25px;
}
	
.productImg img
{
	width:100%;
	max-height:298px;
	object-fit:cover;
}

.productDisc
{
	position:relative;
	padding:47px 1.5rem 12px;
	text-align:center;
	text-overflow: ellipsis;
}

.productDisc .icon
{
	background:transperant;
	border:1.5px dashed #f47523;
	padding:5px;border-radius:50%;
	position:absolute;top:-25px;left:50%;transform:translate(-50%, -50%);
}

.productDisc .icon span
{
	display:block;
	width:100%;height:100%;
	background-color:#f47523;border-radius:50%;padding:30px;
}

.productDisc .icon span img
{
	max-width:50px;max-height:50px;
}	

.productDisc{margin-top:28px;}

.productDisc h3
{
	font-size:1.25rem;
}

.productDisc p
{
	font-size:0.9rem;
	font-weight:300;
	min-height:152px
}
.service-slider .slick-dots{position: relative;bottom: -30px;}
.service-slider .slick-dots button{background: #9c9c9c;}
.service-slider .slick-dots .slick-active button {
  background: #f37126;
}





/* Service Page*/

.rowclass
{
	margin-bottom:32px;
}

.services
{
	background: #fff url('../img/cards-bg.png') center center no-repeat;background-size:cover;
	border-radius: 6px;
	overflow: hidden;
	text-align: left; 
	margin-top:30px;
	height:100%;
}

.services:hover
{		
	box-shadow:0px 10px 27px 0px rgb(50 50 50 / 18%);
}

.servicesImg
{
	display:block;
	margin-bottom:20px;
}
	
.servicesImg img
{
	width:100%;
	max-height:300px;
	object-fit:cover;
}

.servicesDisc
{
	position:relative;
	padding:47px 1.5rem 12px;
	text-align:center;
}

.servicesDisc h3
{
	font-size:1.25rem;
}

.servicesDisc p
{
	font-size:0.9rem;
	font-weight:300;
	min-height:70px;
}

.servicesDisc .icon
{
	background:transperant;
	border:1.5px dashed #f47523;
	padding:5px;border-radius:50%;
	position:absolute;top:-25px;
	left:50%;transform:translate(-50%, -50%);
}

.servicesDisc .icon span
{
	display:block;
	width:100%;height:100%;
	background-color:#f47523;border-radius:50%;padding:30px;
}

.servicesDisc .icon span img
{
	max-width:50px;max-height:50px;
}	


/*  About Features Part */

.Feathead h3
{
	font-size:1.6rem;
	font-weight:600px;
	text-align:center;
}
		
.Feathead p
{
	font-size:1.2rem;
	text-align:center;
	margin: 30px 120px 80px 120px;
}
		
.Features
{
	width:100%;
	min-height:100%;
	background:#FFF;
	border-radius:20px;
}		
		
.Features:hover
{		
	box-shadow:0px 10px 27px 0px rgb(154 161 171 / 18%);
}
		
.Features .icon{text-align:center;padding:22px 20px;}
.Features .icon img
{
	max-height:125px;
	max-width:100%;
}

.Features .disc
{
	padding:10px 22px 30px;
	text-align:center;
}		

.Features h4
{
	font-size:1.6rem;
	text-align:center;
	margin-bottom:18px;
}
		
.Features p
{
	font-size:1rem;
	padding: 12px 0px 0px;
	margin-bottom:45px;
	text-align:center;
}
		
.Features a
{
	padding: 8px 15px;
	font-size:1rem;
	border-radius:6px;
	background-color: #f47523;
	color:#FFF;
	text-decoration:none;
	line-height:26px;
	display:inline-block;
}	
		
.Features a:hover
{
	background:#000;
}
		
		
		
.client
{
	width:100%;
	min-height:100%;
	background:#f3f2f3;
	border-radius:20px;
}	

.client .image img
{
	width:30%;
	height:30%;
	border-radius:50%;
	margin: 35px 233px 30px;
}

.client .disc
{
	padding:10px 22px 30px;
	text-align:center;
}
		
.client h6
{
	font-size:1.5rem;
	text-align:center;
	margin-bottom:18px;
	color: #f37126;
}
		
.client p
{
	font-size:1rem;
	padding: 12px 20px 0px;
	margin-bottom:45px;
	text-align:center;
}		
		
	
/* Index 1Block */	
.indexbox
{
	width:90%;
	background-color:#f37126;
	position: relative;
}

.indexbox:after
{
	content: "";
	background-color:#f37126;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	right: -25px;
	bottom: -25px;
}

.indexbox img
		{
			width:100%;
			height:auto;
			overflow:hidden;
      max-height: 720px;object-fit: cover;
      box-shadow: 0 0 10px rgba(255, 81, 0, 0.3);
		}
		
.indexblock p
		{
			font-size:1rem;
			padding-bottom:20px;
		}

h4.section-label
		{
			font-size:.9rem;
			margin-bottom:20px;
      font-weight: 400;
      position: relative;
      padding-left: 10px;
		}
h4.section-label:before{
  width: 18px;
  height: 32px;
  margin: 0;
  background: var(--marun);
  opacity: .5;
  transform: skew(-10deg);
  content: "";
  position: absolute;
  left: 0px;
  top: -10px;
  z-index: -1;
}
		
.indexblock h3, .title
{
    font-size: 2.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.2rem;
}	
		
.subblock
{
	display:flex;
	flex-direction:row;
	background:#f5f5f5;
	align-items:center;
	padding:15px;
}	

.subcont
{
	padding:0 15px;
}

.subblock .icon img
{
	max-height:50px;
	max-width:50px;
}	

.subblock .subcont p
{
	font-size:0.8rem;
	padding:0px;
	margin: 0;
}	
		
.subblock .subcont h6
{
	font-size:1.2rem;
	color:#f37126;
	padding:0px 0px 0 0px;
	margin: 0 0 6px;
}	
		
.indexblock a
{
	padding: 8px 25px;
	font-size:1rem;
	border-radius:6px;
	background-color: #f47523;
	color:#FFF;
	text-decoration:none;
	line-height:26px;
	display:inline-block;
	margin-top:1rem;
}	
		
.indexblock a:hover
{
	background:#000;
}

.section-title p
{
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  color: rgb(110, 110, 110);
  font-weight: 300;
}

.form-control
{
	padding: 10px 15px;
	line-height: 30px;
	height: auto;
	font-size: 13px;
}

/*Footer*/
.footer-content-area 
{
    padding: 100px 0 20px;
	background:#200504 url('../img/footer_bg.png') right top no-repeat;background-size:cover;
	color:#fff;
}

.footer-logo 
{
    margin-bottom: 15px;
}
.copywrite_text > p 
{
    margin-bottom: 20px;
    color: #fff;
    font-size: 13px;
}

.footer-content-area.spec p 
{
    color: #f5f5f5;
}

.footer-social-info a 
{
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    text-align: center;
    background: var(--marun);
}

.footer-social-info a i 
{
    font-size: 14px;
    color: #fff;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.contact_info_area .contact_info 
{
    text-align: left !important;
}

.contact_info_area .contact_info h5 
{
    font-size: 1rem;font-weight:600;
}

.light-version .single-mission h6, .light-version .single-mission p, .light-version .welcome-content h2, .light-version .cool_fact_detail h3, .light-version .cool_fact_detail h2, .light-version .cta-content h2, .light-version .cta-content p, .contact_info_area .contact_info h5 
{
    color: #fff;
}

.contact_info_area .contact_info p 
{
    margin: 3px 0;
    font-size: 14px;
}

.contact_info_area .contact_info a:hover p 
{
    color: #fff;
}

.contact_info_area .contact_info p 
{
    margin-bottom: 0;
    font-size: 14px;
}

.copyright
{
	padding:16px 0 0;
	margin-top:20px;
	font-size:14px;
	border-top:1px solid rgba(255,255,255,.5);
}


/* Service Page */
.service_img{position: relative;}
.service_img img
{
	position: relative;z-index: 1;width: 100%;
}
.service_img:before{position: absolute;content: "";right: -40px;top: 6rem;width: 80%;height: 95%;border: 10px solid #000;z-index: 0;}

.producthead
{
	margin-bottom:75px;
}

/* Header slider breadcrumb operation */

ul.breadcrumb 
{
  width: 100%;
  height: 50px;
  list-style: none;
  background-color: transparent;padding: 10px 0px;
}

ul.breadcrumb li 
{
  display: flex;
  font-size: 1rem;height:auto;align-items: center;color: #fff;
}

ul.breadcrumb li+li:before 
{
  padding: 8px;
  color: white;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #e76668;
  text-decoration: none;font-size: 1rem;padding: 10px 0;
}
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}
ul.breadcrumb li+li:before {padding: 8px 2px;text-align: center;}

/* Index new part */

.img_block img
	{
		border-radius: 15px;
	}
	
.img_block img:hover
	{		
		box-shadow:0px 14px 30px 0px rgb(154 161 171 / 22%);
	}	
	
	

/* customer Testmionals */

.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    z-index: 999;
}
.white-heading{
    color: #ffffff;
}
.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
    background: url(img/heading-line.png);
    background-repeat: no-repeat;
    background-position: center;
}
.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}
.white-heading span {
    color: #ffffff;
}
/*-----Testimonial-------*/

/*.testimonial:after 
{
    position: absolute;
    top: -0 !important;
    left: 0;
    content: " ";
    background: url(img/testimonial.bg-top.png);
    background-size: 100% 100px;
    width: 100%;
    height: 100px;
    float: left;
    z-index: 99;
}*/

.testimonial 
{
    min-height: 375px;
    position: relative;
    background: url(https://i.ibb.co/PTJDkgb/testimonials.jpg);
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: center;
        background-size: cover;
}

#testimonial4 .carousel-inner:hover
{
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

#testimonial4 .carousel-inner:active
{
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

#testimonial4 .carousel-inner .item
{
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators
{
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}

.testimonial4_indicators .carousel-indicators li
{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators .active
{
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar
{
  height: 3px;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb
{
  background: #eeeeee;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control
{
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
  transition: all 0.6s cubic-bezier(0.3,1,0,1);
}

.testimonial4_control_button .carousel-control.left
{
  left: 7%;
  top: 50%;
  right: auto;
}

.testimonial4_control_button .carousel-control.right
{
  right: 7%;
  top: 50%;
  left: auto;
}

.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover
{
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header
{
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}
.testimonial4_header h4
{
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide
{
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}

.testimonial4_slide img 
{
    top: 0;
    left: 0;
    right: 0;
    width: 136px;
    height: 136px;
    margin: auto;
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    line-height: 46px;
    text-align: center;
    position: relative;
    border-radius: 50%;
    box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial4_slide p 
{
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
}

.testimonial4_slide h4 
{
  color: #ffffff;
  font-size: 22px;
}

.testimonial .carousel 
{
	padding-bottom:50px;
}

.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon 
{
    width: 35px;
    height: 35px;
}




/* Photo Gallary 
 
h2{
  text-align:center;
  padding: 20px;
}*/
/* Slider */

.slick-slide {
    margin: 0px 20px;
	display: block;
}

.slick-slide img {
    width: 100%;
	/* height: 500px; */
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.elementor-icon {
  color: #f37126;
  border-color: #f37126;
  font-size: 50px;position: relative;
  width: 60px;
}
.elementor-icon i, .elementor-icon svg {
  width: 50px;
  height: 50px;
  position: absolute;
  display: block;
  top: 50%;transform: translateY(-50%);
}
.elementor-text {display: block;width: 100%;padding-left: 15px;text-align: left;}
.elementor-text h2{text-align: left;color: #031B4E;font-size: 3rem;font-weight: 600;}
.elementor-text h2 .extra-count{font-size: 2rem;font-weight: 400;vertical-align:super;}
.elementor-text p{margin-bottom: 0px;color: #1C2A4D;font-size: 1.1rem;}
.process{padding: 4rem 0;}
.responsive-flow {
  padding: 2rem 0 30px;
  max-width: 1140px;margin: 0 auto;
}
.res-low-content {
  display: inline-block;
  vertical-align: bottom;
  text-align: center;
  width: 39.5%;
}
.res-low-content p {
  max-width: 275px;
  margin: 5px auto;
  font-size: 14px;
}
figure {
  margin: 0;
}
.responsive-flow figure img {
  margin: 0 auto;
  display: block;
    max-width: 100%;
    height: auto;
}
.responsive-flow-row.text-right .res-low-content {
  vertical-align: top;
}
.row-reverse{flex-direction: row-reverse !important;}
.indexblock p.highlight,.highlight{margin: 0 0 20px 0;font-size: 1.8rem;border-left: 5px solid #f37126;padding: 0 0 0 20px;font-weight: 600;color: #000;}
.backgroundOverlay{background-image: url('../img/gray_bg_img.jpg');opacity: 0.25;height: 100%;width: 100%;top: 0;left: 0;position: absolute;z-index: 0;}
.process.gray_bg{background: #f8fbfe;position: relative;}
.process.gray_bg .container{position: relative;z-index: 1;}
.subtitle{font-size: 1rem;text-transform: uppercase;letter-spacing: 2px;font-weight: 300;color: #f37126;}
.customer-logos .slick-slide{margin: 0;background: #f37126;}.customer-logos .slick-slide img{width: 100%;min-height: 450px;object-fit: cover;transition: all ease-in-out 300ms;max-height: 450px;}.customer-logos .slick-slide:hover img{opacity: 0.7;}

.contact-blog{background-image: url(../img/microscope-in-laboratory.jpg);background-position: 0% 67%;background-repeat: no-repeat;background-size: cover;padding: 50px 0px 50px 0px;position: relative;}
.contact-blog > .elementor-background-overlay {background-color: #f37126;opacity: 0.85;}
.elementor-background-overlay {height: 100%;width: 100%;top: 0;left: 0;position: absolute;z-index: 0;}
.contact-blog .container, .contact-loacation .container{position: relative;z-index: 1;}
.contact-loacation {position: relative;padding: 3rem 0;}
.contact-loacation .elementor-background-overlay{filter: brightness( 135% ) contrast( 125% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );background-image: url(../img/map.png);background-position: 97% 70%;background-repeat: no-repeat;background-size: 49% auto;opacity: 1;}

.add-icon-box-wrapper{display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: start;-ms-flex-align: start;align-items: flex-start;text-align: left;border-top: 1px solid #b7bbc9;padding-top: 1.2rem;}
.add-icon-box-wrapper .icon-box.icon-box-header {margin-right: 15px;position: relative;z-index: 2;line-height: 0;}
.add-icon-box-wrapper .icon-box > .icon {color: #f37126;margin: 0px 0px 0px 0px;padding: 5px 0px 0px 0px;height: 40px;width: 40px;}
.add-icon-box-wrapper .icon-box > .icon i {font-size: 40px;}
.add-icon-box-wrapper .icon-box.icon-box-body {
  position: relative;
  z-index: 2;
}
.add-icon-box-wrapper .title {
  margin: 0px 0px 10px 0px;
  color: #1d0e05;
  font-size: 1.5rem;
  font-weight: 600;
  line-height:1.2;
  letter-spacing: 1px;padding: 0;
}
.icon-box.icon-box-body .icon-box-description {
  color: #8A91AC;
  font-size: 1rem;
  font-weight: 400;
  margin: 0px 0px 0px 0px;
}
.btn{padding: .8rem 1.2rem;border-radius: 8px !important;min-width: 140px;}
.btn.bg-blue{background-color: #003699 !important;}
body p{color: #686868;}
.slick-arrow {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
}
.slick-prev {
  left: -25px;
}
[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}
.next-arrow, .next-arrow:focus, .next-arrow:hover, .prev-arrow, .prev-arrow:focus, .prev-arrow:hover {
  color: transparent;
  outline: none;
  background: transparent;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}
.custom-icon-slick-arrow .next-arrow, .custom-icon-slick-arrow .prev-arrow {
  transition: all .3s ease-in-out;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  bottom: -80px;
}

.custom-icon-slick-arrow .prev-arrow:after {
  transform: rotate(180deg) scale(.8);
}
.custom-icon-slick-arrow .next-arrow svg, .custom-icon-slick-arrow .prev-arrow svg {
  font-size: 40px;
  color: #5d5d5d;
  transition: all .3s ease-in-out;
  display: inline-block;
  width: 32px;height: 32px;
}
.custom-icon-slick-arrow .prev-arrow {
  transform: translateX(-45px);
}
.custom-icon-slick-arrow .next-arrow {
  transform: translateX(45px);
}
.custom-icon-slick-arrow .slick-arrow svg {
  transform: rotate(0) scale(.8);
}
.custom-icon-slick-arrow .slick-arrow:hover svg {
  transform: rotate(0) scale(1);
}
.clientSliderFive p {
  font-size: 1.5rem;
  line-height: 1.4;
  padding-bottom: 2.8rem;
  color: rgba(44, 44, 44, 0.7);
}
.clientSliderFive .name {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000;
}
.clientSliderFive {
  text-align: center;
}
.client-feedback-slider-five .circle-area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 46%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
}
.client-feedback-slider-five .circle-area .main-img {
  margin: 0 auto;
  max-height: 105%;
}

.inner_banner .hero-container{max-height: 370px;min-height: 170px;}
.no-shadow.indexbox:after{display: none;}
.no-shadow.indexbox img{box-shadow: none;}

.gradaentBg{background-color: transparent;background-image: linear-gradient(90deg, #00000000 60%, #f37126 0%);}

.accordion .card{background: transparent;padding: 0;border: 0px;overflow: visible;margin: 0 0 12px 0;}
.accordion>.card>.card-header{background: #fff;margin: 0;padding: 0;border: 0;}
.accordion>.card>.card-header a.btn{display: block;margin: 0;padding: 20px 80px 20px 20px;background: #fff;border-radius: 0;color: #575A5F;text-align: left;font-size: 1.2rem;font-weight: 600;line-height: 1.2;box-shadow: 0 0 5px rgba(0,0,0,0.2);}.accordion>.card>.card-header a.btn:hover{background: #f5f5f5 !important;}
.accordion>.card>.card-header a.btn.btn-header-link:not(.collapsed),.accordion>.card>.card-header a.btn.btn-header-link:hover:not(.collapsed){background: #f37126 !important;color: #fff;}
.accordion .card .card-body h6,.accordion .card .card-body h5,.accordion .card .card-body h4,.accordion .card .card-body h3,.accordion .card .card-body h2,.accordion .card .card-body h1,.accordion .card .card-body p{margin-bottom: 1rem;}
.card-header a::after {
  content: "\ee51";
  font-family: 'jkiticon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
  width: 60px;
  height: 63px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  line-height: 63px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
}
.card-header a.collapsed::after {
  content: "\efc9";
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  color: #000;
}
.team{margin-bottom: 20px;width: 100%;}
.team .profile-card{border-radius: 0px 0px 0px 0px;position: relative;overflow: hidden;display: inline-block;width: 100%;z-index: 0;}
.team .profile-card:before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,.7);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 0;
  visibility: hidden;
}
.team .profile-card:hover:before {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.profile-card>img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;max-height: 500px;
}
.profile-card .hover-area {
  position: absolute;
  z-index: 2;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.profile-card .hover-area.alignment-center {
  top: 50%;
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
}
.profile-card:hover .hover-area {
  opacity: 1;
  visibility: visible;
}
.profile-card:hover .hover-area.alignment-center {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.team .profile-body {
  padding: 20px 20px 20px 20px;
}
.social-list {
  text-align: center;list-style: none;
  padding: 0;
  margin: 0;
}
.social-list .social-icon {
  display: inline-block;margin-right: 10px;
}
.social-list .social-icon a {
  display: inline-block;
  width: 30px;
  height: 30px;
  font-size: 12px;
  line-height: 32px;
  text-align: center;
  color: #f37126;
  background-color: #fff;
  border-radius: 50%;
}
.social-list .social-icon a {
  font-size: 16px;
  height: 40px;
  width: 40px;
  line-height: 40px;overflow: hidden;
}
.social-list .social-icon:hover a {
  color: #FFFFFF;
  background-color: #f37126;
}
.social-list .social-icon svg {width: 18px;height: 18px;}
.social-list .social-icon:hover svg {
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-name: jkit-scrolling-vertical;
  animation-name: jkit-scrolling-vertical;
}
.team-details{width: 100%;position: relative;z-index: 1;}
.details-container {
  margin: -85px 60px 0px 0px;
  padding: 20px 40px 20px 40px;
  background-color: #FFFFFF;
  box-shadow: 10px 5px 15px 0px rgb(0 0 0 / 10%);
}
.details-container .heading-section-title {
  margin: 0px 0px 5px 0px;
}
.details-container .heading-section-title h2 {font-size: 1.3rem;font-weight: 600;color: #f37126;line-height: 1.2;}
.heading-section-description {color: #8A91AC;font-size: 1rem;}
@-webkit-keyframes jkit-scrolling-vertical{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}49%{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}50%{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes jkit-scrolling-vertical{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}49%{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}50%{-webkit-transform:translateY(-100%);transform:translateY(-100%);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}
.owl-carousel button.owl-dot{display: inline-block;}
.elementor-widget-wrap{box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin: 0px 10px 0px 10px;padding: 0px 40px 20px 40px;background-color: #FFFFFF;min-height: 100%;}
.elementor-widget-icon{margin-bottom: 0px;width: 100%;position: relative;}
.elementor-widget-container {
  margin: 0px 0px 0px 0px;
}
.elementor-widget-icon .elementor-widget-container {
  position: relative;top: -30px;
}
.elementor-icon-wrapper{text-align: left;}
.elementor-icon-wrapper .elementor-icon {
  background-color: #3368C6;color: #FFFFFF;border-color: #FFFFFF;font-size: 30px;padding: 20px;width: auto;display: inline-block;
}
/* .elementor-icon:hover {
  background-color: #031B4E;
} */
.elementor-animation-float {
  transition-duration: .3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.elementor-icon i, .elementor-icon svg {
  width: 2rem;
  height: 2rem;
  position: relative;
  display: block;    top:auto;
  transform: translateY(0%);
}
.elementor-animation-float:hover {
  transform: translateY(-8px);
}
.jkit-icon-box-wrapper {
  text-align: left;
  background-color: #FFFFFF;
  padding: 0px 0px 10px 0px;
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-radius: 0px 0px 0px 0px;
  position: relative;
}
.icon-box.icon-box-body {
  position: relative;
  z-index: 2;
}
.icon-box.icon-box-body .title {
  margin: 0px 0px 15px 0px;
  padding: 0px 0px 0px 0px;
  color: #f37126;font-size: 1.3rem;font-weight: 600;line-height: 1.2;
}
.icon-box.icon-box-body .icon-box-description {color: #8A91AC;font-size: 1rem;}
.icon-box .hover-watermark {
  position: absolute;
  bottom: -50px;
  right: 0;
  opacity: 0;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  z-index: 1;
}
.icon-box .hover-watermark i {
  color: #F5F5F5;
  font-size: 70px;
}
.icon-box:hover .hover-watermark{bottom:0;opacity:1;}
.bt-0{border-top: 0px !important;}
.relative{position: relative !important;}
.mt-0{margin-top: 0 !important;}
.mb-0{margin-bottom: 0 !important;}
.mr-0{margin-right: 0 !important;}
.ml-0{margin-left: 0 !important;}
.ml-auto{margin-left: auto !important;}
.mr-auto{margin-right: auto !important;}
.mx-auto{margin-left: auto !important;margin-right: auto !important;}
.text-left{text-align: left !important;}
.text-right{text-align: right !important;}

.quickLinks-wrap {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  width: 98px;
  align-items: center;
  pointer-events: none;
}
.quickLinks {
  width: 98px;
  z-index: 102;
  right: 0;
  pointer-events: auto;
  transform: translateY(-100px);
}
.quickLinks:not(.stuck) {
  transform: translateY(0) !important;
}
.quickLinks .container {
  margin: 0px auto;padding: 0;
}
.quickLinks:not(.stuck) > .container > .row {
  flex-direction: column;
}
.quickLinks:not(.stuck) > .container > .row > .col {
  width: 100%;
  min-height: inherit;
}
.quickLinks .col > .link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3px 12px;
  min-height: 98px;
  background-color: #f37126;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 11px;
  line-height: 14px;
  font-family: "Poppins", serif;
  text-transform: uppercase;
  transition: background-color 0.3s;
}
.quickLinks .col:nth-child(1) > .link {
  background-color: #ff8c4a;
}
.quickLinks .col:nth-child(2) > .link {
  background-color: #ff8741;
}
.quickLinks .col:nth-child(3) > .link {
  background-color: #fc8038;
}
.quickLinks .col > .link > [class*='fa-'] {
  font-size: 38px;
  line-height: 1.3em;
}
.quickLinks .link-drop {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: #f5f5f5;
  color: #424242;
  padding: 30px;
  top: 100%;
  left: 0;
  width: 390px;
  max-width: 100vw;
  transform: translateY(-20px);
  z-index: -1;
  transition: opacity 0.3s ease-in-out 0s, transform 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  pointer-events: none;
  text-align: left;
  text-transform: none;
  box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
}
.quickLinks:not(.stuck) .link-drop {
  left: -390px !important;
  top: 0;
  right: auto !important;
  transform: translateY(20px);
}
.quickLinks .google-map {
  width: 390px;
  max-width: 100vw;
  height: 312px;
}
.contact-map iframe, .google-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
body:not(.touch) .quickLinks .col > .link:hover, .quickLinks .col > .link.active {
  text-decoration: none;
  color: #f37126;
  background-color: #fff !important;
  box-shadow: inset 0 8px 8px rgb(0 0 0 / 5%);
}
body:not(.touch) .quickLinks .col:hover .link-drop, body.touch .col.hovered .link-drop {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%) !important;
  transition-delay: 0s, 0s, 0s, 0.3s;
  pointer-events: auto;
}
.quickLinks .link-drop-title {
  text-transform: none;
  margin-bottom: 18px;
}
.link-drop .row-table {
  width: 100%;
  max-width: 400px;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}
.quickLinks .link-drop .row-table {
  width: 100%;
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
  color: #787878;
}
.quickLinks .link-drop .row-table tr:not(:last-child) {
  border-bottom: 1px solid #ededed;
}
.quickLinks .link-drop .row-table td {
  padding: 5px 0;
}
.link-drop .row-table i {
  color: #787878;
  font-style: normal;
}
.quickLinks .link-drop .row-table td:last-child {
  text-align: right;
  color: #444;
  padding-right: 5px;
  padding-left: 5px;
}
.quickLinks .link-drop-title > [class*='fa-'] {
  position: relative;
  top: 3px;
  font-size: 25px;
  line-height: 1em;
  color: #f37126;
  padding-right: 10px;
}
.successform, .errorform {
  display: none;
  min-height: 50px;
}
.errorform {
  color: #c0392b;
}
.successform {
  color: green;
}
.successform, .errorform {
  margin-top: 15px;
}
.quickLinks .link-drop p {
  font-size: 15px;
  line-height: 24px;
}
.input-group {
  position: relative;
  align-items: flex-start;
  flex-wrap: wrap;
}
.input-group [class*='fa-'] {
  display: inline-block;
  top: 4px;
  margin: 0 4px;
  position: relative;
  z-index: 3;
  color: #f37126;
  font-size: 18px;
  line-height: 35px;
  width: 35px;
  text-align: center;
}
.link-drop .input-group [class*='fa-'] {
  top: 1px;
}
.link-drop .input-group .form-control {
  border: none;
  background-color: transparent;
  font-size: 15px;
  line-height: 19px;
  padding: 7px 10px 8px 0;
  min-height: 0;
  height: 35px;
  max-height: 35px;
}
.input-group .form-control:not(:first-child), .input-group-addon:not(:first-child), .input-group-btn:not(:first-child) > .btn, .input-group-btn:not(:first-child) > .btn-group > .btn, .input-group-btn:not(:first-child) > .dropdown-toggle, .input-group-btn:not(:last-child) > .btn:not(:first-child), .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group .form-control:last-child {
  padding-left: 0 !important;
}
.link-drop .input-group .form-control {
  border: none;
  background-color: transparent;
  font-size: 13px;
  line-height: 19px;
  padding: 7px 10px 8px 0;
  min-height: 0;
  height: 35px;
  max-height: 35px;color: #000;z-index: 3;
}
.input-group:after {
  position: absolute;
  z-index: 1;
  border-radius: 5px;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 43px;
  background-color: #fff;
  border: 1px solid #d5d5d5;
  transition: 0.2s;
  pointer-events: none;
}
.link-drop .input-group:after {
  height: 35px;
  border: 0;
}
.row.row-sm-space {
  margin-left: -8px;
  margin-right: -8px;
}
.row.row-sm-space [class*='col'] {
  padding-left: 8px;
  padding-right: 8px;
}
.mt-2, .my-2 {
  margin-top: 20px !important;
}
ul.icn-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 24px;
}
ul.icn-list li {
  position: relative;
  padding-left: 35px;
}
ul.icn-list li:not(:last-child) {
  margin-bottom: 18px;
}
.quickLinks ul.icn-list li {
  padding-left: 24px;
}
ul.icn-list li > [class*='fa'] {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #f37126;
}
.quickLinks ul.icn-list li > [class*='fa'] {
  top: 6px;
  font-size: 14px;
}
.quickLinks ul.icn-list li .phone {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #424242;
  position: relative;
  top: -2px;
}
.quickLinks .icn-list a{color: #424242;}
.quickLinks .icn-list a:hover{color: var(--orange);}
.input-group .form-control:focus, .input-group .form-control:active, .input-group .form-control:hover {
  z-index: 3;
}
.input-group:hover:after {
  box-shadow: 0 0 0 3px rgb(0 0 0 / 5%);
}
.imgGal{display: flex;flex-direction: row;}
.imgGal img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: all ease-in-out 300ms;
  max-height: 250px;
  max-width: 20%;
}
.imgGal.two img{max-width: 50%;}
.imgGal.three img{max-width: 33.33%;}
.imgGal.four img{max-width: 25%;}

.honey{display: flex;padding-left: 20px;}
.honeyBlock{-webkit-clip-path: polygon(75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%, 25% 0);clip-path: polygon(75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%, 25% 0);display:flex;width:280px;height: 244px;background:#003699;flex-direction: column;align-items: center;justify-content: center;color: #fff;}
.honeyBlock.second,.honeyBlock.fourth,.honeyBlock.six,.honeyBlock.eight,.honeyBlock.ten{background: #f37126;}
.honey.last{margin-top: -251px;}
.honeyBlock.med{width: 160px;height: 138px;}
.honeyBlock.small{width: 90px;height: 80px;}
.honeyBlock.first{margin: 9% 0 0 7.6%;}
.honeyBlock.second{margin: 11% 0% 0 -2.5%;}
.honeyBlock.third{margin: 0% -5% 0;}
.honeyBlock.fourth{margin: 11% -2.5% 0 0;}
.honeyBlock.five{margin: 9% -3.2% 0 0%;}
.honeyBlock.six{margin: 2.5% 0 0 0%;}
.honeyBlock.seven{margin: -9.5% -90px 0 0%;}
.honeyBlock.eight{margin: 12% -51px 0 -183px;}
.honeyBlock.nine{margin: 1% -5.3% 0 -1%;}
.honeyBlock.ten{margin: -10% -5% 0 0%;}
.honeyBlock.eleven{margin: 1% -5% 0 0%;}
.honeyBlock.twelve{margin: -9.8% -5% 0 0%;}
.honeyBlock.first.therteen{margin: 21.7% 0 0 8%;}
.honeyBlock.third.forteen {margin: 0% -5.3% 0;}
.honeyBlock.five.fifteen {margin: 0% -3.2% 0 -2.5%;}
.honeyBlock h6{padding: 0 30px;font-size: 16px;margin: 0 auto;display: flex;align-items: center;font-weight: 500 !important;}
.honeyBlock h3{font-size: 2.5rem;padding: 0 10px;font-weight: 300 !important;}

/*menu for mobile*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.menu-row {
  max-width: 1000px;
  padding: 25px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
}
.menu-row .menu-info {
  margin-bottom: 30px;
  font-size: 16px;
}
.menu-row .menu-info h1 {
  margin: 0 0 20px;
  font-size: 30px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li {
  font-size: 18px;
}
ul li a {
  text-decoration: none;
  color: #ffffff;
  padding: 10px;
  display: inline-block;
  transition: 350ms all;
}
ul li a:hover {
  color: #ffe400;
}

.menu-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #2e58d0;
  position: relative;
}
.menu-box .logo {
  max-width: 140px;
}
.menu-box .logo img {
  width: 100%;
}

.menu {
  display: flex;
  flex-wrap: wrap;
}

.menu li {
  margin-right: 25px;
}

@media only screen and (min-width: 1024px) {
  .menu {
    display: flex !important;
  }
  .menu .megamenu > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 28px;
    display: none;
  }
  .menu .megamenu > a:hover:after {
    display: block;
  }
  .menu li .submenu {
    transition: 350ms all;
  }
  .menu li:hover > .submenu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .menu li.megamenu > a {
    padding-right: 20px;
    position: relative;
  }
  .menu li.megamenu > a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 17px;
    height: 5px;
    width: 5px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
  }
  .menu li .submenu {
    position: absolute;
    top: 100%;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    background: #333;
  }
  .menu li .submenu li {
    margin-right: 0;
    font-size: 16px;
    position: relative;
  }
  .menu li .submenu li a {
    color: #ffffff;
    padding: 10px 20px;
    background: #333;
    display: block;
  }
  .menu li .submenu li a:before {
    right: 15px;
    transform: rotate(-45deg);
  }
  .menu li .submenu li a:hover {
    background: #ff5252;
  }
  .menu li .submenu .submenu {
    position: absolute;
    left: 100%;
    top: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .navbar-toggler{display: none !important;}
  #menu_trigger {
    height: 30px;
    width: 30px;
    display: flex;align-items: center;
    justify-content: center;
    padding: 5px;line-height: 1;
  }
  #menu_trigger .menulines {
    margin-top: 0px;
    position: relative;
    display: block;
  }
  #menu_trigger.menuopen .menulines {
    transform: rotate(45deg);
  }
  #menu_trigger .menulines, #menu_trigger .menulines:before, #menu_trigger .menulines:after {
    content: "";
    height: 2px;
    width: 30px;
    border-radius: 5px;
    background: #f37126;
    transition: all ease-in-out 300ms;
  }
  #menu_trigger .menulines:before, #menu_trigger .menulines:after {
    position: absolute;
    left: 0;
    max-width: 80%;
  }
  #menu_trigger.menuopen .menulines:before, #menu_trigger.menuopen .menulines:after {
    max-width: 60%;
  }
  #menu_trigger .menulines:before {
    top: -7px;
  }
  #menu_trigger .menulines:after {
    top: 7px;
  }
  
  #menu_trigger.menuopen .menulines:before {
    top: -4px;transform: rotate(90deg);left: 4px;
  }
  #menu_trigger.menuopen .menulines:after {
    top: 4px;transform: rotate(90deg);left: 4px;
  }

  .mobile-menu {
    display: block !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #333;
    overflow-x: hidden;
    min-height: calc(100vh - 65px);
    transform: translateX(-100%);
    transition: all ease-in-out 300ms;
  }
  .mobile-menu.open {transform: translateX(0%);}
  .mobile-menu ul {
    transition: 350ms all;
    display: block;
  }
  .mobile-menu li {
    margin: 0;
    border-bottom: 1px solid #404040;
    font-size: 16px;
  }
  .mobile-menu li a {
    color: #ffffff;
    display: block;
    position: relative;
    padding: 15px 20px;
  }
  .mobile-menu li a:hover {
    color: #ff5252;
  }
  .mobile-menu li a .navtrigger {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: #3d3d3d;
    border: 1px solid #404040;
  }
  .mobile-menu li a .navtrigger:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 8px;
    width: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .mobile-menu li .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    background: #333;
    height: 100%;
    transition: 350ms all;
    z-index: 1;
  }
  .mobile-menu li .submenu li {
    font-size: 14px;
  }
  .mobile-menu li .submenu .backmenu-row {
    position: relative;
    padding: 20px;
    padding-left: 50px;
    background: #333;
    font-size: 16px;
  }
  .mobile-menu li .submenu .backmenu-row .back-trigger {
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    display: block;
    background: #3d3d3d;
    border: 1px solid #404040;
  }
  .mobile-menu li .submenu .backmenu-row .back-trigger:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 8px;
    width: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .mobile-menu li .submenu .backmenu-row em {
    font-style: normal;
    color: #ffffff;
  }
  .mobile-menu li.sub-open > .submenu {
    left: 0;
  }
}

@media all and (max-width:1260px){
  .honey{max-width: 950px;margin: 0 auto;}
  .honey.last{margin-top: -189px;}
  .honeyBlock{width:212px;height: 184px;}.honeyBlock img{max-width: 84px;height: auto;}
  .honeyBlock.med{width: 140px;height: 115px;}
  .honeyBlock.small{width: 70px;height: 61px;}
  .honeyBlock.first{margin: 8.3% 0 0 5.6%;}
  .honeyBlock.second{margin: 11% 0% 0 -3%;}
  .honeyBlock.third{margin: 0.6% -5.2% 0;}
  .honeyBlock.fourth{margin: 10.8% -3% 0 0;}
  .honeyBlock.five{margin: 8.2% -3% 0 0%;}
  .honeyBlock.six{margin: 1.9% 0 0 0%;}
  .honeyBlock.seven{margin: -9.5% -120px 0 0%;}
  .honeyBlock.eight{margin: 11.2% -43px 0 -91px;}
  .honeyBlock.nine{margin:.6% -4.8% 0 -.5%;}
  .honeyBlock.ten{margin: -9.8% -5.2% 0 -.5%;}
  .honeyBlock.eleven{margin: .6% -5.5% 0 0%;}
  .honeyBlock.twelve{margin: -9.5% -0.8% 0 0.3%;}
  .honeyBlock.first.therteen{margin: 21% 0 0 5.8%;}
  .honeyBlock.third.forteen {margin: 0% -5.3% 0;}
  .honeyBlock.five.fifteen {margin: 0% -3.2% 0 -2.5%;}
  .honeyBlock h6{font-size: 14px;}
  .honeyBlock h3{font-size: 1.5rem;}
  #header .logo img{max-height: 60px;}
  #header .logo a img{max-height: 50px;}
  .quickLinks-wrap{padding-top: 80px;}
}
/* @media all and (max-width:1020px){
  .honey{max-width: 950px;margin: 0 auto;}
  .honey.last{margin-top: -251px;}
  .honeyBlock{width:232px;height: 203px;}.honeyBlock img{max-width: 84px;height: auto;}
  .honeyBlock.med{width: 140px;height: 122px;}
  .honeyBlock.small{width: 70px;height: 61px;}
  .honeyBlock.first{margin: 8.3% 0 0 7.8%;}
  .honeyBlock.second{margin: 11% 0% 0 -3%;}
  .honeyBlock.third{margin: 0% -5.2% 0;}
  .honeyBlock.fourth{margin: 11% -3% 0 0;}
  .honeyBlock.five{margin: 8.2% -1.2% 0 0%;}
  .honeyBlock.six{margin: 6.9% 0 0 0%;}
  .honeyBlock.seven{margin: -10.8% -62px 0 0%;}
  .honeyBlock.eight{margin: 12% 0px 0 -55px;}
  .honeyBlock.nine{margin:.6% -4.8% 0 -.5%;}
  .honeyBlock.ten{margin: -10.3% -5.5% 0 -.5%;}
  .honeyBlock.eleven{margin: .6% -5.5% 0 0%;}
  .honeyBlock.twelve{margin: -10.8% -1.8% 0 0%;}
  .honeyBlock.first.therteen{margin: 21.7% 0 0 8%;}
  .honeyBlock.third.forteen {margin: 0% -5.3% 0;}
  .honeyBlock.five.fifteen {margin: 0% -3.2% 0 -2.5%;}
  .honeyBlock h6{font-size: 16px;}
  .honeyBlock h3{font-size: 1.5rem;}
} */
@media all and (max-width:1050px){
  .navbar a{font-size: 15px;line-height: 40px;}
  section {padding: 80px 0;}
  #header .logo a img{max-height: 40px;}
}
.forMobile{display: none;}
@media (max-width: 992px) {
  #header {
    padding: 5px 0;
  }
  #header .logo {
    font-size: 28px;padding-left: 20px;
  }
  #header .logo img {max-height: 50px;}
  #header .container{padding: 0;}
  #header .logo a img {max-height: 30px;}
  .forMobile{display: inline-block;padding-right: 20px;}
  .navbar a {line-height: 22px;}
  .navbar ul li a:hover {color: #ff5252;}
  .navbar ul > li{position: static;}
}
@media all and (max-width:992px){
  html,body{font-size: 13px;}
  #main .container {max-width: 770px;padding: 0 20px;}
  #main .process .container {padding-right: 40px;}
  .btn{min-width: 110px;}
  .honey{max-width: 590px;margin: 0 auto;flex-wrap:wrap;padding-left: 0;}
  .honeyBlock{width: 190px;height: 173px;}.honeyBlock img{max-width: 84px;height: auto;}
  .honeyBlock.med{width: 127px;height: 107px;}
  .honeyBlock.small{width: 70px;height: 61px;}
  .honeyBlock.first{margin: -1.5% -.5% 0 0%;order: 1;}
  .honeyBlock.second{margin: 3% -4% 0 -4.5%;order: 2;}
  .honeyBlock.third{margin: 17.5% -2% 0 -3.4%;order: 3;}
  .honeyBlock.fourth{margin: -44.5% -11% 0px 66.1%;order: 4;}
  .honeyBlock.five{margin: 17.7% 4.2% 0 0%;order: 5;position: absolute;right: 0;}
  .honeyBlock.six{margin: -23% 0 2px 2.5%;order: 6;}
  .honeyBlock.seven{margin: -14% -66px 0px 16.7%;order: 1;}
  .honeyBlock.eight{margin: .5% 0px 0 22px;order:2;}
  .honeyBlock.nine{margin:-44.5% 0% 0 66%;order: 3;}
  .honeyBlock.ten{margin: -29.1% 0% 0 -8.1%;order: 4;}
  .honeyBlock.eleven{margin: -14.2% 22% 0 -7.3%;order: 5;}
  .honeyBlock.twelve{margin: -29.8% -10.8% 0 66.4%;order: 6;}
  .honey.last{margin-top: 2px;min-height: 30vh;}
  .honeyBlock.first.therteen {margin: -9% 0 0 2.8%;}
  .honey.last .honeyBlock.second {margin: 0% -4% 0 -7.5%;order: 2;}
  .honeyBlock.third.forteen {margin: -15% -3.3% 0;}
  .honey.last .honeyBlock.fourth{margin: -34.9% -11% 0px 66.4%;order: 4;}
  .honeyBlock.five.fifteen {margin: 11.5% 33.6% 0px 0%;}
  .navbar-toggler{display: flex;align-items: center;justify-content: center;width: 48px;height: 48px;}
  .navbar-toggler-icon{display: block;height: 2px;border-radius: 2px;background: #f37126;position: relative;}
  .navbar-toggler-icon::after,.navbar-toggler-icon::before{display: block;height: 2px;border-radius: 2px;background: #f37126;position: absolute;content: "";left: 0;width: 80%;transition: all ease-in-out 300ms;}
  .navbar-toggler-icon::after{top: 7px;}
  .navbar-toggler-icon::before{top: -7px;}
  .hero-container .hero-caption{left: 0;border-top-left-radius: 0;border-bottom-left-radius: 0;}
  .hero-container .hero-caption .herotext {max-width: 400px;}
  .hero-container .hero-caption .container{padding: 0;}
  .hero-container .herotext h1{font-size: 1.6rem;}
  .hero-container .herotext p{font-size: 1rem;margin-bottom: 0;}
  .hero-container .herotext a.btn, .indexblock a.btn, .product a.btn {font-size: 1rem;border-radius: 6px;line-height: 22px;padding: 0.525rem 1.125rem;padding-right: 1.8rem;margin-top: 8px;}
  .hero-container .herotext a.btn svg, .indexblock a.btn svg, .product a.btn svg {right: 1.2rem;width: 12px;height: 12px;margin-top: -6px;}
  .indexbox {width: calc(100% - 15px);margin-bottom: 50px;}
  .indexbox:after {right: -15px;bottom: -15px;}
  .indexbox .imgblock{display: block;max-height: 60vh;overflow: hidden;}
  .indexblock h3, .title {font-size: 2rem;}
  .indexblock p.highlight, .highlight {font-size: 1.4rem;}
  .bullet_list li{padding-left: 22px;}
  .boxblock h4{min-height: 40px;}
  .box1, .box2, .box3, .box4 {
      display: flex;
      height: 100%;
  }
  .welcome-blocks{padding-bottom: 30px;}
  section {padding: 40px 0;}
  .hero-container{padding-top: 30px;}
  .inner_banner .hero-container{padding-top: 0px;}
  .honeyBlock h6 {font-size: 13px;}
  .address .row .col-12{padding-top: 30px;padding-bottom: 30px;}
}
@media all and (max-width:768px){
  .honey-wrap{display: flex;width: 100%;overflow-x: auto;flex-wrap: nowrap;}
  .honey{display: flex;flex-wrap: nowrap;max-width: none;}
  .honeyBlock,.honeyBlock.med{width:160px;height: 153px;margin: 0 !important;order: inherit !important;}.honeyBlock img{max-width: 32px;height: auto;}
  #main .process .container {
    padding-right: 20px;}
  .honeyBlock.five{position: static;}
  .honey.last {
    margin-top: 2px;
    min-height: auto;
  } 
  /* .honeyBlock.med{width: 50px;height: 44px;}
  .honeyBlock.small{width: 20px;height: 17px;}
  .honeyBlock.first{margin: 5% 1.5% 0 17.5%;order: 1;}
  .honeyBlock.second{margin: 3% -2% 0 -4.5%;order: 2;}
  .honeyBlock.third{margin: -17% -3% 0 -0.3%;order: 5;}
  .honeyBlock.fourth{margin: -17% -3% 0 26%;order: 6;}
  .honeyBlock.five{margin: 5% -1.2% 0 0%;order: 3;}
  .honeyBlock.six{margin: 4% 0 0 -.5%;order: 4;}
  .honeyBlock.seven{margin: -17% -60px 0px 31.2%;order: 1;}
  .honeyBlock.eight{margin: -17% 0px 0 -14px;order:6;}
  .honeyBlock.nine{margin: 1.2% -12% 0 11.3%;order: 2;}
  .honeyBlock.ten{margin: -35% 0% 0 -0.1%;order: 3;}
  .honeyBlock.eleven{margin: -17.2% 22% 0 -8.5%;order: 4;}
  .honeyBlock.twelve{margin: -16.5% 35.2% 0 0%;order: 5;}
  .honeyBlock h3{font-size: 14px;}
  .honeyBlock h6{font-size: 11px;padding: 0 10px;min-height: 40px;} */
  section[role="services"] .honey:last-child{margin-top: 97px;}
  .welcome-blocks .col-6{padding-top: 10px;padding-bottom: 10px;margin: 0 !important;}
  .contact_info_area .contact_info h5 {padding-top: 30px;}
  .gradaentBg{
    background: #fff;
  }
  .hero-container .hero-caption{padding-left: 0;padding-right: 0;}
  ul.breadcrumb{margin: 0;}
  .counts .row .col-6{margin-top: 2rem!important;}
  .elementor-icon {font-size: 34px;width: 30px;}
  .elementor-icon i, .elementor-icon svg{top: 5px;}
  .elementor-text h2 {font-size: 2.5rem;white-space: nowrap;}
  .elementor-text p{font-size: 1rem;}
  .h5, h5 {font-size: 1.1rem;}
  .indexblock h3, .title {font-size: 1.8rem;}
  .form {padding: 0 15px 15px;margin: 0rem auto 0;}
  .contact-blog{text-align: center;}
  .elementor-text h2 .extra-count {font-size: 1.4rem;text-align: left;}
}
@media all and (min-width:420px)  and (max-width:768px){
  #counts .col-md-6{flex: 0 0 auto;width: 50%;margin-bottom: 30px !important;}
  #counts .col-md-6.mt-5{margin-top: 0px !important;}
}
@media all and (max-width:550px){
  section[role="services"] .honey:last-child{margin-top: 40px;}
  .thankyou h2 {font-size: 1.5rem;}
  .boxblock {padding: 1rem;}
  .box1 .icon, .box2 .icon, .box3 .icon, .box4 .icon {height: 70px;width: 70px;}
  .boxblock .icon img{width: 100% !important;height: 100% !important;}
  .boxblock h4 {font-weight: 500;font-size: 1.1rem;}
  .service-slider .slick-slide {margin: 0px 0px;}
  .indexblock h3, .title {font-size: 1.6rem;}
  .h3, h3 {font-size: calc(1.2rem + .6vw);}
  .hero-container .herotext h1 {font-size: 1.4rem;}
}
@media all and (max-width:500px){
  .facts .col {
      flex: 0 0 100%;
      max-width: 100%;
  }
  #header .logo a {padding: 15px 5px 15px 0;margin-right: 5px;}
  #header .logo img {
    max-height: 40px;}
    #header .logo {
      font-size: 28px;
      padding-left: 12px;
  }
  .forMobile {
    padding-right: 12px;
  }
}

@media all and (max-width:490px){
  section[role="services"] .honey:last-child{margin-top: 0px;}
  .section {padding: 30px 0;}
}
@media all and (max-width:420px){
  .hero-container .hero-caption{border-radius: 0;padding-bottom: 40px;padding-top: 20px;bottom: 0;}
  .hero-container .hero-caption .herotext{text-align: center;}
  .hero-container .slick-track{display: flex;background-color: #000 !important;}
  .hero-container .hero-item{background-color: #000 !important;height: 100%;max-height: 100%;float: none;min-height: 300px;background-position: center top !important;}
  .inner_banner .hero-container .hero-caption{padding-bottom: 0;}
  .hero-container .herotext p,.hero-container .herotext a.btn{display: none !important;}
}
@media all and (max-width:330px){
  #header .logo img,#header .logo a:after {
    display: none;
  }
  #header .logo a img{
    display: inline-block;
  }
}