/* FONT FACE DEFINITIONS */
/* Aeonik Regular */
@font-face {
  font-family: 'Aeonik';
  src: url('https://prasarnet.com/wp-content/themes/prasarnetstaging/fonts/Aeonik/Aeonik-Regular.woff2') format('woff2'),
       url('https://prasarnet.com/wp-content/themes/prasarnetstaging/fonts/Aeonik/Aeonik-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* Aeonik Medium */
@font-face {
  font-family: 'Aeonik';
  src: url('https://prasarnet.com/wp-content/themes/prasarnetstaging/fonts/Aeonik/Aeonik-Medium.woff2') format('woff2'),
       url('https://prasarnet.com/wp-content/themes/prasarnetstaging/fonts/Aeonik/Aeonik-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

/* Aeonik Bold */
@font-face {
  font-family: 'Aeonik';
  src: url('https://prasarnet.com/wp-content/themes/prasarnetstaging/fonts/Aeonik/Aeonik-Bold.woff2') format('woff2'),
       url('https://prasarnet.com/wp-content/themes/prasarnetstaging/fonts/Aeonik/Aeonik-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* CSS VARIABLES USING AEONIK */
:root {
  --bold_font: 'Aeonik', sans-serif;
  --light_font: 'Aeonik', sans-serif;
  --light_regular: 'Aeonik', sans-serif;
}

/* GLOBAL */
body,
html {
  overflow-x: clip;
  overflow-y: visible;
  font-family:'Aeonik', sans-serif;
}
* {
  padding: 0;
  margin: 0;
}
.swiper {
    pointer-events: revert !important;
}

/*Pallab add for smooth scrolling*/
/*body { 
  height: 100%;
  width: 100%;  
  overflow: hidden;
}
*/
.scroll-trigger-pnt {
  /*height: calc(100vh - 101px);*/
  height: 100vh;
  width:100vw;
  overflow: hidden;
}
@media (min-width: 768px) {
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
body {
  height: 100vh;
  width:100vw;
/*   overflow: hidden; */
}
}
@media (max-width: 767px) {
.scroll-trigger-pnt {
  height: auto !important;
  overflow: hidden;
}
}
/*End of pallab add of smooth scrolling*/
a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

p {
  color: #000;
}

span {
  display: inline-block;
}

/*up header*/
header.page-header .up_header {
  padding: 0px 0px 0px 0px;
  border-bottom: 1px solid #00000014;
  margin: 0px 0px 12px 0px;
}
header.page-header .up_header ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px auto;
  padding: 0px;
  width: 1320px;
}
header.page-header .up_header .revenue_wraper h3 {
  font-size: 17px;
  color: #00448f;
}
header.page-header .up_header .revenue_wraper h3 span {
  font-size: 10px;
  font-family: var(--heading);
  font-weight: 700;
  color: #000;
}
header.page-header .up_header ul li .header_informationwraper {
  padding: 0px;
}
header.page-header .up_header ul li .header_informationwraper a {
  text-decoration: none;
  margin: 0px 0px 0px 15px;
  color: #000;
}
header.page-header .up_header ul li .header_informationwraper a i {
  font-size: 18px;
  color: #0066cb;
}
/*end*/
/*header.page-header*/
header.page-header {
  padding: 7px 0px 10px 0px;
}
header.page-header .link_wraper {
  margin: 0px auto;
  width: 1320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.page-header .navbar {
  display: flex;
  align-items: center;
  /* position: relative; */
  padding: 0px 0px;
}
header.page-header .navbar-logo {
  color: #ff3f34;
  text-decoration: none;
  font-size: 25px;
}
header.page-header .navbar-logo img {
  max-width: 150px;
}

header.page-header .navbar-links {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 0px;
}
header.page-header .navbar-links li a {
  display: block;
  text-decoration: none;
  color: #454545;
  margin: 7px 15px 0px 35px;
  font-weight: 400;
  transition: 0.4s all;
  text-transform: capitalize;
  font-size: 15px;
  font-family: var(--bold_font);
  position: relative;
}
header.page-header .navbar-links li a::after {
  content: "";
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  width: 21px;
  height: 1px;
  /* background: #0066cb; */
  opacity: 0;
  transition: all 0.5s ease-in-out;
  z-index: 50;
}
header.page-header .navbar-links li a:hover {
  color: #0066cb;
}
header.page-header .navbar-links li a:hover:after {
  opacity: 1;
}
header.page-header .navbar-links li a.active {
  color: #0066cb;
}
header.page-header .navbar-links li a.quote_btn {
  padding: 10px 20px;
  background: #0066cb;
  border-radius: 5px;
  font-size:18px;
  color: #fff;
  text-transform: capitalize;
  margin-top: -3px;
  margin: 0px 0px 0px 15px;
  font-weight: 600;
  font-family: var(--menu_font);
}
header.page-header .navbar-links li a.quote_btn:hover {
  background: transparent;
  color: #0066cb;
  border: 1px solid #0066cb;
}
header.page-header .navbar-links li a.quote_btn:hover:after {
  opacity: 0;
}
header.page-header .navbar-links li a.quote_btn.hide_btn {
  background: transparent;
  color: #0066cb;
  border: 1px solid #0066cb;
}
header.page-header .navbar-links li a.quote_btn.hide_btn:hover {
  background: #0066cb;
  color: #fff;
  border: 1px solid #0066cb;
}

header.page-header .navbar-links li.navbar-dropdown:hover .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(6px);
  transition: 0.5s all;
}

header.page-header .navbar-links li.navbar-dropdown .dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding: 25px 20px;
  top: 100%;
  transform: translateY(50px);
  left: 0px;
  width: 100%;
  background-color: #f9fbff;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  z-index: 111;
  transition: 0.5s all;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  height: 650px;
}
header.page-header .navbar-links li.navbar-dropdown .dropdown ul {
  display: flex;
  justify-content: space-between;
  margin: 0px auto;
  padding: 0px;
  list-style: none;
  width: 99%;
}
header.page-header .navbar-links li.navbar-dropdown .dropdown ul li {
  width: 31%;
}
header.page-header .navbar-links li.navbar-dropdown .dropdown ul li .link_box {
  box-shadow: rgb(50 50 93 / 6%) 0px 2px 5px -1px,
    rgb(0 0 0 / 18%) 0px 0px 3px -1px;
  border-radius: 8px;
  margin: 0px 0px 20px 0px;
  background: #fff;
  overflow: hidden;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  li
  .link_box
  h3 {
  font-size: 14px;
/*   display: flex; */
  justify-content: space-between;
  align-items: center;
  margin: 0px 0px 20px 0px;
  background: #ffffff;
  padding: 0px 10px;
  border-bottom: 1px dashed #0065c942;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  li
  .link_box
  h3  a{
  font-size: 14px;
	font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
/*   margin: 0px 0px 20px 0px; */
  background: #ffffff;
  padding: 0px 10px;
/*   border-bottom: 1px dashed #0065c942; */
  position:revert;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  li
  .link_box
h3  a:hover{
	padding-left: 10px !important;
    color: revert !important;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  li
  .link_box
  h3
  svg {
  width: 30px;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  li
  .image_wraper {
  width: 100%;
  height: 96%;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.4s all;
  position: relative;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  li
  .image_wraper::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, black, transparent);
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  li
  .image_wraper
  .postion_menubtn {
  position: absolute;
  bottom: 10px;
  width: 90%;
  left: 5%;
  padding: 10px 10px !important;
  background: #207de9;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  font-size: 20px;
  z-index: 2;
  display: revert;
  -webkit-box-orient: revert;
  -webkit-line-clamp: revert;
  overflow: revert;
  text-overflow: revert;
  white-space: revert;
  position: revert !important;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  li
  .image_wraper
  .postion_txtmnubox {
  position: absolute;
  bottom: 15px;
  text-align: left;
  padding: 20px;
  color: #fff;
  z-index: 2;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  li
  .image_wraper
  .postion_txtmnubox
  h5 {
  font-size: 26px;
  margin: 0px;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  li
  .image_wraper
  .postion_txtmnubox
  p {
  color:#fff;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  .image_wraper
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  .image_wraper:hover {
  background: url("../images/growth_img1.png");
  transition: 0.4s all;
}
header.page-header
  .navbar-links
  li.navbar-dropdown
  .dropdown
  ul
  .image_wraper
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header.page-header .navbar-links li.navbar-dropdown .dropdown ul li {
  margin: 0px 20px 0px 0px;
}
header.page-header .navbar-links li.navbar-dropdown .dropdown ul li:last-child {
  margin: 0px;
}
header.page-header .navbar-links li.navbar-dropdown .dropdown ul li:last-child {
  border-right: none;
}
header.page-header .navbar-links li.navbar-dropdown .dropdown a {
  transition: 0.4s all;
  font-size: 13px;
  font-family: var(--light_font);
  font-weight: 400;
  margin: 0px 0px 10px 0px;
  padding: 0px 20px 5px 20px;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: break-spaces;
  position: relative;
}
header.page-header .navbar-links li.navbar-dropdown .dropdown a::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: absolute;
  right: 20px;
  top: 0px;
  left: revert;
  color: #0066cb;
}
header.page-header .navbar-links li.navbar-dropdown .dropdown a:last-child {
  border-bottom: none;
}
header.page-header .navbar-links li.navbar-dropdown .dropdown ul li a img {
  width: 20px;
  margin: 0px 5px 0px 0px;
}
header.page-header .navbar-dropdown .dropdown a:hover {
  padding-left: 25px !important;
  color: #0066cb !important;
}
header.page-header .navbar-links li a:hover i {
  transform: rotate(180deg);
  transition: 0.4s all;
}
header.page-header .mobile_menu .offcanvas-header.page-header img {
  width: 150px;
}
header.page-header .offcanvas-header.page-header {
  background: #f1f1f1;
  padding: 10px 10px;
}
header.page-header .mobile_menu .offcanvas-body .list ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
header.page-header .mobile_menu .offcanvas-body .list ul li {
  margin: 0px 0px 11px 0px;
  border-bottom: 1px solid #00000026;
  padding: 0px 0px 10px 0px;
}
header.page-header .mobile_menu .offcanvas-body .list ul li a {
  text-decoration: none;
  font-family: var(--light_font);
  color: #000;
  font-size: 15px;
  font-weight: 600;
}
header.page-header .mobile_menu .offcanvas-body .list ul li img {
  margin: 0px 5px 0px 0px;
}

header.page-header .mobile_menu .offcanvas-body .dropdown.m_dropdown button {
  width: 100%;
  text-align: left;
  font-family: var(--light_font);
  font-weight: 500;
  border-radius: 0px;
  margin: 0px 0px 10px 0px;
  color: #000;
  border-bottom: 1px solid #00000026;
  padding: 0px 0px 10px 0px;
}
header.page-header
  .mobile_menu
  .offcanvas-body
  .dropdown.m_dropdown
  button.btn:focus {
  box-shadow: revert;
}
header.page-header .mobile_menu .offcanvas-body .dropdown-menu.show {
  display: contents !important;
}
header.page-header .mobile_menu .offcanvas-body .dropdown-item {
  padding: 0px;
}
header.page-header .mobile_menu .offcanvas-body .dropdown-menu.show a {
  text-decoration: none;
  font-family: var(--light_font);
  color: #000;
  font-size: 15px;
  font-weight: 500;
  margin: 0px 0px 14px 0px;
  padding: 0px 0px 10px 0px;
  display: block;
  border-bottom: 1px solid #00000026;
}
header.page-header .mobile_menu .offcanvas-body .dropdown-menu.show a img {
  margin: 0px 5px 0px 0px;
  width: 20px;
}
header.page-header .mobile_menu .offcanvas-body a {
  text-decoration: none;
  font-family: var(--light_font);
  font-weight: 500;
  color: #000;
  display: block;
  margin: 0px 0px 10px 0px;
  border-bottom: 1px solid #00000026;
  padding: 0px 0px 10px 0px;
}
header.page-header .mobile_menu .offcanvas-body .dropdown-toggle::after {
  position: absolute;
  right: 0px;
  top: 14px;
  font-size: 20px;
}

header.page-header a.m_menu {
  display: none;
}

.page-header.page-header.is-sticky .up_header {
  display: none;
}

.page-header.page-header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  width: 100%;
  top: 0px;
  z-index: 999;
  padding: 8px 0;
  background: #f3fafd;
  /* backdrop-filter: blur(10px); */
  animation: slideDown 0.35s ease-out;
}
.page-header.page-header.is-sticky .navbar-links li a.quote_btn {
  margin-top: -0px;
}
.page-header.page-header.is-sticky .navbar-logo img {
  width: 150px;
}
header.page-header .munecontent_wraper {
  background: #fef4e8;
  height: 96%;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(110, 123, 129, 0.1);
  padding: 20px;
  position: relative;
}
header.page-header .munecontent_wraper h3 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}
header.page-header .munecontent_wraper .border_line {
  width: 30%;
  height: 3px;
  background: #fe5800;
  border-radius: 100px;
  margin: 10px 0px;
}
header.page-header .munecontent_wraper h5 {
  font-size: 17px;
  margin: 10px 0px 20px 0px;
}
header.page-header .munecontent_wraper a {
  background: #207de9;
  border-radius: 4px !important;
  padding: 10px 4px !important;
  color: #fff !important;
  text-align: center;
  position: absolute !important;
  bottom: 20px !important;
  width: 90%;
  left: 5%;
}
header.page-header .munecontent_wraper a:hover {
  padding-left: revert;
  color: revert;
}
/*end*/

.top-heading h2 {
  font-size: 50px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #143142;
}

.top-heading p {
  font-size: 30px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #474747;
  font-size: 18px;
}

.scrollToTopBtn {
  width: 50px;
  height: 50px;
  background: #0066cb;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: fixed;
  z-index: 1000000000000000000000;
  bottom: -3rem;
  right: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 30px;
  z-index: 9999;
}

.showBtn {
  opacity: 1;
  transform: translateY(-100px);
  pointer-events: all;
  display:none;
}
.embed-responsive {
	line-height: 0;
}
.embed-responsive-item {
	height: 400px;
	width: 100%;
}
.modal-content {
	overflow: hidden;
}
header {
  transition: all 0.5s ease-in-out;
}
/* header .container {
  max-width: 1400px !important;
} */
.toggle-btns {
  display: none;
}
.overlay {
  display: none;
}
.hero {
  background: url(../imgs/hero.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 0 0;
  position: relative;
  z-index: 10;
}
.hero h1.mobile_heading{
	display:none;
}

.container-wrap {
  position: relative;
  padding-bottom: 50px;
}
.hero-left {
  position: relative;
}
.hero-left::after {
  content: "";
  position: absolute;
  bottom: -3.5rem;
  left: -2rem;
  width: 1120px;
  height: 1px;
  background: #bde08f;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -0.5rem;
  width: 1px;
  height: 740px;
  background: #bde08f;
}
.hero .social a svg {
  filter: grayscale(10);
  transition: all 0.3s ease-in-out;
}
.hero .social a:hover svg {
  filter: initial;
}
.hero-left {
  max-width: 500px;
}
.hero-left-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 400px;
  gap: 16px;
}
.hero-left-top .tag {
  border: 1px solid #80c31c;
  padding: 4px 12px;
  border-radius: 40px;
}
.hero-left-top .tag span {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 18px;
  color: #454545;
  text-transform: capitalize;
}
.hero-heading {
  margin-top: 28px;
}
.hero-heading h1 {
  font-family:var(--light_font);
  font-size: 75px;
  font-weight: 500;
  color: #454545;
  text-transform: capitalize;
}
.hero-heading h1 span.bold {
  font-family:var(--bold_font);
  font-weight: 700;
  color: #454545;
	white-space: break-spaces;
}
.hero-heading h1 span.grn {
  font-family:var(--bold_font);
  font-weight: 800;
  color: #80c31c;
	white-space: break-spaces;
}

.hero-left .btns a.btnn {
  padding: 8px 26px;
  font-family: var(--light_font);
  font-size: 20px;
  background: transparent;
  text-transform: capitalize;
  border-radius: 100px;
  color: #0066cb;
  border: 1px solid #0066cb;
  position:relative;	
  z-index:1;
  overflow:hidden;
}
.hero-left .btns a.btnn::after{
	content:'';
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:0%;
	background:#0066cb;
	z-index:-1;
	transition:0.3s;
}
.hero-left .btns a.btnn:hover{
	color:#fff;
}
.hero-left .btns a.btnn:hover:after {
   height:100%;
   transition:0.3s;
}
.hero-left .btns {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 18px;
}

.hero-left .btns a.btnn-outline {
  background: none;
  color: #0066cb;
  font-weight: 700;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.hero-left .btns a.btnn-outline::after{
	content:'';
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:0%;
	background:#0066cb;
	z-index:-1;
	transition:0.3s;
}
.hero-left .btns a.btnn:hover:after {
   height:100%;
   transition:0.3s;
}
.hero-left .btns a.btnn-outline:hover {
  background: #0066cb;
  color: #fff;
}

.hero-left .social {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.hero-left .social-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
  gap: 0 10px;
}
.hero-left .social-txt span {
  color: #626262;
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 20px;
}
.hero .container-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-right {
  position: relative;
}
.hero-right-img-main {
  position: absolute;
  right: 7rem;
  top: 50%;
  transform: translateY(-50%);
}
.hero-right-img-main img {
  width: 510px;
  height: 510px;
  object-fit: cover;
}
.hero-right-hand1 {
  position: absolute;
  top: -2rem;
  right: 0rem;
  animation: fadeInn 1s forwards alternate infinite;
}
@keyframes fadeInn {
  from {
    transform: translateX(0px);
    transform-origin: top;
  }
  to {
    transform: translateY(10px);
  }
}
.hero-right-hand2 {
  position: absolute;
  bottom: -0.4rem;
  right: 14.5rem;
  z-index: -1;
  animation: fadeInn2 1s forwards alternate infinite;
}
@keyframes fadeInn2 {
  from {
    transform: translateX(0px);
    transform-origin: right;
  }
  to {
    transform: translateX(-10px);
  }
}
.hero-right-hand1 img {
  width: 358px;
  height: 476px;
  object-fit: cover;
}
.hero-right-hand1 img,
.hero-right-hand2 img {
  filter: grayscale(1);
}
.hero img.phone_handsimg{
	display:none;
}
.partners {
  padding: 70px 0 40px;
  background: url(../imgs/hero.png) no-repeat;
  background-size: cover;
  background-position: center;
	overflow:hidden;
}
.partners .container-partner {
  max-width: 1140px;
  margin: auto;
  padding: 0 15px;
  position: relative;
}
.partners .container-partner::before {
  content: "";
  position: absolute;
  left: -70%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100px;
  background: linear-gradient(to right, #f3fafd, #f3fafd, #f3fafd, #f3fafd00);
  z-index: 100;
  pointer-events: none;
}
.partners .container-partner::after {
  content: "";
  position: absolute;
  right: -70%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100px;
  background: linear-gradient(to left, #f3fafd, #f3fafd, #f3fafd, #f3fafd00);
  z-index: 100;
  pointer-events: none;
}
.prtner-content img {
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}
.prtner-content img:hover {
  filter: initial;
}
.prtner-content {
  width: 121px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 1.21px 4.85px 0 #00000040;
  border-radius: 6px;
}
.partners .swiper-wrapper {
  padding: 20px 0 !important;
}
.hero-right {
  display: none;
}

.services {
  background: #ebf0fe;
  padding: 40px 0 40px;
}
.container-srv {
  max-width: 1140px;
  padding: 0 15px;
  margin: auto;
}
/* .serv-marqee {
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 0 90px;
} */
.serv-marqee span {
  color: black;
  -webkit-text-fill-color: #ebf0fe; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #626262;
  text-transform: uppercase;
  font-family: var(--light_font);
  font-size: 110px;
  font-weight: 600;
  opacity: 0.2;
  white-space: nowrap;
  width: max-content;
  line-height: 1.2;
}
.serv-marqee {
  width: 100%; /* Container width */
  overflow: hidden; /* Hide the overflowing content */
  white-space: nowrap; /* Ensure content is on one line */
  position: relative;
	display:none;
}

.marquee-inner {
  display: inline-block;
  animation: scroll 30s linear infinite; /* Continuous scroll animation */
}

.marquee-inner span {
  display: inline-block;
  padding: 0 30px;
  text-transform:uppercase !important;
}

/* Keyframe animation to move the marquee */
@keyframes scroll {
  0% {
    transform: translateX(0%); /* Start from the right */
  }
  100% {
    transform: translateX(
      -50%
    ); /* Move left until half of the width (seamless loop) */
  }
}

.serv-heading {
  text-align: center;
}
.serv-heading h2 {
  font-size: 60px;
  font-family: var(--light_font);
  color: #454545;
	text-align:center;
}
.serv-heading h3 {
  font-size: 60px;
  font-family: var(--light_font);
  color: #454545;
	text-align:center;
}
.srv-grn {
  color: #80c31c;
	font-family: var(--bold_font);
}
.serv-heading h2 .srv-bg-grn {
  position: relative;
/*   z-index: 1; */
  color: #454545;
	padding-inline:6px;
	padding-block: 6px;
  line-height: 1
}
.serv-heading h3 .srv-bg-grn {
  position: relative;
/*   z-index: 1; */
  color: #454545;
	padding-inline:6px;
	padding-block: 6px;
  line-height: 1
}
/* .serv-heading h2 .srv-bg-grn::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 103%;
  height: 54px;
  background: #80c31c;
  z-index: -1;
  animation: lineSlide 1.5s forwards alternate infinite;
} */
/* @keyframes lineSlide {
    0% {
        transform: scale(0);
        transform-origin: left;
    }
    100% {
        transform: scale(1);
        transform-origin: right;
    }
} */
@keyframes a-text-scroll {
  /* 0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  } */
  0% {
    transform: translateX(100%); /* Start outside of the container (right) */
  }
  100% {
    transform: translateX(-100%); /* End outside of the container (left) */
  }
}

.service-content {
  width: 100%;
  height: 100%;
  box-shadow: 0 1.49px 8.92px -0.37px #00000033;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 40px 40px;
  border-radius: 26px;
	justify-content: space-between;
}
.service-content-col {
  position: relative;
}
.service-content h4 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 26px;
  color: #0066cb;
}
/* .service-content ul {
  margin: 22px 0 25px !important;
} */
.service-content ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 10px;
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 20px;
  color: #626262;
  margin-bottom: 12px;
}
.service-content a.learn-more {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 10px;
}
.service-content a.learn-more span {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 18px;
  color: #5c9200;
  text-transform: capitalize;
  border-bottom: 2px solid #5c9200;
  transition: all 0.3s ease-in-out;
}
.service-content:hover a.learn-more span {
  color: #0066cb;
  border-color: #0066cb;
}
.service-content a.learn-more svg,
.service-content a.learn-more svg path {
  transition: all 0.3s ease-in-out;
}
.service-content:hover a.learn-more svg {
  transform: translateX(4px);
}
.service-content:hover a.learn-more svg path {
  fill: #0066cb;
}
.grdnt-circle1 {
  position: relative;
}
.grdnt-circle1::after {
  content: "";
  position: absolute;
  top: -70px;
  left: -70px;
  border-radius: 50%;
  width: 167px;
  height: 167px;
  background: linear-gradient(to left, #667eea, #764ba2);
  mix-blend-mode: hard-light;
  opacity: 0.7;
  filter: blur(8px);
  z-index: 100;
  pointer-events: none;
}
.grdnt-circle2 {
  position: relative;
}
.grdnt-circle2::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  background: linear-gradient(to left, #667eea, #764ba2);
  mix-blend-mode: hard-light;
  opacity: 0.5;
  filter: blur(8px);
  z-index: 100;
}
.grdnt-circle3,
.grdnt-circle4 {
  position: relative;
}
.grdnt-circle4::after {
  content: "";
  position: absolute;
  top: 280px;
  right: -50px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  background: linear-gradient(to left, #667eea, #764ba2);
  mix-blend-mode: hard-light;
  opacity: 0.7;
  filter: blur(8px);
  z-index: 100;
}
.grdnt-circle3::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  border-radius: 50%;
  width: 89px;
  height: 89px;
  background: linear-gradient(to left, #667eea, #764ba2);
  mix-blend-mode: hard-light;
  opacity: 0.7;
  filter: blur(8px);
  z-index: 100;
}

.industries {
  background: #f3fafd;
  padding-bottom: 0;
  overflow-y: hidden;
}
.industries .serv-heading h2 {
  text-transform: initial !important;
}
.industries .serv-heading h2 .srv-bg-grn::before {
  top: 14px;
  left: -2px;
}
.ind-content {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 5px #00000033);
    margin-bottom: 35px;
    padding: 2px 0px 0px 20px;
    background: #ffff;
    border-radius: 10px;
    width: 100%;
}
.ind-content.top_wraper {
    margin-top: -17px;
}
.ind-content:hover .postion_number{
	background:#DAECFF !important;
}
.ind-content:hover .ind-content-icon {
  transform: translateY(-10px);
  background:#5C9200;
}
.ind-content-img {
  position: absolute;
  top: 0px;
  left: 5px;
  z-index: -1;
  width:275px;
  display:none;
}
.ind-content-img img{
	max-width:100%;
}
/* .ind-content-content-inner {
  display: flex;
} */
.ind-content-content-inner .right_element {
    display: flex;
    justify-content: right;
    margin: 0px 20px 0px 0px;
}
.ind-content-icon {
  width: 54px;
  height: 54px;
  background: #3385d5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
	position:relative;
	left:4px;
	top:-25px;
}
.ind-content-icon img{
	width:50%;
}
.ind-content-info {
    margin-top: 20px;
    padding: 0 0px 0px 0px;
    position: relative;
    left: 5px;
}
.ind-content-info p {
    color: #626262;
    font-family: var(--light_font);
    font-weight: 400;
    font-size: 18px;
    margin: 14px 0px;
    height: 100px;
    padding: 0px 11px 0px 0px;
}
.ind-content-info h4 {
  color: #454545;
  font-family: var(--light_font);
  font-weight: 700;
  font-size: 20px;
}

.ind-content-info a.learn-more {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 10px;
}
.ind-content-info a.learn-more span {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 18px;
  color: #5c9200;
  text-transform: capitalize;
  border-bottom: 2px solid #5c9200;
  transition: all 0.3s ease-in-out;
}
.ind-content-info:hover a.learn-more span {
  color: #0066cb;
  border-color: #0066cb;
}
.ind-content-info a.learn-more svg,
.ind-content-info a.learn-more svg path {
  transition: all 0.3s ease-in-out;
}
.ind-content-info:hover a.learn-more svg {
  transform: translateX(4px);
}
.ind-content-info:hover a.learn-more svg path {
  fill: #0066cb;
}
.ind-outer {
  padding-bottom: 80px;
}
.ind-outer2 {
  position: relative;
  margin-bottom: 0 !important;
}
.ind-outer-img {
  position: absolute;
  top: 237%;
}
.smart-girl img{
	height: 661px;
  object-fit: cover;
  position: relative;
  margin-bottom: -24px;
}
.ind-outer > img {
  width: 332px;
  height: 100%;
  object-fit: cover;
}
.ind-outer:last-child {
  margin-bottom: 0 !important;
}
.ind-mid-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tab-img {
  display: none;
}

.spacer,
.wrapper {
  width: 100%;
  min-height: 100vh;
}

.wrapper {
  background: lightgray;
}

.card-wrapper {
  width: 100%;
  margin-bottom: 50px;
}
.card-wrapper:last-child {
  margin-bottom: 0;
}

.cards {
  width: 100%;
  margin: 0 auto;
}
section.wrapper.step-wrapper.services.industrie h2{
	margin:0px 0px 40px 0px;
}
.cardd {
  width: 100%;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 30px;
/*   padding: 30px; */
  border-radius: 8px;
  z-index: -1;
  background: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px -2px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.image_boxwraper.width_manage {
    width: 98.5% !important;
}
.step-container.padding_manage {
    padding: 40px 30px 40px 74px;
}
.cardd .image_boxwraper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px 0px 0px 10px;
}
.cardd .image_boxwraper img{
	width: 100%;
    height: 100% !important;
	object-fit:cover;
}
.pin-spacer:nth-child(odd) .cardd {
  background-color: #fff !important;
}
.pin-spacer:nth-child(even) .cardd {
  background-color: #fff !important;
}
.step-wrapper {
  background-color: #fff;
  /*padding: 40px 0 540px;*/
  padding: 40px 0 70px;
}
.step-wrapper .cardd h4 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 48.92px;
  color: #80b3e5;
  text-transform: capitalize;
}
.step-wrapper .cardd h5 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 43px;
  color: #454545;
  text-transform: capitalize;
  margin: 18px 0 45px !important;
}
.step-container {
  width: 100%;
  background: #fff;
  border-radius: 12px;
/*   box-shadow: 0 0 19.57px 1.78px #0b5dff33; */
  padding: 40px 30px 40px 85px;
}
.step-container ul {
  position: relative;
}

.step-container ul li {
  display: flex;
  justify-content: flex-start;
  gap: 0 20px;
  margin-bottom: 25px;
  position: relative;
}
.step-container ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background: #ebf0fe;
	display:none;
}
.step-container ul li .step-list-num {
  min-width: 41px;
  height: 41px;
  background: #ebf0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.step-container ul li .step-list-num span {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 22.24px;
  color: #5f5f5f;
}
.step-container ul li .step-list-info h6 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 22.24px;
  color: #0066cb;
  text-transform: capitalize;
}
.step-container ul li .step-list-info p {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 16px;
  color: #626262;
}
.step-container h6{
	font-family: var(--light_font);
    color: #0066CB;
    font-size: 35px;
}
.step-container h3{
	font-family: var(--bold_font);
    color: #454545;
    font-size: 45px;
	margin:0px 0px 25px 0px;
}
.step-container p{
	font-size:25px;
}
.step-container a.read_morearrow{
	width: 90px;
    height: 90px;
    border: 1px solid #0066cb;
    border-radius: 100px;
    color: #0066cb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 30px 0px 0px 0px;
	position:relative;
	z-index:1;
	overflow:hidden;
}
.step-container a.read_morearrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 0%;
  background: #0066cb;
  transition: 0.3s;
  z-index: -1;
}
.step-container a.read_morearrow:hover i {
  margin: 0px 0px 0px 10px;
}
.step-container a.read_morearrow span{
	display:none;
	color:transparent;
}
.step-container a.read_morearrow:hover {
  display: flex;
  width: 200px;
  transition: 0.3s;
  color: #fff;
}
.step-container a.read_morearrow:hover:after {
  height: 100%;
}
.step-container a.read_morearrow:hover span {
  display: block;
  color:#fff;
}
.step-container ul.step_list{
	margin:0px;
	padding:0px;
}
.step-container ul.step_list li{
	list-style:circle !important;
}
.step-container ul.step_list p{
	font-size:18px !important;
	font-family:var(--light_font);
}
.step-container ul.step_list p i{
	font-size: 10px;
    margin: 0px 10px 0px 0px;
    color: #454545;
    position: relative;
}

.brand-iden-sec {
  padding: 40px 0 70px;
  background: url('https://prasarnet.com/wp-content/uploads/2025/01/brand_identity_bg.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.brand-iden-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #252422;
  z-index: -1;
  mix-blend-mode: multiply;
	display:none;
}
.brand-iden-sec::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../imgs/brand-point.png) no-repeat;
  background-position: bottom left;
  z-index: 1;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  pointer-events: none;
  display:none;
}
.brand-iden-con {
  border: 1px solid #ffffff2c;
  border-radius: 10px;
  padding: 30px 30px 20px;
  background: linear-gradient(to bottom, #ffffff2c, #ffffff07);
  opacity: 1;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
	overflow:hidden;
}
.brand-iden-con::after{
	content:'';
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:0%;
	background:#fff;
	z-index:-1;
	transition:0.3s;
}
.brand-iden-con:hover:after {
   height:100%;
   transition:0.3s;
}
.brand-iden-con:hover h5{
	color:#0066cb;
}
.brand-iden-con:hover p{
	color:#212121;
}
.brand-iden-con h5 {
  font-family:var(--bold_font);
  font-weight: 700;
  font-size: 31px;
  color: #f3fafd;
}
.brand-iden-con p {
  color: #fff;
  font-family:var(--light_font);
  font-weight: 400;
  font-size: 20px;
}
.brand-iden-btm {
  background: #fff;
  padding: 25px 19px;
  border-radius: 12px;
}

/* .brand-iden-btm {
  position: relative;
  z-index: 2;
} */
.brand-iden-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.brand-iden-btm .left {
  display: flex;
  align-items: center;
  width:70%;
  margin:0px;
}
.brand-iden-btm .right {
	margin-top: 0px !important;
    text-align: center;
    width: 30%;
    display: flex;
    justify-content: right;
    margin: 0px;
}
.brand-iden-btm .left h3 {
  margin-bottom: 0;
  font-family: var(--light_font);
  font-size: 35px;
  font-weight: 500;
  color: #000;
  margin-left: 50px;
}
.brand-iden-btm .left h3 span {
  font-weight: 700;
  color: #454545;
  font-family: var(--bold_font);
}
.brand-iden-btm .right .gets-started-btn {
  padding: 10px 36px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid #0066cb;
  color: #0066cb;
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease-in-out;
  position:relative;
  overflow:hidden;
}
.brand-iden-btm .right .gets-started-btn::after{
	content:'';
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:0%;
	background:#0066cb;
	z-index:-1;
	transition:0.3s;
}
.brand-iden-btm .right .gets-started-btn:hover:after {
   height:100%;
   transition:0.3s;
}
.brand-iden-btm .right .gets-started-btn:hover{
	color:#fff;
}

.ideal {
  padding: 100px 0 40px;
  background: #f3fafd;
}
.ideal-content {
  max-width: 800px;
  margin-left: auto;
}
.ideal-content h2 {
  font-family:var(--light_font);
  font-size: 70px;
  color: #454545;
  line-height: 1.4;
}
.ideal-content span.grn-txt {
  color: #80c31c;
  font-family:var(--bold_font);
}
.ideal-content b{
   font-family:var(--bold_font);
	color:#454545;
}
.ideal-content span.grn-bg-txt {
  background: #80c31c;
  color: #1d3107;
  padding: 0 10px;
  line-height: 1;
  display: inline-block;
}

.counter-sec {
  padding: 40px 0px;
  position: relative;
  background: #252422;
}
.counter-sec-rel {
  position: relative;
}

.counter-sec::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../imgs/counter-arrpw.png) no-repeat;
  background-position: bottom left;
  z-index: 1;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  pointer-events: none;
}

.counter-img {
  position: absolute;
  bottom: -40px;
}
.counter-info {
  position: relative;
  z-index: 1;
}
.counter-info h3 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 66.44px;
  color: #80c31c;
}
.counter-info span {
  font-family: var(--light_font);
  font-weight: 300;
  font-size: 24.41px;
  color: #f3fafd;
  text-transform: capitalize;
}

.counter-content {
  padding: 30px 40px;
  width: 100%;
  height: 100%;
}
.counter-content.br-right {
  border-right: 1px solid #80808033;
}
.counter-content.br-bottom {
  border-bottom: 1px solid #80808033;
}

.blogs {
  background: #eef4fe;
  padding: 115px 0 50px;
}
.blogs .serv-heading h2 span {
  display: inline;
}

.blog-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  box-shadow: 2px 3px 8px 0 #00000026;
}
.blog-img img {
  width: 100%;
	height: 100%;
  transition: all 0.9s ease-in-out;
}
.blog-content a:hover .blog-img img {
  transform: scale(1.2);
}
.blog-content a:hover .blog-info h5 {
  color: #0066cb;
}
.blog-content a:hover .blog-category span {
  background: #0066cb;
  border-color: #0066cb;
  color: #fff;
}
.blog-category {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}
.blog-category span {
  display: inline-block;
  border: 1px solid #5c9200;
  border-radius: 50px;
  padding: 6px 15px 5px;
  background: #fff;
  text-transform: capitalize;
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 13px;
  color: #5c9200;
  transition: all 0.5s ease-in-out;
}
.blog-info {
  margin-top: 25px;
}
.blog-info h5 {
  font-family: var(--light_font);
  font-size: 20px;
  color: #454545;
  line-height: 31px;
  transition: all 0.5s ease-in-out;
}

.btm-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}
.btm-content .date span {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 13px;
  color: #626262;
}
.btm-content span.read-more {
  font-family: var(--bold_font);
  font-weight: 600;
  font-size: 16px;
  color: #5c9200;
  text-transform: capitalize;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0 10px;
  line-height: 0.8;
  transition: all 0.3s ease-in-out;
}
.blog-content:hover span.read-more,
.blog-content:hover .btm-content span.read-more .icon {
  color: #0066cb;
  border-color: #0066cb;
}
.blog-content:hover span.read-more,
.blog-content:hover .btm-content span.read-more .icon svg path {
  fill: #0066cb;
}
.btm-content span.read-more .icon {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #5c9200;
}

.btm-content span.read-more .icon svg {
  width: 8px;
}

.view-btn {
  padding: 10px 35px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid #0066cb;
  color: #0066cb;
  font-family: var(--light_font);
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease-in-out;
  overflow:hidden;
}
.view-btn::after{
	content:'';
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:0%;
	background:#0066cb;
	z-index:-1;
	transition:0.3s;
}
.view-btn:hover:after {
   height:100%;
   transition:0.3s;
}
.view-btn:hover {
  color: #fff;
}

.services-page-sec {
  padding-top: 40px;
	background-image: linear-gradient(to right, #f3fafd, #dae8ee26);
}
.services-page-sec h2 .srv-grn {
}

.services-page-sec .cardd {
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid transparent;
  padding: 50px 50px;
  background-position: center center !important;
  background-size: cover !important;
}
.services-page-sec .cards .pin-spacer:nth-child(1) .cardd {
  border-color: #000;
  background: #fff url(../imgs/dot-blue.png) no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

.services-page-sec .cards .pin-spacer:nth-child(2) .cardd {
  border-color: #0066cb;
  background: #fff url(../imgs/dot-grn.png) no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

.services-page-sec .cards .pin-spacer:nth-child(3) .cardd {
  border-color: #5c9200;
  background: #fff url(../imgs/dot-blue-light.png) no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
.services-page-sec .cards .pin-spacer:nth-child(4) .cardd {
  border-color: #019ce2;
  background: #fff url(../imgs/dot-grn.png) no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
.services-page-sec .cardd p {
  margin-bottom: 0;
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.service-card-top h4 {
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
  font-size: 55px !important;
  color: #454545 !important;
  margin-bottom: 0 !important;
}
.service-card-top span {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  font-size: 55px;
  color: #252422;
}

.service-card-btm p {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 43px;
  color: #454545;
  margin-top: 20px;
  max-width: 900px;
}

.service-faq {
  padding: 70px 0 20px;
	background-image: linear-gradient(to right, #f3fafd, #dae8ee26);
	
}
.service-faq .serv-heading {
  text-align: left;
}

.service-faq-main {
  padding-bottom: 70px;
	background-image: linear-gradient(to right, #f3fafd, #dae8ee26);
}
.service-faq-main-img img {
  width: 500px;
}
.service-faq-right {
  padding: 0 80px 0 30px;
}

.faq-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  /* background: linear-gradient(to right, #FFFFFFB2, #BCBCBCD9, #6554A933, #BBBBBB80 ); */
  box-shadow: 0 1.14px 6.85px -0.29px #00000033;
  border-radius: 7px;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
}
.faq-top.white {
    background: #fff;
}
.faq-top h5 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 24px;
  color: #626262;
  margin-bottom: 0;
}
.faq-content.active .faq-top iconify-icon {
  transform: rotate(180deg);
}
.faq-top iconify-icon {
  font-size: 20px;
}

.faq-btm p {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 19px;
  color: #454545;
  padding: 20px 30px 0;
}
.faq-content .faq-btm {
  display: none;
}
.faq-content.active .faq-btm {
  display: block;
  animation: slideDown 0.5s linear forwards alternate;
}
@keyframes slideDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.faq-content.active .faq-btm p {
  padding: 0;
  padding-top: 40px;
  padding-bottom: 0;
}
.faq-content.active {
  background: #fff;
  box-shadow: 0 1.14px 6.85px -0.29px #00000033;
  border-radius: 7px;
  padding: 35px 30px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: slideDown 0.7s linear forwards alternate;
}
.faq-content::before {
  content: "";
  position: absolute;
  top: -44px;
  left: -8px;
  border-radius: 50%;
  width: 167px;
  height: 167px;
  background: linear-gradient(to left, #667eea, #764ba2);
  mix-blend-mode: hard-light;
  opacity: 0;
  filter: blur(8px);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.faq-content::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: linear-gradient(to left, #667eea, #764ba2);
  mix-blend-mode: hard-light;
  opacity: 0;
  filter: blur(8px);
  z-index: -1;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.3s;
}
.faq-content.active::before,
.faq-content.active::after {
  opacity: 1;
}
.faq-content.active .faq-top {
  background: initial;
  box-shadow: initial;
  padding: 0;
}
.faq-content {
  margin: 22px 0;
}

.srv-page-sec1 {
  padding: 70px 0 20px;
	background-image: linear-gradient(to right, #f3fafd, #dae8ee26);
}
.srv-page-container {
  width: 100%;
  height: 100%;
  background: #0b0f30;
  border-radius: 10px;
/*   padding: 49px 30px 65px 40px; */
	padding: 50px 30px 50px 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.srv-page-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../imgs/srv-dot.png) no-repeat;
  background-size: 100%;
  background-position: center center;
  mix-blend-mode: overlay;
  z-index: -1;
}
.srv-page-container h3 {
  font-size: 72px;
  font-family: var(--light_font);
  font-weight: 400;
  letter-spacing: 0.64px;
  color: #f3fafd;
  line-height: 1;
}
/* .srv-sec1-img-right img {
  width: 100%;
} */

.srv-page-container p {
  font-family: var(--light_font);
/*   font-weight: 500; */
  font-size: 26px;
  color: #f3fafd;
  margin-bottom: 0;
  line-height: 1.3;
  margin-top: 22px;
}
.srv-page-container p span.col-grn {
  color: #80c31c;
  font-weight: 500;
}
.srv-page-container p span.col-blue {
  color: #019ce2;
  font-weight: 500;
}

.angle-btn {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 45px;
  color: #fff;
  margin-top: 28px;
  transition: all 0.1s ease-in-out;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.angle-btn::after{
	content:'';
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:0%;
	background: #fff;
    color: #212121;
	z-index:-1;
	transition:0.3s;
}
.angle-btn span{
	display:none;
	font-size:26px;
	margin:0px 10px 0px 0px;
}
.angle-btn:hover {
  color:#212121;
  width:300px;
  border-radius:200px;
}
.angle-btn:hover span{
	display:block;
}
.angle-btn:hover:after {
   height:100%;
   transition:0.3s;
}

.srv-sec1-img-right {
  height: 100%;
}
.srv-sec1-img-right img {
  height: 100%;
  object-fit: scale-down;
  width: 100%;
}

.srv-content-btm {
  padding: 60px 40px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.srv-content-btm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../imgs/srv-img-left1.png) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: all 0.7s ease-in-out;
}
.srv-content-btm:hover::before {
  transform: scale(1.1) rotate(2deg);
}
.srv-content-btm h3 {
  font-size: 72px;
  font-family: var(--light_font);
  font-weight: 400;
  letter-spacing: 0.64px;
  color: #f3fafd;
  line-height: 1;
}

.srv-content-btm p {
  font-family: var(--bold_font);
  font-weight: 500;
  font-size: 26px;
  color: #f3fafd;
  margin-bottom: 0;
  line-height: 1.3;
  margin-top: 22px;
}

.srv-content-btm p span.col-grn {
  color: #80c31c;
  font-weight: 500;
}
.srv-content-btm p span.col-blue {
  color: #019ce2;
  font-weight: 500;
}

.srv-sec1-btm-right {
  background: #252422;
  padding: 80px 40px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.srv-sec1-btm-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../imgs/srv-dot-top.png) no-repeat;
  background-size: cover;
  background-position: top center;
  mix-blend-mode: overlay;
  z-index: -1;
}

.srv-sec1-btm-right h3 {
  font-size: 72px;
  font-family: var(--light_font);
  font-weight: 400;
  letter-spacing: 0.64px;
  color: #f3fafd;
  line-height: 1;
}

.srv-sec1-btm-right p {
  font-family: var(--light_font);
  font-weight: 500;
  font-size: 26px;
  color: #f3fafd;
  margin-bottom: 0;
  line-height: 1.3;
  margin-top: 22px;
}
.srv-sec1-btm-right p span.col-grn {
  color: #80c31c;
  font-weight: 500;
}
.srv-sec1-con {
  width: 100%;
  height: 100%;
}

.srv-page-sec2 {
  padding: 70px 0 0;
	background-image: linear-gradient(to right, #f3fafd, #dae8ee26);
}
.srv-sec2-content-info a.learn-more-btn {
  padding: 8px 26px;
  font-family: var(--light_font);
  font-size: 20px;
  background: transparent;
  text-transform: capitalize;
  border-radius: 100px;
  color: #0066cb;
  border: 1px solid #0066cb;
  transition: all 0.3s ease-in-out;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.srv-sec2-content-info a.learn-more-btn::after{
	content:'';
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:0%;
	background:#0066cb;
	z-index:-1;
	transition:0.3s;
}
.srv-sec2-content-info a.learn-more-btn:hover:after {
   height:100%;
   transition:0.3s;
}
.srv-sec2-content-info a.learn-more-btn:hover {
  background: initial;
  color: #fff;
}

.srv-sec2-content-info {
}
.srv-sec2-content-info h4 {
  font-family: var(--light_font);
  font-weight: 500;
  font-size: 40px;
  color: #454545;
  line-height: 1.1em;
  margin-top: 25px;
}
.srv-sec2-content-info p {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 20px;
  color: #454545;
  margin: 30px 0 35px;
  max-width: 330px;
}

.srv-sec2-content-col {
  padding: 50px 35px 70px;
}
.srv-sec2-content-col:nth-child(1),
.srv-sec2-content-col:nth-child(2),
.srv-sec2-content-col:nth-child(3) {
  padding-top: 0 !important;
}
.srv-sec2-content-col:nth-child(1n + 4) {
  border-top: 1px solid #d3d3d3;
}
.srv-sec2-content-col:nth-child(3n + 1) {
  border-right: 1px solid #d3d3d3;
}
.srv-sec2-content-col:nth-child(3n + 2) {
  border-right: 1px solid #d3d3d3;
}
.srv-sec2-content {
  width: 100%;
  height: 100%;
}
.srv-sec2-content .srv-sec2-content-info {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.srv-why-us-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #252422;
  border-radius: 30px;
  padding: 50px 35px 40px 50px;
  z-index: 1;
}
.srv-why-us-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../imgs/srv-curv.png) no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.srv-why-us-left > span {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 24px;
  color: #019ce2;
}

.srv-why-us-left h4 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 46px;
  color: #fff;
  margin: 10px 0;
}
.srv-why-us-left h4 span {
  color: #80c31c;
}
.srv-why-us-left p {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}

.srv-why-us-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  padding: 30px;
  border-radius: 18px;
  gap: 0 20px;
  width: 100%;
  height: 100%;
}
.srv-why-us-counter .icon {
  min-width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.srv-why-us-counter .info h3 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 46px;
  color: #80c31c;
  margin-bottom: 0;
  line-height: 0;
}
.info-txt {
  display: flex;
  align-items: center;
  list-style: none;
}
.info-txt em {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 46px;
  color: #80c31c;
  font-style: initial;
  line-height: 1;
  margin-top: -24px;
}
.srv-why-us-counter .info span {
  color: #fff;
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 24px;
}

.srv-why-us-main {
  padding: 70px 0;
	background-image: linear-gradient(to right, #f3fafd, #dae8ee26);
}

.srv-why-content {
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 12px #0000001a;
  border-radius: 8px;
  border: 1px solid #b3d1ef;
  padding: 20px 20px 28px;
}
.srv-why-content span {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 60px;
  color: #e1e1e1;
  transition: all 0.3s ease-in-out;
}
.srv-why-content:hover span {
  color: #0066cb;
}
.srv-why-content h4 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 31px;
  color: #0066cb;
  margin: 12px 0 20px;
}
.srv-why-content p {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 20px;
  color: #626262;
}
.srv-why-content a.cir-btn {
  min-width: 60px;
  height: 60px;
  border: 1px solid #0066cb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  transition: all 0.1s ease-in-out;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.srv-why-content a.cir-btn:hover {
  min-width: 200px;
  border-radius:100px;
  background: #fff;
  color: #fff;
}
.srv-why-content a.cir-btn:hover span{
	display:block;
	color:#fff;
}
.srv-why-content a.cir-btn span{
	font-size:18px;
	display:none;
}
.srv-why-content a.cir-btn::after{
	content:'';
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:0%;
	background:#0066cb;
	z-index:-1;
	transition:0.3s;
}
.srv-why-content a.cir-btn:hover:after {
   height:100%;
   transition:0.3s;
}

.srv-trust {
  padding: 70px 0;
	background-image: linear-gradient(to right, #f3fafd, #dae8ee26);
}
.srv-trust-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff, #f3fafd, #ffffff);
  border-radius: 10px;
  box-shadow: 0 0.5px 6px 0 #00000033;
  padding: 25px 35px;
}
.srv-trust-content {
  text-align: center;
}
.srv-trust-content .info h4 {
  margin: 15px 0px 12px;
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 24px;
  color: #0066cb;
}
.srv-trust-content .info p {
  margin-bottom: 0;
  color: #626262;
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 20px;
}
.srv-trust-content .icon {
  text-align: center;
}
.srv-trust {
  padding-bottom: 70px;
}
.unlock-srv {
  background: #252422;
  padding: 32px 0;
}
.unlock-srv-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.unlock-srv-content h3 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 46px;
  color: #f3fafd;
  margin-bottom: 0;
}

.srv-contact {
  padding: 70px 0 70px;

  position: relative;
  z-index: 1;
}
.srv-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../imgs/srv-con-img.png) no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  z-index: -1;
}
.srv-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  mix-blend-mode: multiply;
  z-index: -1;
  opacity: 0.9;
}
.srv-contact-content h2 {
  font-family: var(--bold_font);
  color: #80c31c;
  font-weight: 700;
  font-size: 80px;
  text-transform: capitalize;
}
.srv-contact-content h2 em {
  color: #019ce2;
  font-style: normal;
}
.srv-contact-content p {
  font-family: var(--light_font);
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  max-width: 500px;
}
.srv-contact-content p span {
  text-transform: uppercase;
  color: #80c31c;
}
.srv-contact-content-flex {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
  margin-top: 40px;
  gap: 0 16px;
}
.srv-contact-content-flex .icon {
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #019ce2;
}
.srv-contact-content-flex .icon iconify-icon {
  color: #f3fafd !important;
  font-size: 30px;
}
.srv-contact-content-flex .info h6 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 20px;
  color: #019ce2;
  margin-bottom: 6px;
}
.srv-contact-content-flex .info a {
  display: block;
  font-family: var(--light_font);
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.srv-contact-content-flex .info a:hover {
  color: #0066cb;
}
.srv-contact-form {
  background: #fff;
  border-radius: #ffffff;
  box-shadow: 2px 2px 17px 0 #0000001a;
  padding: 40px 35px;
  border-radius: 10px;
}
.srv-contact-form h4 {
  font-family: var(--bold_font);
  font-weight: 900;
  font-size: 29px;
  color: #454545;
  text-align: center;
  margin-bottom: 30px;
}
.srv-contact-form h4 span {
  color: #80c31c;
}
.srv-form-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  border: 1px solid #e3dbd8;
  border-radius: 8px;
  padding: 0 20px;
  width: 100%;
  gap: 0 10px;
  margin-bottom: 22px;
}
.srv-form-input input {
  border: none;
  background: none;
  width: 100%;
  height: 100%;
  outline: none;
  font-family: var(--light_font);
  color: #626262;
  font-weight: 400;
  font-size: 14px;
}
.srv-form-input input::placeholder,
.srv-form-textareatextarea::placeholder {
  font-family: var(--light_font);
  color: #626262;
  font-weight: 400;
  font-size: 14px;
}

.srv-form-textarea {
  display: flex;

  justify-content: space-between;
  height: 120px;
  border: 1px solid #e3dbd8;
  border-radius: 8px;
  padding: 10px 20px;
  width: 100%;
  gap: 0 10px;
}
.srv-form-textarea textarea {
  border: none;
  resize: none;
  background: none;
  width: 100%;
  outline: none;
  font-family: var(--light_font);
  color: #626262;
  font-weight: 400;
  font-size: 14px;
}
.srv-form-textarea iconify-icon {
  transform: translateY(8px);
}
.srv-contact-form button {
  width: 100%;
  border-radius: 8px;
  padding: 18px 30px;
  background: #0066cb;
  border: 1px solid #0066cb;
  font-family: var(--light_font);
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  margin-top: 25px;
  transition: all 0.3s ease-in-out;
}
.srv-contact-form button:hover {
  background: transparent;
  color: #0066cb;
}
.srv-blog {
  background-image: linear-gradient(to right, #f3fafd, #dae8ee26);
}
.srv-testimonials {
  padding: 70px 0 130px;
  background: #eef4fe;
}
.testi-arrows .swiper-button-next::after,
.testi-arrows .swiper-button-prev::after {
  display: none;
}
.testi-arrows .swiper-button-next:not(.swiper-button-disabled) svg {
  fill: #31342b;
}
.testi-arrows .swiper-button-prev:not(.swiper-button-disabled) svg {
  fill: #31342b;
}
.testi-arrows {
  position: relative;
}
.testi-slider-content-outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.quote-left {
  position: absolute;
  left: 0;
  top: -45px;
}
.quote-right {
  position: absolute;
  right: 0;
  top: -45px;
}
.testi-content {
  margin: auto;
  width: 100%;
}
.testi-content p {
  text-align: center;
  font-family: var(--light_Regular);
  font-weight: 400;
  font-size: 22px;
  color: #141414;
  max-width: 774px;
  margin: auto;
}
.testi-content .line {
  width: 215px;
  height: 1px;
  background: #a29582;
  margin: 40px auto;
}
.testi-flex {
  display: flex;
  justify-content: center;
  gap: 0 12px;
  align-items: center;
}
.srv-testimonials .swiper-wrapper {
  padding: 70px 0 0;
}
.testi-content .img {
  min-width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}
.testi-content .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-content .info h5 {
  font-family: var(--light_font);
  font-weight: 500;
  font-size: 24px;
  color: #414141;
  text-transform: capitalize;
  margin-bottom: 0 !important;
  line-height: 1;
}
.testi-content .info span {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 14px;
  color: #414141;
  text-transform: capitalize;
  margin-bottom: 0;
}
.testi-arrows {
  background-color: red;
  position: relative;
  max-width: 100px;
  margin-left: auto;
  top: 350px;
}
.srv-website-sec {
  position: relative;
  overflow: hidden;
  background: url(../imgs/wbsite-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0px;
}
/* .srv-website-img {
  position: absolute;
  width: 100%;
  height: 100%;

}
.srv-website-img img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
} */
.srv-website-sec .serv-marqee span {
  -webkit-text-fill-color: transparent;
}
.srv-website-sec .gap {
  width: 100%;
  height: 100px;
  margin: 20px 0;
}
.src-website-info {
  /* position: absolute;
  z-index: 100;
  top: 0; */
  text-align: center;
}
.src-website-info h2 {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 50px;
  color: #fff;
}
.src-website-info span {
  color: #80c31c;
}
.srv-wb-padd {
  padding: 0px 0 80px;
}

.src-website-info .container {
  position: relative;
}
.src-website-info-btm h2 {
  text-align: left;
}
.srv-wbsite-btn .container {
  position: relative;
  width: 100%;
  height: 100px;
}
.srv-wbsite-btn a {
  position: absolute;
  top: 50%;
  right: 0;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffff;
}
.srv-wbsite-btn a:hover {
  background: #80c31c;
  border-color: #80c31c;
}
.industry-sec1 .srv-page-container {
  background: #252422;
}
.industry-sec2 {
  padding-top: 0;
}
.industry-sec2-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
}
.industry-sec2-content-col:nth-child(odd) .industry-sec2-content {
  background: #000;
}
.industry-sec2-content-col:nth-child(even) .industry-sec2-content {
  background: #fff;
}
.industry-sec2-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.industry-sec2-img img {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  transition: all 0.7s ease-in-out;
}
.industry-sec2-content:hover img {
  transform: scale(1.1) rotate(1deg);
  filter: grayscale(0);
}
.industry-sec2-info {
  padding: 45px 10px;
}
.industry-sec2-content .industry-sec2-info h4 {
  font-family: var(--bold_font);
  font-weight: 600;
  font-size: 24px;
}
.industry-sec2-content-col:nth-child(odd) .industry-sec2-info h4 {
  color: #f3fafd;
}
.industry-sec2-content-col:nth-child(even) .industry-sec2-info h4 {
  color: #000;
}
.industry-sec2-info p {
  font-family: var(--light_Regular);
  font-weight: 300;
  font-size: 20px;

  margin-top: 22px;
  margin-bottom: 0;
}
.industry-sec2-content-col:nth-child(odd) .industry-sec2-info p {
  color: #f3fafd;
}
.industry-sec2-content-col:nth-child(even) .industry-sec2-info p {
  color: #454545;
}
.industry-sec2-btm {
  padding-bottom: 20px;
  padding-left: 10px;
}
.industry-sec2-btm a {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position:relative;
  z-index:1;
  overflow:hidden;
  transition:all 0.1s ease-in-out;
}
.industry-sec2-btm a::after{
	content:'';
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:0%;
	background:#80c31c;
	z-index:-1;
	transition:all 0.1s ease-in-out;
}
.industry-sec2-btm a:hover:after {
   height:100%;
   transition:0.3s;
}
.industry-sec2-btm a:hover{
	border-color:#80c31c;
	width:200px;
	border-radius:100px;
}
.industry-sec2-btm a:hover span{
	display:block;
	color:#fff;
	margin:0px 20px 0px 0px;
}
.industry-sec2-btm a span{
  display:none;
}
.industry-sec2-content-col:nth-child(odd) .industry-sec2-btm a {
  border: 1px solid #fff;
}
.industry-sec2-content-col:nth-child(even) .industry-sec2-btm a {
  border: 1px solid #454545;
}
.industry-sec2-content-col:nth-child(even) .industry-sec2-btm a svg path {
  fill: #454545;
  transition: all 0.3s ease-in-out;
}
.industry-sec2-content-col:nth-child(even) .industry-sec2-btm a:hover svg path {
  fill: #fff;
}
.industry-why-choose {
  background: #f3fafd;
  padding: 50px 0;
}
.industry-choose-content-col:first-child .industry-choose-content {
  background: none;
}
.industry-choose-content {
  width: 100%;
  height: 100%;
  background: #313131;
  border-radius: 10px;
}
.industry-choose-content-col:first-child .industry-choose-content h3 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 60px;
  color: #252422;
  line-height: 65px;
}
.industry-choose-content-col:first-child .industry-choose-content h3 span {
  color: #80c31c;
}
.industry-choose-content-col:first-child .industry-choose-content p {
  font-family: var(--light_font);
  font-weight: 500;
  font-size: 18px;
  color: #454545;
  margin-top: 20px;
}
.industry-choose-content-col:not(:first-child) .industry-choose-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 25px;
}
.industry-choose-content-col:not(:first-child) .industry-choose-content h4 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 31px;
  color: #f3fafd;
  text-transform: capitalize;
  margin-top: 20px;
}

.industry-choose-content-col:not(:first-child) .industry-choose-content p {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 22px;
}
.industry-choose-content-col:not(:first-child)
  .industry-choose-content
  .learn-more-btn {
  padding: 8px 26px;
  font-family: var(--light_font);
  font-size: 20px;
  background: transparent;
  text-transform: capitalize;
  border-radius: 100px;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.3s ease-in-out;
  position:relative;
  z-index:1;
  overflow:hidden;
}
.industry-choose-content-col:not(:first-child)
  .industry-choose-content
  .learn-more-btn::after{
	content:'';
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:0%;
	background:#fff;
	z-index:-1;
	transition:0.3s;
}
.industry-choose-content-col:not(:first-child)
  .industry-choose-content
  .learn-more-btn:hover:after {
   height:100%;
   transition:0.3s;
}
.industry-choose-content-col:not(:first-child)
  .industry-choose-content
.learn-more-btn:hover{
	color:#212121 !important;
}

.industry-choose-content-col:not(:first-child)
  .industry-choose-content
  .learn-more-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.industry-work {
  position: relative;
  background: url(../imgs/industry-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.industry-work::before {
  content: "";
  position: absolute;
  bottom: -209px;
  right: 0;
  background: url(../imgs/industry-bg2.png) no-repeat;
  background-position: right center;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-dodge;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}
.industry-work-content {
  text-align: right;
}
.industry-work-content a {
  margin: 70px 0;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.industry-work-content a:hover {
  background: #80c31c;
  border-color: #80c31c;
}
.industry-work-content h2 {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 50px;
  color: #f3fafd;
}
.industry-work-content h2 span {
  color: #80c31c;
}

.industry-case-studies {
  padding: 70px 0;
  overflow-x:hidden;
}
.industry-case-studies .swiper {
    pointer-events: none !important;
}
.industry-case-content {
  width: 100%;

  overflow: hidden;
  border-radius: 10px;
}
.case-study-row {
  position: relative;
  z-index: 1;
}
.case-study-row::before {
  content: "";
  position: absolute;
  left: -80%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  z-index: 100;
}
.case-study-row::after {
  content: "";
  position: absolute;
  right: -80%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  z-index: 100;
}

.blog-banner {
  background: url(https://prasarnet.com/wp-content/uploads/2025/01/Frame-1000009898.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 200px 0 60px;
}
.blog-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0 80px;
}
.blog-banner-content h1 {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 76px;
  color: #f3fafd;
  text-transform: capitalize;
}
.blog-banner-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
}
.blog-banner-content ul li a {
  font-family: var(--light_font);
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  color: #f3fafd;
}
.blog-banner-content span {
  color: #f3fafd;
}
.blog-banner-content ul li a.active {
  color: #80c31c;
}
.blog-main-left-img {
  width: 100%;
  height: 535px;
  border-radius: 10px;
  overflow: hidden;
}
.blog-main-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-main {
  padding: 70px 0;
}
.blog-main-left-content h3 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 39px;
  color: #252422;
  margin: 35px 0 15px;
}
.blog-main-left-content p {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 18px;
  color: #454545;
}
.blog-left-content-btm {
  margin-top: 45px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #0066cb;
  padding: 23px 38px;
  border-radius: 10px;
}
.blog-left-content-btm p {
  margin-bottom: 0;
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 16px;
  color: #edf2f4;
}
.blog-left-content-btm h6 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 20px;
  color: #edf2f4;
}
.blog-main-right-top {
  padding: 48px 32px;
  color: #edf2f4;
  box-shadow: 0 5px 15px 0 #00000040;
  border-radius: 10px;
}
.blog-main-right-top h4 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 39px;
  color: #000;
  margin-bottom: 35px;
}
.blog-main-right-top ul li {
  margin-bottom: 25px;
}
.blog-main-right-top ul li a {
  /*display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;*/
}
.blog-main-right-top ul li:last-child {
  margin-bottom: 0;
}
.blog-main-right-top h6 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 18px;
  color: #252422;
}
.blog-main-right-top span {
  color: #454545;
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 13px;
}
/*.blog-main-right-top .img {
  width: 100%;
  height: 100%;
}*/
.blog-main-right-top ul li .img {
    width: 30%;
    height: 100%;
    float: left;
}
.blog-main-right-top ul li .info {
    width: 67%;
    margin-left: 3%;
    float: left;
}
.blog-main-right-top .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-main-right-btm {
  padding: 40px 25px;
  border-radius: 10px;
  background: #252422;
  margin-top: 28px;
}
.blog-main-right-btm h4 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 24px;
  color: #edf2f4;
  text-align: center;
}

