@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  color: #000000;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px !important;
}

.container-fluid {
  padding: 0;
}

/* .nav-scroll-border {
  border-bottom: 1px solid #dadcde !important;
} */

.row {
  --bs-gutter-x: 1.5rem;
  margin: 0;
}

a {
  text-decoration: none;
  color: #ffffff;
}

.sub-header-logo a {
  text-decoration: none;
  color: #000000;
  font-size: 36px;
  font-weight: 400;
}

a:hover {
  color: #000;
}

a.button-blue {
  width: 200px !important;
  height: 48px !important;
  background: linear-gradient(180deg, #0183cb 0%, rgba(0, 164, 255, 0.7) 100%);
  border-radius: 5px;
  /* border: 2px solid linear-gradient(180deg, #0183CB 0%, rgba(0, 164, 255, 0.7) 100%)!important; */
  border-width: 2px !important;
  color: #fff;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  padding: 0 !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
}
.btn_white_footer {
  width: 180px !important;
  height: 42px !important;
  color: #0183cb !important;
  background: #ffffff !important;
  border: 2px solid #ffffff;
  margin-bottom: 10px;
}
a.button-blue.btn_white_footer:hover {
  color: #ffffff !important;
  background: transparent !important;
  border: 2px solid #ffffff !important;
}
/* .button-blue.transparent:hover {
  background: transparent !important;
} */

/* .sub-header-login a:hover {
  background: transparent !important;
} */

a.button-blue:hover {
  text-shadow: none;
  background: transparent;
  color: rgba(0, 164, 255, 0.7);
  border: 2px solid rgba(0, 164, 255, 0.7) !important;
  border-radius: 5px;
}

a.button-white {
  width: 200px;
  height: 48px;
  border: 2px solid rgba(0, 164, 255, 0.7);
  background-color: transparent;
  border-radius: 5px;
  /* border: 2px solid #1760F1; */
  color: rgba(0, 164, 255, 0.7);
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  padding: 0 !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
}

a.button-white:hover {
  text-shadow: none;
  background: linear-gradient(180deg, #0183cb 0%, rgba(0, 164, 255, 0.7) 100%);
  color: #fff;
  transition: 0.2s;
  border: none;
  border-radius: 5px;
}
.btn-transparent:hover {
  background: #ffffff !important;
  color: #036ee1 !important;
}
a.login-btn {
  width: 90px !important;
  height: 48px !important;
  margin: 5px 10px 0 0 !important;
}

.m-top {
  margin-top: 80px;
}

/* Header*********************************************** */
.genic-logo {
  width: 150px;
}
.sub-header-logo {
  display: flex;
  align-items: center;
}
.logo_menu {
  position: relative;
  padding-left: 15px;
  margin-left: 15px;
  font-size: 25px;
}
.logo_menu p {
  margin: 0px;
  font-size: 25px;
  pointer-events: none;
  color: #0183cb;
  font-weight: 600;
}
.logo_menu:before {
  position: absolute;
  content: "";
  border-right: 1px solid darkgrey;
  height: 40px;
  left: 0px;
  bottom: -10px;
}
#header {
  background: white;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  border-bottom: 1px solid #dadcde;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0 0 0 23px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#header .logo a {
  color: #000;
}

#header .logo img {
  max-height: 40px;
}

.header-right {
  display: flex;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
}

.sign-in a {
  font-size: 12px;
  color: #ff6b00;
  text-transform: uppercase;
  font-weight: bold;
}

.sign-in a:hover {
  text-shadow: none !important;
  text-decoration: underline;
}

.language {
  display: inline-block;
  font-weight: bold;
}

form.searchBar input[type="text"] {
  padding: 5px;
  font-size: 12px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  background: #f1f1f1;
}

form.searchBar input:focus {
  outline: none;
}

form.searchBar button {
  float: left;
  width: 20%;
  padding: 5px;
  background: #ff6b00;
  color: white;
  font-size: 12px;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;
}

