﻿@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
      url('../fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
      url('../fonts/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'fontello';
  src:url('../fonts/fontello.woff2') format('woff2'),
       url('../fonts/fontello.woff') format('woff');
       font-weight: normal;
       font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before, .slick-prev:before, .slick-next:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-phone:before { content: '\e800'; } /* '' */
.icon-search:before { content: '\e801'; } /* '' */
.icon-twitter:before { content: '\e802'; } /* '' */
.icon-location:before { content: '\e803'; } /* '' */
.icon-left-open-mini:before, .slick-prev:before { content: '\e804'; } /* '' */
.icon-right-open-mini:before, .slick-next:before { content: '\e805'; } /* '' */
.icon-down-open-mini:before { content: '\e806'; } /* '' */
.icon-up-open-mini:before { content: '\e807'; } /* '' */
.icon-left-small:before { content: '\e808'; } /* '' */
.icon-right-small:before { content: '\e809'; } /* '' */
.icon-mail-alt:before { content: '\f0e0'; } /* '' */
.icon-linkedin:before { content: '\f0e1'; } /* '' */
.icon-youtube-play:before { content: '\f16a'; } /* '' */
.icon-instagram:before { content: '\f16d'; } /* '' */
.icon-facebook:before { content: '\f30c'; } /* '' */
.icon-play:before { content: '\e80a'; } /* '' */

:root{
   --primary-font:'Poppins', sans-serif;
   --black:#111;
   --gray:#666;
   --orange:#EF7E36;
   --white:#fff;
   --gray-bg:#F5F5F5;
   --bg-gradient:linear-gradient(90deg, rgb(239, 126, 54) 0%, rgb(55, 181, 232) 100%);
   --bg-hover:linear-gradient(90deg, rgba(55, 181, 232,1) 0%, rgba(239, 126, 54,1) 100%);
}
body {
    width: 100%;
    height: 100%;
    font-family: var(--primary-font);
    font-weight: 300;
    font-size:16px;
    background-color:var(--white);
    line-height:1.8;
	  color:var(--black);
    font-display: swap;
}
html {
    width: 100%;
    height: 100%;
}
a {
    color:var(--orange);
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}
button:focus {
    outline: 0px dotted;
}

b, strong{
  font-family: var(--primary-font);
	font-weight: 500;
	color:var(--black);
  }
p{
	color:var(--black);
	line-height:1.8;
	font-size: 16px;
	}

h1{
    font-family: var(--primary-font);
    color:var(--black);
    line-height:1.25;
    font-size:40px;
    font-weight:600;
    margin-top: 0;
    margin-bottom:20px;
}
h2{
  font-family: var(--primary-font);
  color:var(--orange);
  line-height:1.4;
  font-size:32px;
  font-weight:500;
  margin-top: 0;
  margin-bottom:20px;
}
h3{
   font-family: var(--primary-font);
   color: var(--black);
   font-size:20px;
   line-height:1.4;
   font-weight: 500;
}
h4{
  font-family: var(--primary-font);
  color: var(--black);
  font-size:18px;
  line-height:1.5;
  font-weight:500;
}
.text-justify{
	text-align: justify;
}
.row-box{
	width:100%;
	clear:both;
	display: flex;
	flex-wrap: wrap;
}
section, footer{
	width:100%;
	clear:both;
  display: flex;
	flex-wrap: wrap;
  position: relative;
	}
.m-top{
  margin-top:115px;
}	
.padding{
	padding:60px 0;
	}
.padding-sm{
	padding:40px 0;
	}
.rotate img {
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.rotate:hover img {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.img-zoom img{
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.img-zoom:hover img, .img-zoom:hover img{
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.zoom {
  -webkit-animation: zoomout 10s ease-in infinite;
  animation: zoomout 10s ease-in infinite;
  transition: all .5s ease-in-out;
  overflow: hidden;
}
/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
}
@keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.2);}
  100% {transform: scale(1);}
} /*End of Zoom in Keyframes */

/* Zoom out Keyframes */
@-webkit-keyframes zoomout {
  0% {transform: scale(1.2);}
  50% {transform: scale(1);}
  100% {transform: scale(1.2);}
}
@keyframes zoomout {
    0% {transform: scale(1.2);}
  50% {transform: scale(1);}
  100% {transform: scale(1.2);}
}/*End of Zoom out Keyframes */

/*navbar*/
.navbar-toggler{
	border:0;
}
.navbar-toggler span {
    width: 25px;
    height:2px;
    background:#000;
    display: block;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 6px;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.navbar-toggler span:nth-child(1) {
    width: 16px;
}
.navbar-toggler:hover span:nth-child(1) {
    width: 25px;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    width: 25px;
    -webkit-transform: rotate(45deg) translate(5px,5px);
    -ms-transform: rotate(45deg) translate(5px,5px);
    transform: rotate(45deg) translate(5px,5px);
}
.navbar-toggler[aria-expanded="true"] span:nth-child(2){
	opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span:nth-child(3){
	-webkit-transform:rotate(-45deg) translate(4px,-4px);
	-ms-transform:rotate(-45deg) translate(4px,-4px);
	transform:rotate(-45deg) translate(4px,-4px);
}
.navbar-brand img{
  width:100px;
}
.navbar-expand-lg .navbar-nav .nav-link{
  font-size:16px;
  color:#000;
  /* padding: 39px 20px; */
  padding: 39px 15px;
}
.navbar-expand-lg .navbar-nav .nav-link:hover{
  color:var(--orange);
}
.dropdown-menu{
	min-width: 16rem;
	margin-top: 0;
  border:0;
  border-top: 1px solid var(--orange);
	box-shadow:0 14px 14px 0 rgba(0, 0, 0, 0.185);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-radius: 0;
}
.dropdown-menu .dropdown-item {
    padding:.36rem 1.5rem;
    font-weight: normal;
    font-size:16px;
    border: 0;
    color: #000;
    white-space: normal;
}
.dropdown-menu .dropdown-item h4{
  color: var(--orange);
  margin-bottom:0px;
  position: relative;
  width:100%;
}
.nav-link.dropdown-toggle::after{
  border-top: 0.3em solid #666;
  content:none;
}
.dropdown-menu li.dropdown::after {
  position: absolute;
  content: "›";
  right: 17px;
  top:1px;
  font-size: 19px;
  color: #333;
  border:0;
}
.dropdown-menu li.dropdown:hover::after{color:var(--orange);}
.dropdown-menu li.dropdown .dropdown-toggle::after{
content: none;
}
.navbar  li.dropdown:hover > a{color:var(--orange)}
.navbar ul.dropdown-menu > li.dropdown:hover > a{background: #fff; color:var(--orange);}
.dropdown-item:hover{background: #fff; color:var(--orange)}

.service-card .card-title {
  /*font-size: 16px;*/
  color:rgba(33, 37, 41, 0.75);
  color:#italic;
  /*font-style: italic;*/
}
.services .corner-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-bottom-left-radius: 100%;
  z-index: 1;
}
.services .orange-shape {
  background-color: #fef3c7; /* light orange bg */
}
.services .dark-shape {
  background-color: #c5ebfb;
}
.services .green-shape {
  background-color: #d1fae5; /* light green bg */
}
.services .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.services .text-orange {
  color:#EF7E36;
}
.bg-orange {
  background-color: #EF7E36;
}
.services .border-orange {
  border: 1px solid #EF7E36 !important;
}
.services .border-dark {
  border: 1px solid #36b3e6 !important;
}
.services .border-success {
  border: 1px solid #00C18C !important;
}
.service-card img{
       width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.service-card .card-text ,.service-card .card-text p{
  font-size: 0.9rem;
}
.service-card h2{
    font-size:25px;
}
.service-card .card-text ul{
 list-style: none;
 }
.service-card .card-text ul li{
    position: relative;
  justify-content: flex-start; 
    display: flex;
}
img.tick{
    width:15px;
    height:15px;
        margin-right: 7px;
    margin-top: 6px;

}
 .inner-banner h1 span{
   color:#EF7E36;

     
 }

.cta-box{
      background-color: #EF7E36;
  color: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}
.iqr-btn {
    margin-top:15px;
}
.iqr-btn a{
   background-color: #3FB3E0;
   color:#fff;
}
.iqr-btn a:hover{
   background-color: #3FB3E0;
   color:#fff;
}
.cta-box p{
    color:#fff;
}
.twitter img{
    margin-bottom: 0px !important;
    margin-left: 0px  !important;
    width:16px;
}
@media only screen and (min-width:991px) {
  .navbar ul li:hover> .dropdown-menu{display:block}
  .navbar ul .dropdown-menu{position:absolute;top:100%;left:0;min-width:280px;display:none;margin:0;}
  .navbar ul li.mega-menu:hover > ul {
    /*display: flex;*/
    min-width:230px;
    flex-wrap: wrap;
    padding: 10px;
  }
}
.navbar-expand-lg .navbar-nav .nav-item:last-child{
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.navbar ul li.mega-menu:hover > ul li{
  flex: 0 0 auto;
  width: 50%;
}
/* .navbar ul li.mega-menu:hover > ul li:first-child{
  width:100%;
} */
.navbar ul li.mega-menu:hover > ul li a{
  padding: 0.5rem 0.2rem;
  width:280px;
  /*display: flex;*/
  align-items: center;
  line-height: 1.5;
}
.mega-menu li img{
  width: 40px;
  margin-right: 15px;
}
.mega-menu li:hover img{
  filter: gray; /* IE5+ */
  -webkit-filter: grayscale(1); 
}
.fix-nav .navbar {
  background-color: #fff;
  padding: 0;
  -webkit-box-shadow: 0px 2px 6px 0px rgb(54 54 54 / 17%);
  -moz-box-shadow: 0px 2px 6px 0px rgba(54, 54, 54, 0.17);
  box-shadow: 0px 2px 6px 0px rgb(54 54 54 / 17%);
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.fix-nav .navbar-brand img {
  width: 70px;
  margin-left:20px;
}
.fix-nav .navbar-expand-lg .navbar-nav .nav-link {
  padding: 25px 20px
}
.btn{
  padding:12px 40px;
  font-size:15px;
  border-radius:50px;
  font-weight: 500;
}
.btn-primary{
  background: var(--bg-gradient);
  color: var(--white);
  border:0;
}
.btn-primary:hover{
  background:var(--bg-hover);
}
.btn-br{
  border:1px solid #fff;
  color:var(--white);
}
.btn-br:hover{
  border:1px solid #fff;
  background-color:var(--white);
  color:var(--orange);
}

.banner{
  /* background-image:url(../images/banner.jpg); */
  background-image:url(../images/raytex.jpeg);
  background-repeat: no-repeat;
  background-size:100%;
  background-color:var(--orange);
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height:350px;
  height:350px;
}
.banner video{
  object-fit: cover;
}
.banner::before{
  content:'';
  position: absolute;
  top:0;
  left:0;
  right:0;
  width:100%;
  height:100%;
  /* background-color: rgba(0, 0, 0, 0.493); */
}
.banner img{
  opacity:0.5;
}
.banner-text{
  position: absolute;
  max-width: 460px;
  text-align: center;
}
.banner-text h1{
  color: var(--white);
  margin-bottom:30px;
}
.inner-banner .banner-text {
  max-width:580px;
}
.ab-img {
  position: relative;
}
.ab-img::after{
  content: '';
  position: absolute;
  bottom:0;
  width:100%;
  height:10px;
  left:0;
  background: var(--bg-gradient);
}
.ab-img .about-img{
  border-top-right-radius:200px;
  width: 100%;
}
/*#about-us-image{*/
/*      height: 400px !important; */

/*}*/
/*#home-image{*/
/*  height: 400px !important; */
/*}*/
.about-sec p{
    text-align: justify;
}
.ab-img .icon-pluse{
  position: absolute;
  top: 30px;
  right: 15px;
}
.erp-box{
  padding:50px 30px;
  border-radius:20px;
  background-color:var(--gray-bg);
}
.icon-text{
  display: flex;
  align-items: start;
  justify-content: center;
}
.icon-text img {
  flex: 0 0 auto;
  margin-top: 9px;
}
.icon-text-cont{
  padding-left:25px;
}
.icon-text p {
  margin-bottom: 0;
  font-size:15px;
  
}
.f-icons{
  display: flex;
  margin-bottom: 10px;
}
.f-icons p{
  margin-bottom: 0;
}
footer .f-icons p{
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
footer h4{
  font-size:17px;
}
footer hr{
  margin: 12px 0;
  border-color: #9a9a9a;
}
.icon {
  margin-right: 8px;
  text-align: center;
  font-size: 21px;
  display: flex;
  width: 26px;
  height: 26px;
  line-height: 1.3;
}
.icon-mail-alt{
  font-size:16px;
  padding-top: 4px;
}
.f-icon-text{
  -ms-flex: 1;
  flex: 1;
}
.f-box{
  background: var(--bg-gradient);
  border-radius: 20px;
  padding:50px;
}
.f-box-m{
  margin-top:60px;
}
.f-box h2, .f-box p{
  color:var(--white);
}
.vm-img{
  margin-bottom: -51px;
}
.dark-gray{
  background-color:#F1F1F1;
}
.light-gray{
  background-color:#F9F9F9;
}

.erp-sec h3{
  font-size:22px;
}
.erp-sec .icon-text{
  margin:20px 0;
  position: relative;
}
.erp-sec .icon-text:first-child{
  margin-top:0;
}
.erp-sec .icon-text + .icon-text h3 {
  border-top:1px solid #ddd;
  padding-top:20px;
}
.erp-sec .icon-text:hover h3{
  color: var(--orange);
}
.erp-sec .icon-text:hover p{
  color:#666;
}
.erp-sec .icon-right-open-mini:before, .dropdown-menu .icon-right-open-mini:before{
   position: absolute;
   right:15px;
   top: 20px;
   color:var(--orange);
   opacity:0;
   font-size:30px;
   -webkit-transition: all .2s ease-in-out;
   -moz-transition: all .2s ease-in-out;
   transition: all .2s ease-in-out;
}
.erp-sec .icon-text:first-child .icon-right-open-mini:before{
  top:0px;
}
.erp-sec .icon-text:hover .icon-right-open-mini:before{
  opacity:1;
  right:0;
} 
.dropdown-menu .icon-right-open-mini:before{
  right:0;
  top: 0;
  font-size: 25px;
}
.dropdown-menu h4:hover.icon-right-open-mini:before{
  opacity:1;
  right: -18px;
}
.erp-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.home-case-studies.slick-initialized .slick-slide, .parters-slider.slick-initialized .slick-slide {
  display: flex !important;
}
.slick-prev, .slick-next{
  /* background-color: rgba(0, 0, 0, 0.06); */
  background-color:var(--orange);
  color: #000;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  text-align: center;
}
.slick-prev:hover, .slick-next:hover{
  background-color:var(--orange);
  color:var(--white);
}
.slick-prev {
  left: -50px;
}
.slick-next {
  right: -50px;
}
.partners .slick-slide img{
  margin:0 auto;
}
.w-text h2, .w-text p{
  color:var(--white);
}
.case-studies{
  background-color: #000;
  overflow: hidden;
  text-align: center;
}
.case-studies img{
  opacity:0.4;
  width:100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  aspect-ratio:100/30;
}
.cs-box{
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 510px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-self: center;
}
.blog-box{
  padding:15px;
  display: block;
}
.blog-box h4{
  -webkit-line-clamp:2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.blog-box p{
  font-size:15px;
  -webkit-line-clamp:3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.blog-img-box{
  overflow: hidden;
  margin-bottom:20px;
}
.blog-box:hover h4{
  color:var(--orange);
}
footer{
  background-color:#F3F3F3;
  padding-top:50px;
}
footer ul{
  list-style-type:none;
  padding-left:0;
}
footer ul li a{
  color: #333333;
  font-size:14px;
  padding: 6px 0;
  display: block;
}
footer ul li{
  line-height:1.3;
}
footer p{
  font-size:14px;
}
footer a{
  color:#333333;
}
footer a:hover{
  color:var(--orange);
}
footer .f-icons .icon{
  color: var(--orange);
  font-size: 18px;
  width: 21px;
  height: 21px;
  line-height: 1.3;
}
footer .f-icons{
  margin-bottom:6px;
}

.follo-icon {
  display: flex;
  align-items: center;
  justify-content:center;
}
.follo-icon a {
  background-color:transparent;
  padding:0px;
  border-radius: 50%;
  display: block;
  width:30px;
  height:30px;
  text-align: center;
  margin: 3px 2px;
  font-size:16px;
  color:var(--black);
  border:1px solid #AEAEAE;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.f-logo{
  text-align: center;
}
.f-logo img{
  margin-bottom:30px;
  margin-left:20px;
}
.footer-bottom {
  display: flex;
  justify-content:center;
  padding-top: 15px;
  margin-top: 25px;
  border-top: 1px solid #CFCFCF;
}
.ser-box:hover h3{
  color: var(--orange);
}
.ser-box img {
  max-width: 70px;
}
.pl-3 {
  padding-left: 1rem;
}
.inner-banner{
    background-color: var(--black);
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.inner-banner-privacy-policy{
    background-color: var(--white);
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
}
.inner-banner img{
  opacity:0.5;
}
.inner-banner .banner-text h1{
  font-size:36px;
  margin-bottom:0;
}
.icon-box{
  display: flex;
  align-items: start;
  justify-content: center;
}
.icon-box-text{
  padding-left: 25px;
}
.img-box {
  overflow: hidden;
}
.round-20 {
  border-radius: 20px;
}
.img-box-d {
  overflow: hidden;
  height: 100%;
}
.img-box-d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.br-box-l{
 border-left:3px solid #37b5e8;
 padding:5px 21px;
}
.br-box-l p{
  margin-bottom:0;
}
.br-right{
  border-right:1px solid #cecece;
}
.case-studies-page h3{
 margin-bottom:20px;
}
.case-studies-page h4{
  color: #EF7E36;
}
input.form-control {
  height: 50px;
}
.form-select {
  height: 50px;
}
.form-control {
  border: 1px solid #CCCCCC;
}
.form-box {
  margin: 0 auto;
}
.form-box{
  background-color:#fff;
  padding:35px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 16px 0px rgb(54 54 54 / 17%);
  -moz-box-shadow: 0px 2px 16px 0px rgba(54, 54, 54, 0.17);
  box-shadow: 0px 2px 16px 0px rgb(54 54 54 / 17%);
}
.form-box .btn{
  min-width: 160px;
}
.br-box-s{
  border:1px solid #ddd;
  padding:25px;
  border-radius:6px;
  background-color:var(--white);
  height: 100%;
}
.br-box-s p{
  margin-bottom:0;
}
.c-box{
  background-color:#F9F9F9;
  border-radius:10px;
  padding:20px;
 
}
.c-box + .c-box{
  margin-top:25px;
}
.c-box h4{
  font-size:16px;
}
.contact-page iframe{
  border-radius:10px;
}
.contact-page h2{
  font-weight: 300;
}
.contact-page .c-box{
  background-position:top 10px right 18px;
  background-repeat: no-repeat;
  background-size: 50px;
}
.us{
  background-image: url(../images/usa.png);
}
.ind{
  background-image: url(../images/india.png);
}
.br-p{
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  border-radius: 15px 0;
}
.br-p img {
  max-height: 120px;
}
.list-dot {
  width: 100%;
  display: block;
  list-style-type: none;
  padding-left: 0;
}
.list-dot li {
  position: relative;
  padding-left: 18px;
  padding-bottom: 10px;
}
.list-dot li p{
  margin-bottom:5px;
}
.list-dot li::before {
  content: '';
  position: absolute;
  left: 0;
  background-color:var(--orange);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 9px;
}
.blog-detail p{
  text-align: justify;
}
/*------------- cookie------------------- 
.cookie-consent-modal{
  height: 100vh;
  width: 100vw;
  background-color: rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  align-items: flex-end;
}
.cookie-consent-modal.active{
  display: flex;
}
.content{
  background-color: #fff;
  padding: 5vw 3vw;
  border-radius: 10px 10px 0 0;
}

.cookie-consent-modal .btns{
  display: flex;
  justify-content: flex-end;
  margin-top: 2em;
}
.cookie-consent-modal .btn{
  border: none;
  outline: none;
  padding: .8em 1.5em;
  width: 100px;
  margin-right: 1em;
  border-radius: 3px;
  text-transform: uppercase;
}
.cookie-consent-modal .btn.accept{
  background-color: rgb(0, 185, 124);
  color: #fff;
}
*/
.wrapper {
  z-index: 99999;
  position: fixed;
  bottom: 50px;
  right: -370px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.wrapper.show {
  right: 20px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.c-head i {
  color: #4070f4;
  font-size: 32px;
}
.c-head h2 {
  color: #4070f4;
  margin-bottom: 0;
  font-size: 26px;
  text-align: center;
}
.wrapper .data {
  margin-top: 15px;
  text-align: center;
}
.wrapper .data p {
  color: #333;
  font-size: 16px;
}
.data p a {
  color: #4070f4;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #4070f4;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background-color: #034bf1;
}
#declineBtn {
  border: 2px solid #4070f4;
  background-color: #fff;
  color: #4070f4;
}
#declineBtn:hover {
  background-color: #4070f4;
  color: #fff;
}
.error{
  color: red;
  font-size:14px;
}
.form-select.error{
  color: #212529;
}
.mob-d{
  display: none;
}
.blog-slider img{
    height:220px;
}

@media only screen and (min-width:992px) {
  .page-section{
    overflow:hidden;
  }
  .left-content{
      -webkit-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
      transform: translateX(-30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .right-content{
      -webkit-transform: translateX(30px);
      -ms-transform: translateX(30px);
      transform: translateX(30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .bottom-content{
      opacity: 0;
      -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
      transform: translateY(30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .top-content{
      opacity: 0;
      -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
      transform: translateY(-30px);
      -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .zoom-content{
    opacity: 0;
    -moz-transform: scale(0);
      -webkit-transform: scale(0);
      transform: scale(0);
    -webkit-transition: all 2s ease;
      transition: all 2s ease;
  }
  .animate .zoom-content{
    opacity: 1;
    -moz-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1)
  }
  .animate .left-content, .animate .right-content {
    opacity: 1;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
  }
  .animate .bottom-content, .animate .top-content{
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
  }
 
  .navbar{
    padding-bottom:0;
  }
  .industry-row .col-lg-4 {
    /*width: 20%;*/
    width: 24%;
  }

  }

@media (max-width:767px) {
  .f-logo img {
    margin-left: 0;
  }
  .banner h1{
    font-size:24px;
    margin-bottom: 18px;
  }
  .banner img {
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 100/50;
  }
  .banner .btn {
    padding: 7px 30px;
    font-size: 14px;
  }
  h2{
    font-size:26px;
  }
  .f-box {
    padding: 30px;
  }
  .f-box-m {
    margin-top: 40px;
  }
  .vm-img {
    margin-bottom: 0;
    margin-top: 15px;
  }
  .padding {
    padding: 30px 0;
  }
  h3 {
    font-size:18px;
  }
  .footer-bottom{
    flex-direction: column;
  }
  .banner{
    height:400px
  }
  .inner-banner .banner-text h1 {
    font-size: 24px;
  }
  .inner-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 100/30;
  }
  .rd1{
    order:1;
  }

}
@media (max-width:575px) {
  .inner-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 100/40;
  }

}
@media (max-width:991px) {
  .navbar-brand img {
    width: 60px;
  }
  .navbar-brand{
    padding: 0;
  }
  .m-top {
    margin-top: 70px;
  }
  .fix-nav .navbar-brand img {
    width: 47px;
    padding: 5px 0;
  }
  .navbar-expand-lg .navbar-nav .nav-link, .fix-nav .navbar-expand-lg .navbar-nav .nav-link {
    padding:8px 10px;
  }
  .fixed-top{
    background-color:var(--white);
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  li.dropdown::after {
    font-family: "fontello";
    content: '\e805';
    position: absolute;
    right: 0;
    top: 15px;
    font-size: 19px;
    color:var(--orange);
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .dropdown-menu .dropdown-item, .navbar ul li.mega-menu:hover > ul li a{
    padding: .36rem 1rem;
  }
  .mega-menu li img {
    width: 35px;
    margin-right:12px;
  }
  .navbar ul li.mega-menu:hover > ul li {
    width: 100%;
  }
  .navbar-expand-lg .navbar-nav .nav-item:last-child {
    padding-left: 10px;
    padding-bottom: 15px;
    padding-top: 10px;
  }
  .navbar-collapse {
    margin-top: 15px;
  }
  .case-studies img {
    aspect-ratio: 100/100;
  }
  .follo-icon {
    margin-bottom: 25px;
  }

  .slick-next {
    right: 0;
  }
  .slick-prev {
    left: 0;
  }
  .slick-prev, .slick-next{
    top: 26%;
    z-index:1;
  }

  .erp-sec h3 {
    font-size: 18px;
  }

  .br-p{
    margin:12px 0;
  }
  .mob-d{
    display: block;
  }
  .des-d{
    display: none;
  }
  .dropdown-menu .dropdown-item h4 {
    font-size: 16px;
 }

}
@media (min-width:768px) and (max-width:991px)  {
  .banner .banner-text{
    max-width: 350px;
   }
   h1{
    font-size: 30px;
   }
   h2{
    font-size:28px;
   }
   h3 {
    font-size: 20px;
  }
  .add-text {
    max-width: 100%;
  }
  .f-box {
    padding: 30px;
  }
  .case-studies img {
    aspect-ratio: 100/50;
  }
  .banner{
    height:400px
  }

} 
@media (min-width:992px) and (max-width:1199px)  {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding:29px 16px;
  }
  .navbar-brand img {
    width: 80px;
  }
  .m-top {
    margin-top: 95px;
  }
}
@media (min-width:1360px) {
  .container{
    max-width:1220px;
  }
  .form-box {
    max-width:900px;
}
}
@media (min-width:1600px) {
  .container{
    max-width:1360px;
  }
  .about-sec .container{
    max-width:1290px;
  }
  .banner{
    height:650px
  }
  .form-box {
    max-width:900px;
}
}