.blog-main-right-btm h4 span {
  color: #80c31c;
}
.blog-main-right-btm p {
  text-align: center;
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 16px;
  color: #edf2f4;
  margin: 30px 0;
}
.blog-main-right-btm .blog-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-main-right-btm a.blog-btnn {
  padding: 8px 26px;
  font-family: var(--light_font);
  font-size: 20px;
  background: #0066cb;
  text-transform: capitalize;
  border-radius: 100px;
  color: #fff;
  border: 1px solid #0066cb;
  transition: all 0.3s ease-in-out;
}
.blog-main-right-btm a.blog-btnn:hover {
  background: transparent;
}
.con-banner-rel {
  position: relative;
}
.col-banner-left {
  text-align: center;
  padding-bottom: 130px;
}
.col-banner-left h1 {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 62px;
  color: #454545;
  margin-bottom: 0;
}
.col-banner-left h1 span {
  display: block;
  margin-bottom: 0;
}
.col-banner-left h1 span.span-box {
  color: #454545;
  font-family: var(--bold_font);
  font-size: 65px;
  font-weight: 700;
  border: 1px solid #626262;
  border-radius: 4px;
  padding: 10px;
  transform: rotate(-4.75deg);
  max-width: 230px;
  margin: auto;
  line-height: 1;
}
.col-banner-left h1 span em {
  font-weight: 100;
  font-style: normal;
}
.col-banner-left h1 span.span-box-grn {
  color: #454545;
  font-family: var(--bold_font);
  font-size: 65px;
  font-weight: 700;
  background-color: #baff52;
  border-radius: 4px;
  padding: 10px;
  transform: rotate(2.9deg);
  max-width: 420px;
  margin: auto;
}
.con-banner-btn {
  margin-top: 42px;
}
.con-banner-btn a {
  padding: 8px 26px;
  font-family: var(--light_font);
  font-size: 20px;
  background: #0066cb;
  text-transform: capitalize;
  border-radius: 100px;
  color: #fff;
  border: 1px solid #0066cb;
  transition: all 0.3s ease-in-out;
}
.con-banner-btn a:hover {
  background: transparent;
  color: #0066cb;
}
.con-banner-social {
  margin-top: 10px;
}
.con-banner-social span {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 22px;
  color: #626262;
  display: block;
}
.con-banner-social ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 14px;
}
.con-banner-social ul li {
  transition: all 0.3s ease-in-out;
}
.con-banner-social ul li img {
  filter: grayscale(1);
  width: 22px;
  transition: all 0.3s ease-in-out;
}
.con-banner-social ul li:hover img {
  filter: grayscale(0);
}
.con-banner-social ul:hover li:not(:hover) {
  opacity: 0.5;
}
.contact-banner {
  overflow: hidden;
  padding-top: 70px;
  position: relative;
}