form.searchBar button:hover {
  background: #ff6b00;
}

form.searchBar::after {
  content: "";
  clear: both;
  display: table;
}

.search {
  display: flex;
  padding-right: 20px;
}

.language-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 100px;
  padding: 12px 0 0 20px;
}

.language:hover .language-content {
  display: block;
}

.language span {
  padding-left: 5px;
}

/* Nav Bar */

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  display: inline-block;
  font-size: 0;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 0 10px 30px; */
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.3s;
  color: #000;
}

.navbar a i,
.navbar a:focus i {
  font-size: 14px;
  line-height: 0;
  margin-left: 5px;
}

.navbar.fix a::after {
  content: attr(data-text);
  content: attr(data-text) / "";
  height: 0;
  visibility: hidden;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
  font-weight: var(--bold);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  font-weight: bold;
  color: rgb(0, 0, 0);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: rgb(0, 0, 0);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 14px;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 35px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #ffffff;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 87px;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
  z-index: 99999;
}
.sub-menu ul li a {
  color: #000 !important;
}
.navbar li:last-child {
  display: none;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    padding-right: 10px;
  }

  .navbar li:last-child {
    display: block;
  }

  .navbar ul {
    display: none;
    left: 0px !important;
    right: 0px !important;
  }

  .navbar ul li {
    display: block;
    border-bottom: 1px solid #ffffff;
  }

  .sub-header-link ul li a {
    /* padding: 14px 0; */
    /* border-bottom: 3px solid #0183CB; */
    display: inline;
  }

  .sub-header-login {
    display: none;
  }

  .navbar {
    justify-content: flex-end;
  }

  .sub-header-link {
    width: 100%;
  }
  .flex_direction {
    flex-direction: column-reverse;
  }
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 8px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 1px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  background-color: #0257b2;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile ul li a {
  color: #ffffff;
  text-align: left;
}

.navbar-mobile li.navbar-mobile-login {
  background-color: #fff;
}

.navbar-mobile li.navbar-mobile-login a {
  color: #ff6b00;
  font-weight: 600;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #ffffff !important;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  /* margin: 10px 20px; */
  padding: 0 !important;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 15px 20px;
  color: #ff6b00;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  /* font-weight: 500; */
  color: #ff6b00 !important;
  text-shadow: none;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.breadcrumb  .breadcrumb-item a:hover{
    color: #0183CB;
}
/* SubHeader ********************************************************** */
#sub-header {
  width: 100%;
  display: flex;
  padding: 13px 0 15px 0;
  margin: 0;
  clear: both;
  justify-content: space-between;
  align-items: center;
  /* overflow: hidden; */
}
.navigation {
  background: #ffffff;
  transition: background-color 0.2s, padding 0.5s;
  border-bottom: 1px solid #dadcde;
  /* position: fixed;
  width: 100%;
  top: 0;
  z-index: 5; */
}

.navigation.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99999;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  animation: 1s mations;
}
@keyframes mations {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@-moz-keyframes mations {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@-webkit-keyframes mations {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@-o-keyframes mations {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.sub-header-link li a {
  color: #000;
  display: block;
  text-align: center;
  margin: 0px 18px;
  /* padding: 22px 18px; */
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

.sub-header-link li a:hover {
  color: #0183CB;
  text-shadow: none;
}

.navbar li:last-child {
  display: block;
}

.sub-header-link .active a,.sub-header-link .current-menu-item a,.sub-header-link .current-page-ancestor a {
  color: #0183CB;
  text-shadow: none !important;
  border-bottom: 2px solid #0183CB;
  /* padding: 0px;
  padding-bottom: 2px; */
}

.sub-header-login ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Home Page Banner********************************************** */
.banner-section {
  width: 100%;
  background-image: url(../../assets/img/banner-background.png);
  background-size: cover;
  background-position: center;
  /* background: #f2f9fc; */
}
.banner-section .banner-sideshape {
  position: absolute;
  left: -38px;
  top: -14px;
}
.banner-section .banner-sideshape2 {
  position: absolute;
  left: -2px;
  bottom: -20px;
  z-index: 0;
}
.banner-section .banner-sideshape2 {
  position: absolute;
  left: -2px;
  bottom: -20px;
  z-index: 0;
}
.banner-title h1 {
  color: #fff;
}
.banner-title.para-title p {
  color: #fff;
}
.para-title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  margin-bottom: 30px;
}
.section-desc p {
  color: #fff;
}
/* benefits-list css */
.benefits-list {
  background: #ffffff;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.25);
  height: 100%;
  padding: 30px 20px;
  transition: 0.4s;
}
.benefits-list img {
  height: 60px;
  margin-bottom: 15px;
}
.benefits-list:hover {
  transform: translate(0, -15px);
}
/* Robotic-process-automation-consulting.svg */
.service-content {
  position: relative;
  box-shadow: rgb(191, 214, 241) 0px 4px 0px 0px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(209, 225, 255);
  border-image: initial;
  background: rgb(255, 255, 255);
  border-radius: 12px;
  transition: 0.4s;
  padding: 20px 25px;
  overflow: hidden;
  height:100%
}
.service-content:hover {
  box-shadow: rgb(1, 131, 203) 0px 4px 0px 0px;
  transform: translate(0, -15px);
}
.service-content h5 {
  margin-bottom: 0px;
  margin: 10px 0px;
}
.service-content img {
  margin-right: 8px;
/*   width: 70px; */
}
/* Clients logo animation css */
.repetitive-manual-tasks {
  max-width: 70%;
  margin: auto;
  background-color: #f3f3f3;
  padding: 40px 30px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
.automate-section {
  padding: 30px;
  background: linear-gradient(180deg, #0183cb 0%, rgba(0, 164, 255, 0.7) 100%);
}
.automate-section h2 {
  color: #fff;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .what-imag {
    margin-top: -60px;
  }
  .clients_logo_section .row > .col-lg-2:nth-child(2n + 2) {
    position: relative;
    top: -50px;
  }
  .clients_logo_section .client__logo {
    margin-top: 80px;
  }
  .clients_logo_section .row > .col-lg-2 {
    animation: 10s floatingrev linear infinite;
    list-style: none;
  }

  .clients_logo_section .row > .col-lg-2:nth-child(2n + 2) {
    animation: 10s floating01 linear infinite;
  }
  /* .middle-animated .integration-list li>div:last-child {
    transition-delay: .3s;
} */
  @keyframes floating01 {
    0% {
      transform: translateY(-30px);
    }

    50% {
      transform: translateY(0);
    }

    100% {
      transform: translateY(-30px);
    }
  }

  @keyframes floatingrev {
    0% {
      transform: translateY(30px);
    }

    50% {
      transform: translateY(0);
    }

    100% {
      transform: translateY(30px);
    }
  }
}
.our_clients img {
  /* width: 125px; */
  height: 60px;
  object-fit: contain;
  aspect-ratio: auto 170 / 91;
}
.our_clients {
  padding: 13px;
  margin-top: 20px;
  border: 1px solid#d1d1d1 !important;
  border-radius: 15px;
}
/* footer css start */
.bg-genic-title-footer {
  width: 100%;
  background-image: url(../../assets/img/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
}
.footer-logo {
  width: 150px;
}
.client-response h5 {
  color: #ffffff;
  margin-top: 20px;
}
.genic-footer {
  width: 100%;
  background: #0183cb;
  color: #ffffff;
}
.home-part h5 {
  color: #ffffff;
}
.home-part ul {
  padding-left: 20px;
  color: #ffffff;
}
.home-part ul li {
  padding: 5px 0px;
}
ul#menu-solutions_one,
ul#menu-solutions_two {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 5px;
}
.icon-border {
  border: 1px solid #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.addressicon {
  display: flex;
  align-items: baseline;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.faq-section .accordion-header button {
  color: #0183cb;
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.faq-section .accordion-item:not(:first-of-type) {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.faq-section .accordion-item {
  margin-bottom: 15px;
  border-radius: 25px;
  overflow: hidden;
}
/* About us css start */
.about-section .about_wrapper {
  position: relative;
}

.about-section .about_wrapper .about-image2 {
  position: absolute;
  right: -22px;
  top: 245px;
}
.about-section .about_content .about-lowercontent .image {
  float: left;
  padding-top: 8px;
}
.about-section .about_content h2 {
  margin-bottom: 15px;
}
.about-section .about_content .about-lowercontent .content {
  padding-left: 83px;
}
/* service page css start */
.sub-banner.banner-section {
  padding: 100px 0px;
  overflow: hidden;
}
.banner-section .banner_wrapper .sub-bannerimage {
  position: absolute;
  bottom: -360px;
  right: -396px;
}
.sysnet-group-campanies ul{
    text-align: center;
    margin: 0px;
    padding: 0px;
}
.sysnet-group-campanies ul li {
    list-style: none;
    display: inline-block;
    border: 1px solid #dee2e6!important;
    margin: 8px;
    padding: 10px;
}
.sysnet-group-campanies ul li img{
    max-width: 150px;
}
@media screen and (min-width: 680px) and (max-width: 767px) {
  .banner-section .banner_wrapper .sub-bannerimage {
    position: relative;
    bottom: -30px;
    right: -150px;
  }
}
@media only screen and (max-width: 991px) {
  .banner-section .banner_wrapper .sub-bannerimage {
    position: relative !important;
    bottom: 0px !important;
    left: auto;
    top: 55px;
  }
  .sub-banner.banner-section {
    padding: 50px 0px;
    overflow: hidden;
  }
}

@media only screen and (max-width: 1199px) {
  .banner-section .banner_wrapper .sub-bannerimage {
    bottom: -292px;
    right: -86px;
  }
}
@media screen and (max-width: 1440px) {
  .banner-section .banner_wrapper .sub-bannerimage {
    bottom: -365px;
    right: -130px;
  }
}
.provide-section {
  background-color: #eafcfe;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 50px 0px;
}
.provide-section .team-sideimage {
  position: absolute;
  left: -110px;
  top: 148px;
}
.service_contentbox .col-lg-6.col-md-6.col-sm-12.col-12 {
    margin-bottom: 27px;
}
.provide-section .service_contentbox .service-box {
  background: #fff;
  border-radius: 30px;
  padding: 40px 35px;
  /*margin-bottom: 27px;*/
  display: inline-block;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid #0183cb;
	height: 100%;
}
.provide-section .service_contentbox .service-box .box-image {
  float: left;
  width: 26%;
}
.provide-section .service_contentbox .service-box figure {
  background: #eafcfe;
  border-radius: 100px;
  height: 120px;
  width: 120px;
  line-height: 120px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.provide-section .service_contentbox .service-box .box-content {
  position: relative;
  padding-left: 16px;
  display: inline-block;
  width: 74%;
}
.provide-section .service_contentbox .service-box h4 {
  display: inline-block;
  margin-bottom: 6px;
}
.provide-section .service_contentbox .service-box .read_more {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #0183cb;
  text-transform: uppercase;
}

.banner-detail {
  width: 100%;
  background-image: url(../../assets/img/sub-banner-img.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 0px;
}
.service_detail_content img {
  border-radius: 30px;
  margin-bottom: 30px;
}
.service_detail_content ul li {
  margin-bottom: 13px;
}
.service_detail_content ul li i {
  color: #0183cb;
  margin-right: 8px;
}
/* service page css start */
/* choose-section css start  */
.choose-section {
  background: url(../../assets/img/choose-background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /* padding: 50px 0 0px; */
}
.choose-section .choose-sideshape {
  position: absolute;
  right: 0;
  top: 0;
}
.choose-section .choose-sideshape2 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.choose-section .choose_content ul li .circle {
  background-image: linear-gradient(
    to right,
    #082e45 0%,
    #17677e 51%,
    #0183cb 100%
  );
  border-radius: 100px;
  height: 25px;
  width: 25px;
  line-height: 25px;
  text-align: center;
  margin-right: 12px;
  margin-left: 0;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
}
.choose-section .choose_content .text {
  font-weight: 500;
  margin-bottom: 13px;
}
/* .choose-section .choose_wrapper .choose-image {
  position: absolute;
  top: -222px;
  left: -230px;
} */
/* Our robotic process automation services */
.service-section {
  background-color: #f1faff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* padding: 120px 0; */
}
.service-section .service-image {
  position: absolute;
  left: -106px;
  top: 0px;
}
.service-section .service_contentbox .service-box {
  background: #fff;
  border-radius: 30px;
  padding: 35px 15px;
  text-align: center;
  margin-bottom: 10px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  border-bottom: 2px solid #0183cb;
}
.service-section .service_contentbox .service-box:hover {
  background-image: linear-gradient(
    to right,
    #045684 0%,
    #17677e 51%,
    #0183cb 100%
  );
  border-bottom: 2px solid #0183cb;
  transform: translateY(-5px);
}
.service-section .service_contentbox .service-box:hover h4 {
  color: #fff;
}
.service-section .service_contentbox .service-box:hover p {
  color: #fff;
}
.service-section .service_contentbox .service-box:hover a.read_more {
  color: #fff;
}
.service-section .service_contentbox .service-box figure {
  background: #eafcfe;
  border-radius: 100px;
  height: 120px;
  width: 120px;
  line-height: 120px;
  text-align: center;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.service-section .service_contentbox .service-box .read_more {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #0183cb;
  text-transform: uppercase;
}
.service-section .service_contentbox .box-top {
  padding-top: 30px;
}
.provide-section .service_contentbox .service-box:hover {
  background-image: linear-gradient(
    to right,
    #045684 0%,
    #17677e 51%,
    #0183cb 100%
  );
  border-bottom: 2px solid #0183cb;
  transform: translateY(-5px);
}
.provide-section .service_contentbox .service-box:hover h4 {
  color: #fff;
}
.provide-section .service_contentbox .service-box:hover p {
  color: #fff;
}
.provide-section .service_contentbox .service-box:hover a {
  color: #fff;
}
/* Our robotic process automation services */
.timeline-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  /* margin-bottom: 3rem; */
}

.timeline-step {
  flex: 1 1 100%;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
.timeline-step h5 {
  text-align: start;
  font-size: 17px;
}
.timeline-step .circle {
  width: 40px;
  height: 40px;
  border: 3px solid #0183cb;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background: white;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.timeline-step .circle::before,
.timeline-step .circle::after {
  content: "";
  width: 15px;
  height: 15px;
  background: red;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

/* .timeline-step:first-child .circle::before {
      left: -25px;
    }

    .timeline-step:last-child .circle::after {
      right: -25px;
    } */

.timeline-line {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 3px;
  background: #0183cb;
  z-index: 1;
}
.timeline-step ul li {
  padding-bottom: 8px;
}
.development-process ol {
    padding-left: 1rem;
	font-size: 17px;
}
.development-process ol li {
    text-align: left;
}
/* Responsive for desktop view */
@media screen and (max-width: 1399.98px) and (min-width: 1200px) {
   .timeline-step h5 {
    font-size: 16px;
}
.timeline-step ul {
        max-width: 155px !important;
    }
}
@media screen and (max-width: 1199.98px) {
.provide-section .service_contentbox .service-box .box-image
 {
    float: none;
    width: 100%;
}
}

@media screen and (max-width: 1199.98px) and (min-width: 992px) {
    .timeline-step ul {
        max-width: 125px !important;
    }
}

@media (min-width: 992px) {
  .timeline-container {
    flex-wrap: nowrap;
  }

  .timeline-step {
    flex: 1;
    margin-bottom: 0;
  }

  .timeline-step ul {
    text-align: left !important;
    max-width: 200px;
    margin: 0 auto;
    padding: 0px;
  }
}

/* Responsive for mobile view */
@media (max-width: 991.98px) {
  /* .timeline-line {
        display: none;
      } */
.development-process ol {
    padding-left: 3rem;
}
.development-process .mt-3 {
    margin-top: 0rem !important;
}
  .timeline-line {
    width: 3px;
    height: 100%;
  }
  .timeline-line {
    left: 20px;
  }
  .timeline-step h5 {
    margin-left: 30px;
    margin-top: 0px !important;
  }
  .timeline-step ul {
    margin-left: 30px;
  }
  .timeline-step .circle::before,
  .timeline-step .circle::after {
    display: none;
  }

  .timeline-step {
    text-align: initial;
  }
  .timeline-step .circle {
	margin-bottom: 30px;
}
	.timeline-step {
    margin-bottom: 0rem;
}
}
/*Floating Whatsapp css start */
.whatsapp-btn {
  position: relative;
}
.whbtnin {
  position: fixed;
  right: 25px;
  bottom: 80px;
  z-index: 999999;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  border: 2px solid #3dce75;
}
.call-btn-underlay {
  position: absolute !important;
  z-index: -1 !important;
  top: 50% !important;
  left: 50% !important;
  -ms-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
  margin: auto !important;
  animation: cp-widget-button-underlay 1.5s infinite;
  border-radius: 100% !important;
}

.whbtnin img {
  height: 50px;
}

@keyframes cp-widget-button-underlay {
  0% {
    opacity: 0.25;
    width: 0;
    height: 0;
  }
  40% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
    width: 150px;
    height: 150px;
  }
}
/*Floating Whatsapp css end */

/* Media Query start */
@media (max-width: 1200px) and (min-width: 991px) {
  .sub-header-link li a {
    margin: 0px 10px;
  }
  .repetitive-manual-tasks {
    max-width: 85%;
  }
}

@media (max-width: 992px) {
  .tabset > label {
    width: 32%;
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .repetitive-manual-tasks {
    max-width: 100%;
  }
  .navbar ul li {
    display: flex;
    border-bottom: 1px solid #ffffff;
    padding: 8px 2px;
  }
  .sub-header-link .active a {
    border-bottom: none;
  }

  .banner-title p {
    text-align: center;
  }
  .overview-title h2 {
    color: #0183cb;
    font-size: 30px;
  }
  .we-are-ready h2 {
    color: #ffffff;
    font-size: 30px;
  }
  h2 {
    font-size: 30px !important;
  }
}
@media (max-width: 767px) {
  .banner-section {
    /* padding: 50px 0px; */
    background-repeat: no-repeat;
    background-position: right;
  }
  .project-icon img {
    margin-left: 160px;
  }
  .bg-genic-title-footer {
    height: auto;
    background-position: center;
    position: relative;
    top: 2px;
  }
  .banner-title h1 {
    color: #0183cb;
    font-size: 35px;
    text-align: center;
  }
  .banner-title.para-title .d-flex {
    justify-content: center;
  }
  .tab-penetration {
    flex-wrap: wrap;
  }
  .tab-penetration .tab-list {
    width: 100%;
  }
  .tab-penetration .tab-content2 {
    max-width: 100%;
    min-width: 100%;
  }
  .tab-penetration .tab-list {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  .about-section .about_wrapper .about-image2 {
    top: auto;
    bottom: -50px;
  }
  .about-section .about_wrapper .about-image2 img {
    width: 200px;
  }
}
@media (max-width: 576px) {
  .banner-section .banner-title.para-title h1,
  .banner-section .banner-title.para-title p {
    color: #fff;
  }
  .custom-width > label {
    width: 20%;
    font-size: 12px;
  }
  .service-section .service_contentbox .box-top {
    padding-top: 0px;
  }
  .whbtnin{
    bottom: 50px;
  }
}

.mobile-what {
  display: none;
}
@media (max-width: 768px) {
  .desk-what {
    display: none;
  }
  .mobile-what {
    display: block;
  }
  .para-title.tabs-title h3 {
    text-align: center;
  }
  .para-title.tabs-title p {
    text-align: center;
  }
}

/* Pagination style */
.wp-pagenavi {
    padding-bottom: 30px;
	  padding-top: 30px;
}
.wp-pagenavi span.pages {
    display: none;
}
.wp-pagenavi .current,
.wp-pagenavi .last, 
.wp-pagenavi a.page,
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink{
    position: relative;
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #0183CB;
    background-color: #fff;
    border: 1px solid #dee2e6;
    font-weight: 700;
}
.wp-pagenavi .current {
    color: #aba8a8;
}
.wp-pagenavi a.previouspostslink:after {
    content: "Prev";
	padding-left:5px;
}
.wp-pagenavi a.nextpostslink:before{
    content: "Next";
	padding-right:5px;
}
.wp-pagenavi .last{
	display:none;
}
.wp-pagenavi .extend:last-of-type {
	display:none;
}
.blog-pagination{
	text-align:center !important;
	padding: 0px;
}
.blog-pagination .wp-pagenavi span.current {
    border-color: #0183CB;
	border-radius: 5px;
    margin-left: 4px;
	 margin-right: 4px;
}
.blog-pagination .wp-pagenavi a:hover{
  border-color: #0183CB;
}
.wp-pagenavi a, .wp-pagenavi span {
	padding: 0.5rem 0.75rem;
	border-radius: 5px;
}
.blog-pagination .wp-pagenavi a{
	border-radius: 5px;
    margin-left: 4px;
	 margin-right: 4px;
	padding: 0.5rem 0.75rem;
}
.blog-pagination .wp-pagenavi .first{
	padding: 0.4rem 0.75rem!important;
	border: 1px solid #dee2e6!important;
}
.blog-pagination .wp-pagenavi .extend{
	padding: 0.4rem 0.75rem!important;
	border: 1px solid #dee2e6!important;
}
@media(max-width: 425px){
	.blog-pagination .wp-pagenavi a{
		padding: 0.4rem 0.4rem!important;
	}
	.blog-pagination .wp-pagenavi span.current{
		padding: 0.4rem 0.4rem!important;
	}
	.wp-pagenavi a, .wp-pagenavi span {
	padding: 0.4rem 0.4rem;
	border-radius: 5px;
}
	.wp-pagenavi a.previouspostslink:after{
		content: "";
	}
	.wp-pagenavi a.nextpostslink:before{
		content: "";
	}
	.blog-pagination .wp-pagenavi .first{
	padding: 0.3rem 0.4rem!important;
}
.blog-pagination .wp-pagenavi .extend{
	padding: 0.3rem 0.4rem!important;
}
}
.contact-data p {
    padding-left: 8px;
    line-height: 22px;
    margin-bottom: 0px;
}
.choose-section .para-title p {
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

/*new css*/
@media screen and (max-width:1200px) {
.repetitive-manual-tasks {
    margin-top: 0px;
}
}
@media screen and (max-width:1199.98px) and (min-width:992px) {
.choose_content_cottom {
	padding-bottom:40px;
}
}
@media screen and (max-width:1199.98px) and (min-width:992px) {
.choose-section .image-bottom-base {
    display: flex;
    align-items: end;
}
}
@media screen and (min-width:1200px)  {
section.sysnet-group-campanies {
    padding-top: 3rem;
}
}
@media screen and (max-width:442.98px)  {
.sysnet-group-campanies ul li img {
    max-width: 100%;
}
}
.choose_content_cottom .button-blue {
    z-index: 1;
    position: relative;
}
.breadcrumb-item.active {
    color: #fff;
}
/*///////whatsapp-contact//////////*/
h2.whatsapp-heading{
color: #000;
font-size: 30px;
}
input#whatsapp-phone{
padding-left: 90px !important;
}
#whatsapp-btn {
background-color: #25D366FF;
color: #fff;
width: 200px;
margin-left: 10px;
padding: 8px 30px;
border: 1px solid #fff;
border-radius: 10px;
outline: none;
text-align: center
}

.input-field {
margin: 15px 0px 15px 0px;
}

.input-field input {
width: 100%;
height: 40px;
background-color: #fff;
color: black;
padding: 10px 15px;
border: none;
outline: none;
border-radius: 13px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.input-field input:focus {
box-shadow: none;
}

.whatsapp-contact-submit-btn {
background-color: #25D366FF;
color: #fff;
width: 150px;
height: 50px;
padding: 8px 20px;
border: 1px solid #fff;
border-radius: 50px;
outline: none;
}

.whatsapp-contact-submit-box {
text-align: center;
}
.iti.iti--allow-dropdown.iti--separate-dial-code{ width: 100%;
}

#CloseBtn {
position: absolute;
top: 10px;
right: 10px;
background: transparent;
border: none;
font-size: 0; 
cursor: pointer;
width: 25px;
height: 25px;
}
#CloseBtn::before {
content: "\2715"; 
font-size: 22px;
color: #000; 
display: inline-block;
line-height: 25px;
font-weight: 600;
}
#CloseBtn:hover::before {
color: #ff6600; 
}
div#whatsapp_captcha {
transform: scale(0.77);
-webkit-transform: scale(0.77);
transform-origin: 0 0;
-webkit-transform-origin: 0 0;
}
#whatsapp-contact-form {
display: flex;
justify-content: center;
align-items: center;
z-index: 999999;
position: fixed;
top: 100px;
left: 0;
}
@media (max-width: 576px){
#contact-form-container {
    width: 95% !important;
    padding: 30px 0px 30px 0px!important;

}
#form {
padding: 10px !important;
}
#form h2{
    font-size: 20px !important;
    line-height: 25px !important;
}
#whatsapp-btn{
width: 150px;
font-size: 14px;
line-height: 10px;
margin-right: 10px;
text-align: center;
padding: 10px 15px;
}
}
@media screen and (min-width: 1500px) and (max-width: 1624.98px){
    #contact-form-container {
        width: 35% !important;
    }
}
@media screen and (min-width: 1400px) and (max-width: 1499.98px){
    #contact-form-container {
        width: 35% !important;
        height: auto !important;
    }
}
@media screen and (min-width: 992px) and (max-width: 1399.98px){
    #contact-form-container {
        width: 50% !important;
        height:auto !important;
    }
}
@media screen and (max-width: 991.98px) and (min-width: 768px) {
#contact-form-container {
    width: 85% !important;     
    height: auto !important;
}      
}
@media (max-width: 767px){
    #contact-form-container {
        width: 90% !important;
    }
}
@media (max-width: 480px) {
    #contact-form-container {
        height: 75% !important;
    }
}
#contact-form-container {
    width: 30%;
    position: relative;
    background-image: url('https://www.genicsolutions.com/wp-content/uploads/2025/11/whttsapp.jpg');
    transition: transform 0.5s ease, opacity 0.5s ease;
    padding-top: 50px;
    border-radius: 15px;
    padding: 30px;
    box-shadow: rgba(100, 100, 111, 0.6) 0px 7px 29px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#CloseBtn {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    outline: none;
    /*font-size: 25px;*/
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: -1px 1px 5px #c3c3c3;
    font-weight: 600;
    z-index: 99;
}
#whatsapp-img{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
#Whatsapp-form {
    margin: 0 auto;
    backdrop-filter: blur(2px);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background: #c9c7c7;
}
.wtsapp-form p{
    color:#000
}

#form {
    padding: 30px;
    text-align: center;
    padding-top: 10px;
}
.phone-field span.fake-placeholder {
    padding-left: 75px !important;
}