.col-banner-img {
  position: relative;
  z-index: 1;
  transform: translateY(32px);
}
.col-banner-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -4rem;
  width: 432px;
  height: 370px;
  background: #b2ff3fe5;
  z-index: -1;
  border-radius: 150px 150px 0 0;
}
.con-banner-left-img {
  position: absolute;
  left: -10rem;
  bottom: 0rem;
  filter: grayscale(1);
  z-index: -1;
}

.contact-pg-sec1 {
  padding-top: 40px;
  background: #f3fafd;
}
.contact-pg-sec1 .partners {
  padding-top: 25px;
}

.con-page-container {
  border: 2px solid #66a3e0;
  padding: 20px 15px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.con-form-container {
}
.con-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../imgs/con-vector.png) no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.con-form-def {
  width: 100%;
  height: 100%;
}
.con-form-container {
  background: #cce0f5;
  padding: 40px 50px;
  border-radius: 10px;
}
.con-form-container h4 {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 39px;
  position: relative;
  z-index: 2;
}
.con-form-container h4 span {
  color: #0066cb;
}
.con-form-container p {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 20px;
  color: #454545;
  margin-bottom: 25px;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}
.con-form-container form {
  position: relative;
  width: 100%;
  z-index: 2;
}
.con-form-container form .form-input input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #252422;
  border-radius: 0;
  padding: 0;
  height: 50px;
  outline: none;
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 20px;
  color: #626262;
}
.con-form-container form .form-input textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #252422;
  border-radius: 0;
  padding: 0;
  height: 80px;
  outline: none;
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 20px;
  color: #626262;
}
.con-form-container form .form-input input:focus,
.con-form-container form .form-input textarea {
  box-shadow: none;
}
.con-form-container form .form-input input::placeholder,
.con-form-container form .form-input textarea::placeholder {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 20px;
  color: #626262;
}
.from-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 25px 0;
  gap: 0 6px;
  position: relative;
  z-index: 2;
}
.from-check label {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 16px;
  color: #626262;
  cursor: pointer;
}
.from-check input {
  width: 20px;
  height: 20px;
  appearance: none;
  border: 1px solid #000 !important;
  background: transparent;
  position: relative;
  outline: none;
  margin-right: 6px;
  border-radius: 2px;
  cursor: pointer;
}
.from-check input::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.from-check input:checked:after {
  opacity: 1;
}
.con-form-container button {
  width: 100%;
  background: #0066cb;
  padding: 18px 27px;
  border-radius: 8px;
  border: none;
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  margin-top: 18px;
  border: 1px solid #0066cb;
  transition: all 0.3s ease-in-out;
}
.con-form-container button:hover {
  background: transparent;
  color: #0066cb;
}
.contact-pg-sec1 {
  padding-bottom: 70px;
}
.com-info {
  margin-top: 40px;
}
.com-info span {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 20px;
  color: #454545;
  width: 400px;
}
.com-info li {
  margin-bottom: 32px;
}
.com-info li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 18px;
}
.com-info li a span {
  transition: all 0.3s ease-in-out;
}
.con-form-def {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.com-info li a:hover span {
  color: #0066cb;
}
.con-form-bottom span {
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 20px;
  color: #626262;
  display: inline-block;
  margin-bottom: 6px;
}
.con-form-bottom ul {
  display: flex;
  align-items: center;
  gap: 0 22px;
}
.con-form-bottom ul li img {
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}
.con-form-bottom ul:hover li:not(:hover) img {
  opacity: 0.5;
}
.con-form-bottom ul li:hover img {
  filter: grayscale(0);
}
.con-testimonials {
  background: #252422;
}
.con-testimonials .serv-marqee span {
  color: transparent;
  -webkit-text-fill-color: initial;
}
.con-testimonials h2 {
  color: #fff !important;
}
.con-testimonials .testi-content p {
  color: #fff;
  max-width: 700px;
}
.srv-testimonials .testi-content p {
  max-width: 670px;
}
.con-testimonials .testi-content .info h5 {
  color: #fff;
}
.con-testimonials .testi-content .info span {
  color: #fff;
}
.con-testimonials .testi-arrows svg path {
  stroke: #ffff;
}
.srv-testimonials .swiper .swiper-slide {
  overflow: visible !important;
}

.contact-pg-sec1 .container-partner::before {
  content: "";
  position: absolute;
  left: -80%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to right,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd00
  ) !important;
  z-index: 100;
  pointer-events: none;
}
.contact-pg-sec1 .container-partner::after {
  content: "";
  position: absolute;
  right: -80%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to left,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd00
  ) !important;
  z-index: 100;
  pointer-events: none;
}

/* .def-margin-top {
  margin-top: 100px;
} */

.footer {
  /* background: #cce0f5; */
  position: relative;
  padding: 50px 0 20px;
  z-index: 1;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../imgs/footer-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  z-index: -1;
}

.footer-content .logo {
  margin-bottom: 15px;
}
.footer-content p {
  font-family: var(--light_font);
  font-size: 16px;
  font-weight: 400;
  color: #252422;
  margin-bottom: 14px;
}
.footer-content .follow span {
  display: inline-block;
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 20px;
  color: #454545;
  text-transform: capitalize;
  margin-bottom: 12px;
}
.footer-content .follow ul {
  display: flex;
  align-items: center;
  gap: 0 20px;
  transition: all 0.3s ease-in-out;
}
.footer-content .follow ul img {
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}
.footer-content .follow ul:hover a:not(:hover) {
  opacity: 0.5;
}
.footer-content .follow ul a:hover img {
  filter: grayscale(0);
}
.footer-content h4 {
  font-family: var(--bold_font);
  font-weight: 900;
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}
.footer-content ul li a {
  font-family: var(--light_font);
  font-weight: 500;
  font-size: 18px;
  color: #000;
  text-transform: capitalize;
  padding-bottom: 15px;
}
.footer-content ul li a:hover {
  color: #0066cb;
}
.footer-content ul:hover li:not(:hover) a {
  opacity: 0.3;
}
.footer .row-top {
  gap: 0 0px;
}

.footer-col2 {
  padding-left: 40px;
}
.footer-col4 {
  padding-left: 20px;
}
.footer-content input {
  width: 100%;
  height: 56px;
  border-radius: 5px;
  border: 1px solid #0066cb;
  padding: 0 15px;
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 16px;
  color: #252422;
  outline: none;
  margin-top: 10px;
}
.footer-content input::placeholder {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 16px;
  color: #252422;
}
.footer-content button {
  margin-top: 22px;
  width: 100%;
  height: 56px;
  border-radius: 5px;
  border: 1px solid #0066cb;
  background: #0066cb;
  font-family: var(--bold_font);
  font-weight: 600;
  font-size: 24px;
  color: #f3fafd;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.footer-content button:hover {
  background: transparent;
  color: #0066cb;
}
.row-top {
  padding-bottom: 50px;
}
.row-btm {
  padding-top: 15px;
  border-top: 1px solid #626262;
}
.row-btm p {
  font-family: var(--light_font);
  font-weight: 400;
  font-size: 13px;
}
.row-btm p a.pr {
  color: #000000;
}

.service-pg-banner .hero-left {
  max-width: initial;
  flex: 2;
}
.srv-hero-right {
  flex: 1;
  position: relative;
}

.service-pg-banner .hero-left h1 {
  text-transform: initial;
  color: #626262;
  font-size: 57px;
}

.service-pg-banner .hero-left h1 .bold {
  color: #454545;
}

.service-pg-banner .hero-left::before {
  display: none;
}
.service-pg-banner .hero-left::after {
  display: none;
}
.service-pg-banner {
  background: initial;
  background: linear-gradient(to right, #f3fafd, #dae8ee26);
  padding-bottom: 70px;
}
.service-pg-banner .container-partner {
  position: relative;
}
.service-pg-banner .container-partner::before {
  content: "";
  position: absolute;
  left: -80%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to right,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd00
  ) !important;
  z-index: 100;
  pointer-events: none;
}
.service-pg-banner .container-partner::after {
  content: "";
  position: absolute;
  right: -80%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100px;
  background: linear-gradient(
    to left,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd,
    #f3fafd00
  ) !important;
  z-index: 100;
  pointer-events: none;
}

.service-pg-banner .container-wrap {
  align-items: initial;
  justify-content: space-between;
}
.srv-hero-img1 img {
  max-width: 700px !important;
  transform: translateY(-50px);
}

.srv-hero-img2 {
  position: absolute;
  top: 0;
}

.service-pg-banner .container-wrap {
  padding-bottom: 10px;
}

.service-pg-banner .hero-left .btns {
  margin-top: 36px;
}

.ind-banner {
  background: url(../imgs/ind-ban.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.ind-img {
  transform: translateY(-70px);
}
.nav-btn-outline.active {
  background: #0066cb !important;
  color: #fff !important;
}

.growing {
  padding: 70px 0px;
  background: #f3fafd;
}
.growing-container {
  position: relative;
}
.growing-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 1px 12px 0 #00000046;
  position: relative;
  z-index: 1;
}
.growing-container::after {
  content: "";
  position: absolute;
  bottom: -2.2rem;
  left: -2.5rem;
  min-width: 800px;
  height: 400px;
  background-color: #d7dee1;

  border-radius: 10px;
}
.growing-img img {
  max-width: 100%;
  width: 1200px;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
	.powerfull-brand h4{
		font-size:24px !important;
	}
	.play-btn {
		width: 60px !important;
        height: 60px !important;
	}
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
}
.play-btn {
  line-height: 0;
}
.play-btn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.8),
    0 0 0 30px rgba(255, 255, 255, 0.6), 0 0 0 45px rgba(255, 255, 255, 0.4);
  z-index: -1;
  border-radius: 50%;
  animation: sppbModalRipple 2s infinite;
}

@keyframes sppbModalRipple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.satisfied-customers {
  position: absolute;
  left: 0rem;
  bottom: 20rem;
  z-index: 10;
  background: #fff;
  box-shadow: 0 4px 12px 0 000000;
  border-radius: 10px;
  padding: 16px 70px 14px;
}
.satisfied-flex {
  display: flex;
  align-items: flex-end;
}
.satisfied-customers .customer {
  margin-left: -5px;
  min-width: 49px;
  height: 49px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.satisfied-customers .customer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.satisfied-customers .customers-content {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.satisfied-customers .customer-top {
  width: 100%;
}
.satisfied-customers h6 {
  font-family: var(--light_font);
  color: #252422;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
  font-size: 20px;
}
.satisfied-customers .total-customer {
  transform: translateX(-16px);
  min-width: 49px;
  height: 49px;
  border-radius: 50%;
  overflow: hidden;
  background: #0066cb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bold_font);
  font-size: 13px;
  position: relative;
  z-index: -1;
  color: #fff;
}
.rating-container {
  position: absolute;
  bottom: 20rem;
  right: 0rem;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 12px 0 000000;
  border-radius: 10px;
  padding: 6px 80px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rating-container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  margin-bottom: 4px !important;
}

.rating-container h5 {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 700;
  font-size: 39px;
  line-height: 1.2;
  text-align: left;
  color: #252422;
  margin-bottom: 0;
  text-align: center;
}
.rating-container h5 em {
  font-style: normal;
  color: #454545;
  font-size: 20px;
  text-transform: capitalize;
}
.rating-container small {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  display: inline-block;
  text-align: center;

  color: #626262;
}

.growing-btm {
  background: #252422;
  border-radius: 10px;
  padding: 18px 30px;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.growing-btm h6 {
  margin-bottom: 0;
  font-family: var(--bold_font);
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 1.2;
  text-align: left;
  color: #f3fafd;
}
.growing-btm h6 span.blue {
  color: #019ce2;
  font-weight: 800;
}
.growing-btm h6 span.grn {
  color: #80c31c;
  font-weight: 800;
}
.growing-btm .growing-btn {
  border-radius: 5px;
  padding: 10px 30px;
  border: 1px solid #0066cb;
  font-family: var(--bold_font);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  background: #fff;
  color: #0066cb;
}
.growing-btm .growing-btn:hover {
  background: #0066cb;
  color: #fff;
}

.powerfull-brand {
  background: #252422;
  padding: 50px 0;
}

.powerfull-brand h4 {
  font-family: var(--bold_font);
  font-style: normal;
  font-weight: 500;
  font-size: 35px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: left;
  color: #f3fafd;
}
.powerfull-brand span.blue {
  color: #019ce2;
  font-weight: 700;
}
.powerfull-brand span.grn {
  color: #80c31c;
  font-weight: 700;
}
.powerfull-brand .mid h6 {
  font-family: var(--light_font);
  font-style: normal;
  font-weight: 500;
  font-size: 39px;
  line-height: 1.2;
  text-align: left;

  color: #454545;
  margin-bottom: 0;
}
.powerfull-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3fafd;
  border-radius: 10px;
  padding: 16px 25px;
}
.powerfull-content .gets-started-btn {
  padding: 8px 30px;
  border-radius: 100px;
  background: #0066cb;
  border: 1px solid #0066cb;
  color: #fff;
  font-family: var(--bold_font);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease-in-out;
}

.powerfull-content .gets-started-btn:hover {
  background: initial;
  color: #0066cb;
}
.hm-testi {
  background: #fff;
}

.def-dark-bg {
  margin-top: 140px;
  background: #252422;
}
.def-dark-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

.def-dark-flex .left h6 {
  font-family: var(--bold_font);
  font-style: normal;
  font-weight: 700;
  font-size: 46px;
  line-height: 1.07;
  text-align: left;

  color: #f2fafc;
  margin-bottom: 0;
}
.def-dark-bg2 {
  margin-top: 0;
}

.def-dark-flex .left .grn {
  color: #80c31c;
}
.def-dark-flex .left .blue {
  color: #019ce2;
}

.speciality-sec {
  background: #f3fafd;
  padding: 70px 0;
}

.speciality-content {
  width: 100%;
  height: 100%;
  box-shadow: 5px 5px 23px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #99c2ea;
  border-radius: 10px;
  background: #fff;
  padding: 40px 12px 0 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow: hidden;
}
.speciality-content p {
  font-family: var(--bold_font);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.45;
  text-align: left;

  color: #626262;
}
.speciality-content .get-quote {
  font-family: var(--bold_font);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;

  color: #f2fafc;
  background: #0066cb;

  border-radius: 5px;
  padding: 8px 18px;
  margin-top: 25px;
  border: 1px solid #0066cb;
}
.speciality-content .get-quote:hover {
  background: transparent;
  color: #0066cb;
}

.team {
  background: #252422;
  padding: 50px 0;
}

.team .serv-marqee span {
  color: transparent;
  -webkit-text-fill-color: initial;
  -webkit-text-stroke-color: #ffffff;
}

.team-top-left h5 {
  /* Meet our creative Team : Behind the creative minds (text) */
  font-family: var(--light_font);
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.3;
  text-align: left;
  color: #f3fafd;
}

.team-top-left h5 span.grn {
  color: #80c31c;
  font-family: var(--bold_font);
}
.team-top-left h5 span.grn-bg {
  background: transparent;
  line-height: 0.9;
}
.team-top-right {
  display: flex;
  overflow: hidden;
  align-items: center;
  background: #fff;
}
.team-top-right .img {
  width: 100%;
  height: 100%;
}
.team-top-right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-top-right .info {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.team-top-right .info h4 {
  font-family: var(--bold_font);
  font-style: normal;
  font-weight: 700;
  font-size: 31px;
  text-align: left;

  color: #454545;
  text-transform: capitalize;
  margin-bottom: 0;
}
.team-top-right .info span {
  font-family: var(--bold_font);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  text-align: left;

  color: #454545;
  line-height: 0;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.team-top-right .info p {
  font-family: var(--bold_font);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.37;
  text-align: left;

  color: #626262;
}

.team-top-right .img img {
  filter: grayscale(1);
  transition: all 0.5s ease-in-out;
}
.team-top-right:hover .img img {
  filter: grayscale(0);
}

.team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	filter: grayscale(1)!important;
	transition: all .3s ease-in-out;
}
.team img:hover {
	filter: grayscale(0)!important;
}
.link-relative{
	position:relative;
}
	  .link-relative{
	position:relative;
		  cursor:pointer;
}
 
/*   .link-relative:focus + .menu {
    display: block !important;
  } */
		.menu{
  position: absolute;
  display: none !important;
			width:215px !important;
			height:auto !important;
  background: white;
  padding: 15px;
  z-index: 20;
  top:25px;
  border-radius:16px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
		.menu li{
			list-style-type:none;
			 margin-bottom:16px
		}
	 
.ellipse-one{
	width:160px;
	height:160px;
	background-image:linear-gradient(to right,#667EEA,#764BA2);
	 mix-blend-mode: hard-light;
	filter: blur(20px);
	border-radius:50%;
	position:absolute;
	top: 12%;
	left: -5%;
}
.ellipse-two{
	width:160px;
	height:160px;
	background-image:linear-gradient(to right,#667EEA,#764BA2);
	 mix-blend-mode: hard-light;
	filter: blur(20px);
	border-radius:50%;
	position:absolute;
top: 41%;
  right: -6%;
}
.ellipse-three{
	width:90px;
	height:90px;
	background-image:linear-gradient(to right,#667EEA,#764BA2);
	 mix-blend-mode: hard-light;
	filter: blur(20px);
	border-radius:50%;
	position:absolute;
bottom: 41%;
  left: -6%;
}
.ellipse-four{
	width:90px;
	height:90px;
	background-image:linear-gradient(to right,#667EEA,#764BA2);
	 mix-blend-mode: hard-light;
	filter: blur(20px);
	border-radius:50%;
	position:absolute;
bottom: 20%;
  right: -6%;
}
@media (max-width: 767px) {
  /* Your styles for screens smaller than 767px go here */
	.counter-content.br-bottom{
		border:none !important;
	}
	.info-txt em{
		font-size:28px !important;
		margin-top:-18px !important;
	}
}
	.menu-block{
	display:block !important;
	 
}
@media (max-width: 1023px) {
		.menu-block{
	display:block !important;
	position:static !important;
}
	.menu{
		box-shadow:none !important;
		border-radius:none !important;
		width:100% !important;
		padding:0 !important;
	}
	.menu li{
		margin-bottom:0 !important;
	}
.menu li a {
	padding-left:24px !important;
}
}

.chevron-down{
	margin-left:3px;
	width:6px !important;
	rotate:90deg;
	transition:.2s ease-in;
}
.chevron-rotate{
	rotate:-90deg;
}
/* industry  */
.industry-choose-content:hover{
	background-color:#0066CB;
	transition:.4s ease;
}
.industry-choose-content:hover .learn-more-btn{
	background-color:#80C31C !important;
}
.hero-subheading{
	color:#626262;
	font-family: var(--light_font);
	font-weight:500;
	font-size:21px;
}
.service-content span{
	font-size:14px;
}
#see-all-services{
padding: 8px 26px;
  font-family: var(--bold_font);
  font-size: 20px;
  background: #0066cb;
  text-transform: capitalize;
  border-radius: 100px;
  color: #fff;
  border: 1px solid #0066cb;
	display:block;
	margin:auto;
	margin-top:50px !important;
}
#see-all-services:hover{
	background: none;
    color: #0066cb;
}
.making-waves{
	max-width:1144px;
	font-size:60px;
	font-weight:bold;
	line-height:130%;
	font-family: var(--bold_font);
	margin:auto;
	text-align:center;
	color:#454545;
	margin-bottom:48px;
}
.unboxing{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
/* 	gap:100px; */
	gap:16px;
	max-width:1160px;
	 margin-inline:auto;
	margin-bottom:60px;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	height:400px;
	
}
.unboxing-left-side{
	flex-basis:300px;
	max-width:590px;
	flex-grow:1;
	flex-shrink:1;
}
.unboxing-right-side{
		flex-basis:300px;
	 
	flex-grow:1;
	flex-shrink:1;
}
.unboxing h1{
	font-family: var(--light_font);
	font-weight:40px;
	line-height:122%;
	color:#000;
}
.unboxing p{
	font-family: var(--light_font);
	font-size:22px;
	line-height:150%;
	color:#454545;
}
.unboxing-right-side img{
	display:block;
	max-width:100%;
	border-radius:35px;
	margin:auto;
}
@media only screen and (max-width: 767px) {
 .unboxing{
	 justify-content:center;
}
}
.unboxing-scroll-container{
 
	  /* Vertical scrolling */
    scroll-snap-type: y mandatory; /* Enables vertical snapping */
    overflow-y: scroll;
	height:400px;
}
@media only screen and (min-width: 1024px) {
  	.unboxing-scroll-container{
		height:400px;
		overflow-y:scroll;
	}
	.serv-marqee{
		display:block;
	}
}
.woman-thinking{
	margin-top:-115px;
	z-index:1;
	justify-content:center;
}
.ind-content .postion_number {
    position: absolute;
	top:0px;
    right: 0px;
    width: 30px;
    height: 30px;
    background: #ECF6DD;
    text-align: center;
    border-radius: 0px 0px 0px 10px;
}
.case-studies-btn{
	display:block;
	max-width:fit-content;
	margin:auto;
	margin-top:40px;
}
.sub-sections {
    padding-bottom: 200px;
}
.sub-sections.howWeWork {
    background: transparent;
	height:530px !important;
}
/*.sub-sections-img img {
  border-radius: 50%;
}*/
/*.howWeWorkRow {
  max-height: 80vh;
  overflow-y: hidden;
}*/
/*.howWeWorkImgItem {
    height: 60vh;
    margin-bottom: 40vh;
} */
/*.theader {
  position:absolute;
  top:0;
}*/
.theader {
    position: sticky;
    //top: 0;
    z-index: 999;
    width: 100%;
}

/*.howWeWorkImgWrap {
    height: calc(98vh - 500px);
    margin-bottom: 2vh;
    margin: 150px 0;
    overflow: hidden;
}
.howWeWorkImg {
    height: calc(98vh - 500px);
    width:100%;
    border-radius: 20px;
    overflow: hidden;
}
.howWeWorkImgItem{
    height: calc(98vh - 500px);
    width:100%;
  }
.howWeWorkImg img {
    height: 100%;
    width:100%;
    object-fit: cover;
    border-radius: 20px;
}*/

div#howWeWorkRow {
    position: relative;
    margin-bottom: 200px;
}
/*div#howWeWorkRow progress {
    position: absolute;
    rotate: 90deg;
    left: 0;
    width: 50vh !important;
    top: 0;
}*/
/*div#howWeWorkRow progress {
    position: absolute;
    rotate: 90deg;
    left: -280px;
    width: 50vh !important;
    top: 270px;
}*/
div#howWeWorkRow progress {
    position: absolute;
    rotate: 90deg;
    left: -279px;
    width: 55vh !important;
    top: 190px;
}
#howWeWorkRow .howWeWorkItem .text_box {
    background: #f3fafd;
    height: 100%;
    padding: 20px 0px;
}

#howWeWorkRow .howWeWorkItem h3 {
    font-family: var(--light_font);
    font-weight: 700;
    font-size: 40px;
    color: #000;
    text-transform: capitalize;
    margin: 18px 0 25px !important;
	padding:20px 100px 0px 0px;
}

#howWeWorkRow .howWeWorkItem p {
    font-family: var(--light_font);
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    color: #454545;
}
.howWeWorkItem{
    padding: 50px;
}
#howWeWorkRow .image_box{
	height:450px;
	overflow:hidden;
	border-radius:200px;
}
#howWeWorkRow .image_box img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.sub-sections-img.howWeWorkImg {
    margin-bottom: 50px;
}
.howWeWorkImgItem {
    width: 90%;
    border-radius: 250px;
    overflow: hidden;
    margin-left: 10%;
}
@media (max-width: 767px) {  
  .howWeWorkItem{
      padding: 5px;
  }
  .sub-sections-img.howWeWorkImg {
      margin-bottom: 5px;
  }
.howWeWorkItem img{
    max-width: 100%;
    border-radius: 20px;
}#howWeWorkRow .howWeWorkItem h1 {
    font-size: 22px;
}

#howWeWorkRow .howWeWorkItem p {
    font-size: 17px;
    line-height: 25px;
}
.sub-sections {
    padding-bottom: 50px;
}
div#howWeWorkRow {
    position: relative;
    margin-bottom: 0px;
}
}
@media (max-width: 767px) {
    .ind-content-icon {
        width: 68px;
        height: 68px;
    }
}

/*growing_digital_agency*/
.growing_digital_agency {
  padding: 30px 0px 0px 0px;
  background:#f3fafd;
}
.growing_digital_agency .heading_box h2 {
  text-align: center;
  font-size: 45px;
  text-transform: capitalize;
  margin: 0px 0px 60px 0px;
  padding: 0px 300px;
}
.growing_digital_agency .heading_box h2 span {
  color: #80c31c;
}
.growing_digital_agency .video_wraper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.growing_digital_agency .video_wraper img.yt_thumbnail {
  width: 100%;
  height: 100%;
}
.growing_digital_agency .video_wraper img.postion_icon {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
}
.growing_digital_agency .image_wraper {
  display: flex;
  justify-content: right;
}
.growing_digital_agency .list_ctawraper ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  margin: 0px;
  background: #62626233;
  list-style: none;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  margin-top: -185px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(10px);
}
.growing_digital_agency .list_ctawraper ul li .flex_box {
  display: flex;
  align-items: center;
}
.growing_digital_agency .list_ctawraper ul li:first-child {
  width: 47%;
}
.growing_digital_agency .list_ctawraper ul li .flex_box p {
  font-weight: 500;
  padding: 0px 0px 0px 20px;
  margin: 0px;
}
.growing_digital_agency .list_ctawraper ul li .flex_box p span {
  color: #0066cb;
}
.growing_digital_agency .list_ctawraper ul li a {
  text-decoration: none;
  background: #fff;
  border-radius: 100px;
  padding: 10px 20px;
}
/*end*/
/* Hide all images initially */

/* Show the image of the active section */
.sub-sections.active .howWeWorkImgItem img {
    display: block;
}
section.partners.services_partners {
    background: #e9f4ff !important;
	padding: 20px 0 10px;
}
section.partners.services_partners .container-partner::before{
	display:none !important;
}
section.partners.services_partners .container-partner::after{
	display:none !important;
}

section.wrapper.step-wrapper.services.industrie.image_slider {
    background: #e9f4ff;
}
/*end*/
section.making_waves_slider.service_msection {
    background: #e9f4ff;
}

section.success.services_successsection.about.mobile_showsection .digital-success{
   color: #414141 !important;
}
span.m_showicon {
    display: none;
}
span.m_showicon:hover{
	transition:0.3s;
	transform:rotate(180deg);
}

section.wrapper.step-wrapper.services.industrie.image_slider .card{
	border-radius:15px;
}
section.brand-iden-sec.gapaing_box {
    margin-top: 20px;
}


/*bolg_innerpage*/
.bolg_innerpage {
  padding: 120px 0px 60px 0px;
  background: #f3fafd;
}
.bolg_innerpage .search_wraper {
  display: flex;
  justify-content: right;
  margin: 0px 0px 60px 0px;
}
.bolg_innerpage p {
  color: #626262;
    font-weight: 500 !important;
    font-size: 16px;
    font-family: var(--light_font);
}
.bolg_innerpage .search_wraper .search_box {
  width: 440px;
  height: 45px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #0000001a;
  box-shadow: 0px 4px 9.1px 0px #00000029;
  overflow: hidden;
}
.bolg_innerpage .search_wraper .search_box input {
  width: 90%;
  height: 40px;
  border: none;
  outline: none;
  padding: 20px;
}
.bolg_innerpage .search_wraper .search_box i {
  cursor: pointer;
}
.bolg_innerpage .social_boxwraper span.date {
  color: #626262;
  font-weight: 600;
}
.bolg_innerpage .social_boxwraper h6 {
  color: #626262;
  font-weight: 400;
  padding: 10px 0px 0px 0px;
}
.bolg_innerpage .social_boxwraper h6 span {
  color: #0066cb;
}
.bolg_innerpage .social_boxwraper h1 {
    color: #252422;
    font-weight: 700;
    padding: 2px 0 20px 0;
    font-size: 35px !important;
    font-family: var(--bold_font) !important;
}
.bolg_innerpage .social_boxwraper .flex_box {
  display: flex;
  align-items: center;
}
.bolg_innerpage .social_boxwraper .flex_box .text_box {
  margin: 0px 0px 0px 15px;
}
.bolg_innerpage .social_boxwraper .flex_box .text_box h5 {
  margin: 0px;
  color: #0066cb;
  font-weight: 600;
}
.bolg_innerpage .social_boxwraper .flex_box .text_box p {
  margin: 0px;
  color: #626262;
}
.attachment-author-img{
	width:60px !important;
	height:60px !important;
	border-radius: 100px !important;
}
.bolg_innerpage .social_box {
  margin: 20px 0px 0px 0px;
}
.bolg_innerpage .social_box span {
  font-weight: 600;
}
.bolg_innerpage .social_box .flex_iconbox {
  display: flex;
  margin: 18px 0px 0px 0px;
}
.bolg_innerpage .social_box .icon {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #0066cb1a;
  color: #0066cb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 20px 0px 0px;
}
.bolg_innerpage .right_imagewraper {
  height: 370px;
  overflow: hidden;
  border-radius: 10px;
}
.bolg_innerpage .right_imagewraper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bolg_innerpage .table_of_contents {
  border: 1px solid #0000001a;
  background: #e3ebee;
  border-radius: 10px;
  padding: 20px;
}
.bolg_innerpage .table_of_contents h3 {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  padding: 0px 0px 10px 13px;
}
.bolg_innerpage .table_of_contents ul li {
  margin: 0px 0px 5px 0px;
}
.bolg_innerpage .table_of_contents ul li::marker {
  color: #0066cb;
}
.bolg_innerpage .table_of_contents ul li a i {
  color: #000;
  font-size: 12px;
  padding: 0px 0px 0px 7px;
}
.bolg_innerpage .quotation_box {
  background: #fff;
  border: 1px solid #0000001a;
  border-radius: 10px;
  padding: 20px 45px;
  margin: 40px 0px 30px 0px;
  position: relative;
}
.bolg_innerpage .quotation_box::after {
  content: "";
  position: absolute;
  top: 8%;
  left: 20px;
  width: 8px;
  height: 84%;
  border-radius: 100px;
  background: #0066cb;
}
.bolg_innerpage .quotation_box .right_imagebox {
  display: flex;
  justify-content: right;
}
.bolg_innerpage .quotation_box p {
  padding: 20px 0px 0px 0px;
}
.bolg_innerpage .left_contentwraper {
  margin: 60px 0px 0px 0px;
}
.bolg_innerpage .left_contentwraper h3{
	font-family: var(--bold_font) !important;
	font-size:30px !important;
}
.bolg_innerpage .left_contentwraper h2 {
  font-size: 23px;
  font-weight: 700;
  color: #252422;
}
.bolg_innerpage .full_image_box img {
  width: 100%;
  object-fit: cover;
  margin: 15px 0px 30px 0px;
}
.bolg_innerpage .profile_box {
  background: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  margin: 10px 0px 30px 0px;
}
.bolg_innerpage .profile_box .flex_box {
  display: flex;
  align-items: center;
}
.bolg_innerpage .profile_box .flex_box .text_box {
  margin: 0px 0px 0px 20px;
}
.bolg_innerpage .profile_box .flex_box .text_box h5 {
  margin: 0px;
  color: #0066cb;
  font-weight: 700;
}
.bolg_innerpage .profile_box .flex_box .text_box span {
  color: #626262;
}
.bolg_innerpage .profile_box h3 {
  font-size: 23px;
  padding: 20px 0px 0px 0px;
  color: #252422;
  font-weight: 700;
}
.bolg_innerpage .profile_box a {
  text-decoration: none;
  font-weight: 600;
  color: #0066cb;
}
.bolg_innerpage .flex_profilebox {
  display: flex;
  padding: 30px 0px;
  border-top: 1px solid #00000033;
  border-bottom: 1px solid #00000033;
  margin: 20px 0px;
}
.bolg_innerpage .flex_profilebox .text_box {
  margin: 0px 0px 0px 20px;
}
.bolg_innerpage .flex_profilebox .text_box h4 {
  color: #0066cb;
  font-weight: 700;
  font-size: 20px;
}
.bolg_innerpage .categories_list ul {
  display: flex;
  align-items: center;	
  list-style: none;
  padding: 0px;
  margin: 50px 0px 0px 0px;
}
.bolg_innerpage .categories_list ul li h6 {
  font-weight: 600;
  margin: 0px 15px 0px 0px;
}
.bolg_innerpage .categories_list ul li a {
  padding: 8px 20px;
  margin: 0px 10px 0px 0px;
  background: #0066cb1f;
  border-radius: 100px;
  text-decoration: none;
  color: #0066cb;
  font-weight: 600;
}
.bolg_innerpage .right_box {
  margin: 60px 0px 0px 0px;
}
.bolg_innerpage .right_box .form_wraper {
  background: #0066cb;
  border-radius: 10px;
  padding: 20px;
}
.bolg_innerpage .right_box .form_wraper h3 {
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.bolg_innerpage .right_box .form_wraper form {
  margin: 25px 0px 0px 0px;
}
.bolg_innerpage .right_box .form_wraper form input {
  width: 100%;
  height: 45px;
  border-radius: 100px;
  border: 1px solid #fff;
  background: transparent;
  padding: 0px 10px;
  color: #fff;
  outline: none;
}
.bolg_innerpage .right_box .form_wraper form button {
  width: 100%;
  background: #fff;
  border: 1px solid #fff;
  height: 45px;
  border-radius: 100px;
  color: #0066cbcc;
  font-weight: 600;
  margin: 30px 0px 0px 0px;
}
.bolg_innerpage .right_box .form_wraper form input::placeholder {
  color: #fff;
}
.bolg_innerpage .right_box .popular_blogs.about_wraper{
	 background: #0066cb;
}
.bolg_innerpage .right_box .popular_blogs.about_wraper h2{
	color:#fff;
}
.bolg_innerpage .right_box .popular_blogs.about_wraper ul li i {
    font-size: 24px;
    margin: 8px 10px 0 0;
    color: #fff;
    padding: 10px;
    height: 44px;
}
.bolg_innerpage .right_box .popular_blogs.about_wraper ul li img{
	margin:0px 14px 0px 0px;
}
.bolg_innerpage .right_box .popular_blogs {
  background: #fff;
  border: 1px solid #0000001a;
  padding: 20px;
  border-radius: 10px;
  margin: 35px 0px 0px 0px;
}
.bolg_innerpage .right_box .popular_blogs.about_wraper h5 {
  font-size: 20px;
  font-weight: 700;
}
.bolg_innerpage .right_box .popular_blogs.about_wraper ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.bolg_innerpage .right_box .popular_blogs.about_wraper ul li {
  display: flex;
}
.bolg_innerpage .right_box .popular_blogs.our_client ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    width: 106%;
}
.bolg_innerpage .right_box .popular_blogs.our_client ul li img {
    width: 90%;
    height: 70px;
    margin: 0 10px 10px 0;
    padding: 4px;
    border-radius: 6px;
}
.bolg_innerpage .right_box .popular_blogs h2 {
  font-size: 20px !important;
  font-family: var(--bold_font) !important;
  font-weight: 700;
  margin: 0px 0px 20px 0px;
}
.bolg_innerpage .right_box .popular_blogs ul {
  list-style: square;
  padding: 0px 0px 0px 29px;
}
.bolg_innerpage .right_box .popular_blogs ul li{
	margin:0px !important;
}
.bolg_innerpage .right_box .popular_blogs ul li p{
	color:#fff;
}
.bolg_innerpage .right_box .popular_blogs ul li::marker {
  color: #0066cb;
  font-size: 30px;
}
.bolg_innerpage .right_box .popular_blogs ul li a {
    display: revert!important;
    color: #626262;
    font-size: 15px;
    position: relative;
    top: -4px;
}
.bolg_innerpage .right_box .popular_blogs.bg_blue {
  background: #0066cb;
}
.bolg_innerpage .right_box .popular_blogs.bg_blue h2 {
  color: #fff;
}
.bolg_innerpage .right_box .popular_blogs.bg_blue ul li a {
  color: #fff;
}
.bolg_innerpage .right_box .popular_blogs.bg_blue ul li::marker {
  color: #fff;
}
.bolg_innerpage .right_box .popular_blogs.our_client h2{
	margin:0px 0px 0px 0px !important;
}
.bolg_innerpage .right_box .iframe_box {
  background: #fff;
  border: 1px solid #0000001a;
  padding: 20px;
  border-radius: 10px;
  margin: 35px 0px 0px 0px;
}
.bolg_innerpage .add_imagesbox {
  margin: 20px 0px;
}
.bolg_innerpage .add_imagesbox img {
  width: 100%;
}
.bolg_innerpage .end_offseo_box {
  background: linear-gradient(
    rgb(51, 0, 117) 0%,
    rgb(92, 24, 184) 50%,
    rgb(104, 38, 196) 100%
  );
  border-radius: 10px;
  padding: 30px;
  margin: 20px 0px;
  display: flex;
  align-items: center;
}
.bolg_innerpage .end_offseo_box .text_box {
  width: 100%;
}
.bolg_innerpage .end_offseo_box .text_box h3 {
  color: #fff;
}
.bolg_innerpage .end_offseo_box .text_box p {
  color: #fff;
}
.bolg_innerpage .end_offseo_box .text_box a {
  padding: 8px 20px;
  background: #ffffff;
  color: #330075;
  text-decoration: none;
  border-radius: 100px;
  display: inline-block;
  margin: 20px 0px 0px 0px;
}
.bolg_innerpage .end_offseo_box .text_box a:hover {
  background: #80c31c;
	color: #fff;
}
.bolg_innerpage .end_offseo_box .logo_box img {
  width: 150px;
}
.bolg_innerpage .more_description_box {
  background: #fff;
  border: 1px solid #0000001a;
  padding: 25px 30px;
  border-radius: 10px;
  margin: 35px 0px 40px 0px;
  border-left: 7px solid #0066cb;
}
.bolg_innerpage .more_description_box .recktangle_imagebox {
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  width: 30%;
  margin: 0px 0px 20px 0px;
}
.bolg_innerpage .more_description_box .recktangle_imagebox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bolg_innerpage .more_description_box a {
  padding: 10px 20px;
  background: #0066cb;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  margin: 10px 0px 0px 0px;
}
.bolg_innerpage .left_formwraper {
  background: #fff;
  border: 1px solid #0000001a;
  padding: 25px 30px;
  border-radius: 10px;
  margin: 35px 0px 40px 0px;
  border-bottom: 3px solid #5ec92a;
}
.bolg_innerpage .left_formwraper h2 {
  margin: 0px 0px 20px 0px;
}
.bolg_innerpage .left_formwraper h2 span {
  color: #5ec92a;
}
.bolg_innerpage .left_formwraper form label {
  width: 100%;
  font-size: 11px;
  color: #000;
  font-weight: 600;
}
.bolg_innerpage .left_formwraper form label span {
  color: red;
}
.bolg_innerpage .left_formwraper form input {
  width: 100%;
  height: 40px;
  border: 1px solid #0000002e;
  border-radius: 5px;
  padding: 0px 10px;
  outline: none;
  margin: 3px 0px 10px 0px;
}
.bolg_innerpage .left_formwraper form select {
  width: 100%;
  height: 40px;
  border: 1px solid #0000002e;
  border-radius: 5px;
  padding: 0px 10px;
  outline: none;
  margin: 3px 0px 10px 0px;
}
.bolg_innerpage .left_formwraper form button {
  width: 100%;
  height: 45px;
  border-radius: 6px;
  background: #0066cb;
  border: none;
  color: #fff;
  margin: 10px 0px 0px 0px;
}
.bolg_innerpage .left_formwraper p {
  font-size: 14px;
  color: #000;
  padding: 10px 0px 0px 0px;
}
/*end*/
.modal-case-stuides-section {
  padding: 50px 100px 100px;
}
.main-title{
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
}

.artherflex_box .image_wraper img{
    width:100%!important;
    height:100%!important;
}
