@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.form_field.error input {
  border-color: #ff2f2f !important;
}

.form_field.success input {
  border-color: #019b00 !important;
}

::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #142B6F;
}

@keyframes scroll {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: none !important;
}

input {
  -webkit-appearance: none !important;
}

.lines {
  display: inline-block;
  width: 35px;
  height: 0.1785714286rem;
  background: #000000;
  border-radius: 0.1785714286rem;
  transition: 0.2s;
  position: relative;
}
.lines:before, .lines:after {
  display: inline-block;
  width: 35px;
  height: 0.1785714286rem;
  background: #000000;
  border-radius: 0.1785714286rem;
  transition: 0.2s;
  position: absolute;
  left: 0;
  content: "";
  transform-origin: center center;
}
.lines:before {
  top: 0.625rem;
}
.lines:after {
  top: -0.625rem;
}

.lines_button.x2 .lines {
  transition: background 0.3s 0.5s cubic-bezier(0.17, 0.67, 1, 1.23);
}
.lines_button.x2 .lines:before, .lines_button.x2 .lines:after {
  transform-origin: 50% 50%;
  transition: top 0.3s 0.6s cubic-bezier(0.17, 0.67, 1, 1.23), transform 0.3s cubic-bezier(0.17, 0.67, 1, 1.23);
}

.lines_button.x2.close .lines {
  transition: background 0.3s 0s cubic-bezier(0.17, 0.67, 1, 1.23);
  background: transparent;
}
.lines_button.x2.close .lines:before, .lines_button.x2.close .lines:after {
  transition: top 0.3s cubic-bezier(0.17, 0.67, 1, 1.23), transform 0.3s 0.5s cubic-bezier(0.17, 0.67, 1, 1.23);
  top: 0;
  width: 35px;
}
.lines_button.x2.close .lines:before {
  transform: rotate3d(0, 0, 1, 45deg);
}
.lines_button.x2.close .lines:after {
  transform: rotate3d(0, 0, 1, -45deg);
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
}

button {
  border: none;
  outline: none;
  background: none;
}

.section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.active {
  color: red !important;
}

.Hamburger {
  cursor: pointer;
}

.section_border {
  border-bottom: 0.5px solid #C6C6C6;
  box-shadow: 0px 3px 4px rgba(205, 205, 205, 0.322);
}

.btn_box {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #FFF;
  border-radius: 4px;
  border: none;
  color: #000000;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 20px;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.4s ease-in-out;
}
.btn_box::before {
  background: #fff;
  content: "";
  height: 155px;
  opacity: 0;
  position: absolute;
  top: -50px;
  left: -50%;
  transform: rotate(15deg);
  width: 50px;
  transition: all 4500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.btn_box::after {
  background: #ffffff;
  content: "";
  height: 20rem;
  opacity: 0;
  position: absolute;
  top: -50px;
  left: -100%;
  transform: rotate(35deg);
  transition: all 4500ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 4rem;
}
.btn_box:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
}
.btn_box:hover::before {
  left: 120%;
  opacity: 0.5s;
}
.btn_box:hover::after {
  left: 200%;
  opacity: 0.6;
}

.schedule_btn {
  background: #E74C45;
  color: #fff;
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  padding: 15px 20px;
}
.schedule_btn picture {
  position: relative;
  top: -2px;
}

.errorText {
  color: red;
  font-size: 12px;
  align-self: flex-start;
  height: 5px;
}

.alert_box {
  position: fixed !important;
  font-weight: 600;
  bottom: -40%;
  max-width: 100%;
  padding: 5px 15px;
  border: 1px solid rgb(56, 174, 41);
  border-radius: 8px !important;
  z-index: 999999;
  background: rgb(238, 255, 242);
  display: flex;
  align-items: center;
  grid-gap: 10px;
  z-index: 999999999;
  transition: all 0.5s;
}
.alert_box i {
  font-size: 26px;
}
.alert_box .alert_icon {
  display: flex;
  align-items: center;
  grid-gap: 6px;
}

.scrollUp {
  transform: translateY(-100px) !important;
}

.nav_list::-webkit-scrollbar {
  display: none;
}

.ShowMobile {
  display: none;
}

.cardtoggle,
.LMS_Card {
  display: none;
}

.Card_active {
  display: block;
}

.Hero_Banner_Height {
  height: 465px !important;
}

.mixitup-control-active {
  background-color: #152C84;
  color: #FFF !important;
}

#Mobile_App_Page #Mobile_App_link {
  display: none;
}

#Web_App_Page #Web_App_link {
  display: none;
}
#Web_App_Page .web_App_Hero_Banner {
  background-image: url(/images/web-app-banner.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#Dev_Ops_Page #Dev_Ops_link {
  display: none;
}
#Dev_Ops_Page .devops_Hero_Banner {
  background-image: url(/images/devops-banner-img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#Agile_Software_Page #Agile_Software_link {
  display: none;
}
#Agile_Software_Page .header_content h1 {
  line-height: 60px;
}
#Agile_Software_Page .agile_Hero_Banner {
  background-image: url(/images/agile-banner-img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#LMS_Software_Page #LMS_link {
  display: none;
}
#LMS_Software_Page .lms_Hero_Banner {
  background-image: url(/images/LMS-banner-img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#Solution_Page .Services_Hero {
  background-image: url(/images/solution-banner-img.webp);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#Solution_Page .Services_Hero .Hero_Banner h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
#Solution_Page .Services_Hero .Hero_Banner p {
  width: 70%;
}

#document_management_container #docu_manage_case {
  display: none;
}

#legacy_system_modernization #legacy_system_Case {
  display: none;
}

#mobile_crm_solution #mobile_crm_Case {
  display: none;
}

#learning_management_solution #learning_manage_Case {
  display: none;
}

#Privacy_Policy_Page header .Hamburger,
#Privacy_Policy_Page header .nav_schedule_btn {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: auto !important;
  padding-top: 40px;
}

.client_pagination,
.casestudies_pagination,
.our_service_pagination {
  margin: auto;
  text-align: center;
}

.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  transform: translateX(0) !important;
}

.client_pagination span,
.casestudies_pagination span,
.our_service_pagination span {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 14px;
}

.swiper-pagination-bullet {
  background: none !important;
}

.swiper-pagination-bullet-active {
  border: 1px solid #152b6f;
  background: transparent !important;
}

.client_pagination span:before,
.casestudies_pagination span:before,
.our_service_pagination span:before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%);
  background: #152b6f;
  border-radius: 50%;
}

.Mob_Our_Serivce {
  background: #142A6E;
}
.Mob_Our_Serivce h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  padding: 30px 20px 0;
}
.Mob_Our_Serivce .content {
  padding: 10px 25px;
}
.Mob_Our_Serivce .content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #E74C45;
}
.Mob_Our_Serivce .content h4::before {
  display: block;
  content: "";
  width: 23px;
  height: 2px;
  background: #ffffff;
  transform: translate(-30px, 16px);
}
.Mob_Our_Serivce .content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  padding-bottom: 25px;
}

.header-container {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

header {
  display: flex;
  align-items: center;
  width: 100%;
  position: fixed;
  background: #fff;
  top: -1px;
  z-index: 99;
  box-shadow: 0px 2px 14px 1px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s;
}
header .nav_schedule_btn {
  display: flex;
  border: 2.5px solid #E74C45;
  border-radius: 5px;
  text-align: center;
  transition: all 0.4s;
  margin-left: 20px;
  z-index: 999;
  width: 300px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 400;
}
header .nav_schedule_btn:hover {
  transform: translateY(0);
}
header .logo_box img {
  transform: translateY(4px);
  width: 250px;
}
header .nav_bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  margin: auto;
}
header .nav_bar .Hamburger {
  display: none;
}
header .nav_bar .nav_menu {
  padding: 0;
  display: flex;
}
header .nav_bar .nav_menu .nav_list {
  display: flex;
  justify-content: space-between;
  align-self: center;
  grid-gap: 15px;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
header .nav_bar .nav_menu .nav_list li {
  align-self: center;
}
header .nav_bar .nav_menu .nav_list li span {
  position: relative;
}
header .nav_bar .nav_menu .nav_list li .nav_links {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  font-size: 15px;
  font-weight: 400;
  line-height: 19px;
  text-decoration: none;
  color: #000000;
  transition: 0.4s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header .nav_bar .nav_menu .nav_list li .nav_links:hover {
  color: #ff5040;
}
header .nav_bar .nav_menu .nav_list li .nav_links:hover .drop_arrow {
  color: #ff5040;
}
header .nav_bar .nav_menu .nav_list li:hover .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate3d(-85px, 0px, 0);
}
header .nav_bar .nav_menu .nav_list li:hover .Solution_Drop {
  transform: translate3d(-50px, 0px, 0);
}
header .nav_bar .nav_menu .nav_list li:hover .Portfolio_Drop {
  transform: translate3d(-100px, 0px, 0);
}
header .nav_bar .nav_menu .nav_list li .dropdown {
  position: absolute;
  background: #ffffff;
  box-shadow: 0 0px 18px 2px rgba(206, 206, 206, 0.47);
  padding: 10px 20px 10px;
  transform: translate3d(-85px, 30px, 0);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
header .nav_bar .nav_menu .nav_list li .dropdown li {
  margin: 15px 0;
  transition: all 0.2s;
}
header .nav_bar .nav_menu .nav_list li .dropdown li:hover {
  transform: translateX(5px);
}
header .nav_bar .nav_menu .nav_list li .dropdown li a {
  color: #000;
}
header .nav_bar .nav_menu .nav_list li .dropdown li a:hover {
  color: #ff5040;
}
header .nav_bar .nav_menu .nav_list li .Solution_Drop {
  transform: translate3d(-50px, 30px, 0);
}
header .nav_bar .nav_menu .nav_list li .Portfolio_Drop {
  transform: translate3d(-100px, 30px, 0);
}
header .nav_bar .nav_menu .nav_list li .drop_arrow {
  transition: 0.2s;
  display: none;
}
header .nav_bar .nav_menu .nav_list li .desk_drop_arrow {
  display: inline;
  font-size: 22px;
  transform: translateY(2px);
}

.drop_arrow_rotate {
  transform: rotate(180deg);
  transition: 0.2s;
}

.Hero_Container {
  width: 100%;
  height: 100%;
}
.Hero_Container .hero_section {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
  color: #fff;
  background-image: url(/images/home_hero_banner.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 610px;
  padding: 40px 0;
  margin-top: 65px;
}
.Hero_Container .hero_section .hero_content .content {
  width: 50%;
}
.Hero_Container .hero_section .hero_content .content h1 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 74px;
  letter-spacing: 0.01em;
  color: #fff;
  padding-bottom: 15px;
}
.Hero_Container .hero_section .hero_content .content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
  padding-bottom: 30px;
  width: 90%;
}
.Hero_Container .hero_section .hero_content .content .btn_box {
  padding: 15px 20px;
  color: #fff;
  grid-gap: 10px;
}
.Hero_Container .hero_section .hero_content .content .schedule_btn {
  display: flex;
  align-items: flex-end;
}
.Hero_Container .hero_section .hero_content .content .schedule_btn picture {
  position: relative;
  top: -2px;
}

.client_logo_container {
  width: 83%;
  height: 110px;
  margin: auto;
  display: flex;
  align-items: center;
}
.client_logo_container .logo_title {
  width: 10%;
  padding: 30px;
}
.client_logo_container .logo_title h4 {
  font-weight: 700;
  font-size: 26px;
  line-height: 33px;
  color: #142a6e;
}
.client_logo_container .logo_section {
  width: 90%;
  overflow: hidden;
}
.client_logo_container .logo_section .logo_slider {
  display: flex;
  align-items: center;
  grid-gap: 80px;
  animation: scroll 20s linear infinite;
  animation-iteration-count: infinite;
}

.about_container {
  display: flex;
  align-items: center;
  grid-gap: 50px;
  padding-top: 40px;
}
.about_container .content_section {
  width: 70%;
}
.about_container .content_section .about_title {
  display: flex;
  flex-direction: column;
}
.about_container .content_section .about_title span:nth-child(1) {
  font-weight: 700;
  font-size: 26px;
  line-height: 35px;
  color: #e84c44;
  padding-bottom: 5px;
}
.about_container .content_section .about_title span:nth-child(2) {
  font-size: clamp(32px, 4vw, 35px);
  line-height: clamp(44px, 4vw, 52px);
  font-weight: 600;
  color: #152b6f;
  font-family: "Oswald", sans-serif;
  padding-bottom: 20px;
  font-family: "Oswald", sans-serif;
}
.about_container .content_section .about_description p {
  font-size: clamp(15px, 4vw, 16px);
  font-weight: 400;
  line-height: 28px;
  color: #000000;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.03em;
}
.about_container .asset_section img {
  border-radius: 3px;
}

.achievement_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 20px;
  grid-gap: 20px;
}
.achievement_section .achievement_box {
  width: 260px;
  height: 220px;
  background: #fff;
  box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  grid-gap: 5px;
}
.achievement_section .achievement_box:hover {
  background: #142a6e;
  border: 1px solid #142a6e;
  box-shadow: 4px 4px 35px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  color: #fff;
}
.achievement_section .achievement_box:hover span {
  color: #fff !important;
}
.achievement_section .achievement_box:hover h2 {
  color: #fff !important;
}
.achievement_section .achievement_box h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 0.02em;
  padding-top: 8px;
  color: #142a6e;
}
.achievement_section .achievement_box h2 .timer {
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  letter-spacing: 0.02em;
  color: #142a6e;
}
.achievement_section .achievement_box h2 .timer:hover {
  color: #fff;
}
.achievement_section .achievement_box span {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
}

.client_review {
  background-color: #ecf2ff;
}
.client_review .client_review_section {
  margin: 0px 50px 25px;
}
.client_review .client_review_section .client_title {
  padding: 10px;
}
.client_review .client_review_section .client_title h4, .client_review .client_review_section .client_title h1 {
  font-size: clamp(32px, 4vw, 35px);
  line-height: clamp(44px, 4vw, 52px);
  font-weight: 600;
  color: #152b6f;
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
}
.client_review .client_review_section .slider_container {
  width: 100%;
  padding-top: 20px;
}
.client_review .client_review_section .slider_container .slider_section .slider_card {
  display: flex;
  justify-content: space-between;
  width: 430px;
  height: 386px;
  flex-direction: column;
  background: #ffffff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.client_review .client_review_section .slider_container .slider_section .slider_card .description {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  text-align: left;
  color: #000000;
  padding: 30px;
}
.client_review .client_review_section .slider_container .slider_section .slider_card .justify-text {
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.client_review .client_review_section .slider_container .slider_section .slider_card .client_name {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #152b6f;
}
.client_review .client_review_section .slider_container .slider_section .slider_card .author_name {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding: 30px 30px 0;
}
.client_review .client_review_section .slider_container .slider_section .slider_card .line {
  position: relative;
  bottom: 80px;
  width: 95%;
  margin: 0 auto;
  border: 1px dashed rgba(21, 43, 111, 0.18);
}
.client_review .client_review_section .slider_container .slider_section .slider_card .overflow_text {
  overflow-y: auto;
  height: calc(100% - 150px);
  margin: 30px;
  padding: 0;
  transition: all 0.5s;
}
.client_review .client_review_section .slider_container .slider_section .slider_card .overflow_text::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #d5e0f7;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.client_review .client_review_section .slider_container .slider_section .slider_card .overflow_text::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.client_review .client_review_section .slider_container .slider_section .slider_card .overflow_text::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #8c95b2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.client_review .client_review_section .slider_container .slider_section .slider_card .overflow_text:hover::-webkit-scrollbar-thumb, .client_review .client_review_section .slider_container .slider_section .slider_card .overflow_text:hover::-webkit-scrollbar, .client_review .client_review_section .slider_container .slider_section .slider_card .overflow_text:hover::-webkit-scrollbar-track {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.client_review .client_review_section .slider_container .slider_section .slider_card .scroll_arrow {
  position: absolute;
  bottom: 22%;
  right: 10%;
  padding: 0px 6px;
  border-radius: 50%;
  background: #ecf2ff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.client_review .client_review_section .slider_container .slider_section .slider_card .scroll_arrow i {
  font-size: 28px;
}
.client_review .client_review_section .slider_container .slider_section .slider_card:hover .scroll_arrow {
  opacity: 1;
  visibility: visible;
}

.product_container {
  transition: all 0.5s ease;
  position: relative;
}
.product_container .bg_box {
  position: absolute;
  transform: translate(25%, 240%);
  width: 900px;
  height: 100px;
  background: #e74c45;
  z-index: -9;
}
.product_container .title_box {
  padding: 10px 0 15px;
}
.product_container .title_box h2, .product_container .title_box h1 {
  font-size: clamp(32px, 4vw, 35px);
  line-height: clamp(44px, 4vw, 52px);
  font-weight: 600;
  color: #152b6f;
  font-family: "Oswald", sans-serif;
  padding-bottom: 10px;
}
.product_container .products_section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 35px;
  transition: all 0.5s linear;
}
.product_container .products_section .product_card {
  display: flex;
  flex-direction: column;
  padding: 5px 15px;
  position: relative;
  width: clamp(380px, 4vw, 380px);
  height: 515px;
  --borderWidth: 7px;
  background: #ffffff;
  box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  border: 7.5px solid transparent;
  transition: all 0.5s linear;
  -moz-transition: border 0.5s linear;
  /* Firefox 4 */
  -webkit-transition: border 0.5s linear;
  /* Safari and Chrome */
  -o-transition: border 0.5s linear;
  /* Opera */
  -ms-transition: border 0.5s linear;
  /* Explorer 10 */
}
.product_container .products_section .product_card::after {
  content: "";
  position: absolute;
  transform: translate(-6%, -3%);
  width: 105%;
  height: 105%;
  z-index: 1;
  background: linear-gradient(white, white) padding-box, linear-gradient(to bottom, #4468cc, #f3584a) border-box;
  border: 7.5px solid transparent;
  transition: all 0.5s;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
}
.product_container .products_section .product_card:hover::after {
  opacity: 1;
  visibility: visible;
}
.product_container .products_section .product_card:hover i {
  background: linear-gradient(white, white) padding-box, linear-gradient(to bottom, #4468cc, #f3584a) border-box;
  border: 2px solid transparent;
  border-radius: 50%;
}
.product_container .products_section .product_card .cards_header {
  background: none;
  border: none;
  height: 85px;
  grid-gap: 30px;
  z-index: 2;
}
.product_container .products_section .product_card .cards_header img {
  border-radius: 15px;
}
.product_container .products_section .product_card .cards_header h5 {
  font-size: clamp(21px, 4vw, 24px);
  font-weight: 500;
  line-height: 36px;
  font-family: "Oswald", sans-serif;
  color: #152b6f;
  text-transform: uppercase;
  text-transform: capitalize;
}
.product_container .products_section .product_card .cards_body {
  z-index: 2;
}
.product_container .products_section .product_card .cards_body p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  color: #000;
  letter-spacing: -0.03em;
}
.product_container .products_section .product_card .cards_link {
  z-index: 2;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 10px 20px;
}
.product_container .products_section .product_card .cards_link i {
  font-size: 24px;
  padding: 2px;
  color: #4568cd;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.WWA_section .content_section {
  align-items: center;
}
.WWA_section .content_section h3, .WWA_section .content_section h1 {
  font-size: clamp(32px, 4vw, 35px);
  line-height: clamp(44px, 4vw, 52px);
  font-weight: 600;
  color: #152b6f;
  font-family: "Oswald", sans-serif;
  padding-top: 10px;
}
.WWA_section .content_section h2 {
  font-size: clamp(21px, 4vw, 24px);
  font-weight: 500;
  line-height: 36px;
  font-family: "Oswald", sans-serif;
  color: #152b6f;
  text-transform: uppercase;
  text-align: justify;
  text-transform: capitalize;
  -webkit-hyphens: auto;
          hyphens: auto;
  padding: 20px 0 15px;
}
.WWA_section .content_section p {
  font-size: clamp(15px, 4vw, 16px);
  font-weight: 400;
  line-height: 28px;
  color: #000000;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.WWA_section .section_one .title_box {
  padding: 15px 0;
}
.WWA_section .section_two {
  padding-bottom: 10px;
}
.WWA_section .section_three {
  padding: 20px 0;
  align-items: flex-start;
}
.WWA_section .section_three img {
  padding-top: 20px;
  height: 459px;
  -o-object-fit: cover;
     object-fit: cover;
}
.WWA_section .section_three,
.WWA_section .section_two {
  display: flex;
  grid-gap: 40px;
  max-width: 100%;
}
.WWA_section .WWA_content {
  flex: 0 0 auto;
  width: 65%;
}
.WWA_section .WWA_asset {
  flex: 0 0 auto;
  width: 33%;
}

.Ourteam {
  padding-bottom: 0;
}
.Ourteam .title_box h4, .Ourteam .title_box h1 {
  font-size: clamp(32px, 4vw, 35px);
  line-height: clamp(44px, 4vw, 52px);
  font-weight: 600;
  color: #152b6f;
  font-family: "Oswald", sans-serif;
}
.Ourteam .teamcard_container .card_section .cards {
  border: 1px solid #dedede;
  border-radius: 4px 4px 10px 10px;
}
.Ourteam .teamcard_container .card_section .cards .cards_header {
  background: #f4f7ff;
  height: 210px;
}
.Ourteam .teamcard_container .card_section .cards .cards_header .header_part {
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  padding: 10px 25px;
  height: 240px;
  top: 20px;
}
.Ourteam .teamcard_container .card_section .cards .cards_header .header_part .asset {
  flex: 0 1 50%;
}
.Ourteam .teamcard_container .card_section .cards .cards_header .header_part .asset img {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}
.Ourteam .teamcard_container .card_section .cards .cards_header .header_part span {
  display: inline-block;
  width: 225px;
  height: 225px;
  border: 1px solid #142b6f;
  border-radius: 50%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.Ourteam .teamcard_container .card_section .cards .cards_header .header_part .title {
  text-align: center;
}
.Ourteam .teamcard_container .card_section .cards .cards_header .header_part .title h3 {
  font-size: clamp(21px, 4vw, 24px);
  font-weight: 500;
  line-height: 36px;
  font-family: "Oswald", sans-serif;
  color: #152b6f;
  text-transform: uppercase;
  text-transform: capitalize;
}
.Ourteam .teamcard_container .card_section .cards .cards_header .header_part .title small {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: #ee4d43;
}
.Ourteam .teamcard_container .card_section .cards .cards_body {
  border-radius: 0px 0px 8px 8px;
  background: #152b6f;
  color: #ffffff;
  padding: 60px 20px 50px;
  height: 450px;
}
.Ourteam .teamcard_container .card_section .cards .cards_body P {
  letter-spacing: -0.01em;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  font-weight: 300;
}

.integrations_container .content_section .title_box h4, .integrations_container .content_section .title_box h1 {
  font-size: clamp(32px, 4vw, 35px);
  line-height: clamp(44px, 4vw, 52px);
  font-weight: 600;
  color: #152b6f;
  font-family: "Oswald", sans-serif;
  padding-bottom: 15px;
}
.integrations_container .content_section .description p {
  font-size: clamp(15px, 4vw, 16px);
  font-weight: 400;
  line-height: 28px;
  color: #000000;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.rad_gradient_clients_bg {
  background: radial-gradient(#c7d4ff 5%, transparent 70%, #ffffff 42%);
  background-position: right 12% bottom 1%;
  background-size: 50% 40%;
  background-repeat: no-repeat;
}

.case_studies .title_box h4, .case_studies .title_box h1 {
  font-size: clamp(32px, 4vw, 35px);
  line-height: clamp(44px, 4vw, 52px);
  font-weight: 600;
  color: #152b6f;
  font-family: "Oswald", sans-serif;
  padding-bottom: 25px;
  padding-top: 20px;
}
.case_studies .casestudies_container {
  padding: 40px 15px;
}
.case_studies .casestudies_container .casestudies_section .cards {
  border: 2px solid #eee;
  transition: 0.2s;
}
.case_studies .casestudies_container .casestudies_section .cards:hover {
  box-shadow: 0 -5px 18px 2px rgb(227, 227, 227);
}
.case_studies .casestudies_container .casestudies_section .cards .content {
  padding: 25px 45px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case_studies .casestudies_container .casestudies_section .cards .content h4 {
  font-size: clamp(21px, 4vw, 24px);
  font-weight: 500;
  line-height: 36px;
  font-family: "Oswald", sans-serif;
  color: #152b6f;
  text-transform: uppercase;
  text-transform: capitalize;
}
.case_studies .casestudies_container .casestudies_section .cards .content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
  padding-bottom: 20px;
  padding-top: 10px;
}
.case_studies .casestudies_container .casestudies_section .cards .content .case_btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #fff;
  padding: 12px 35px;
  width: -moz-max-content;
  width: max-content;
  border-color: #152b6f;
  background: #E74C45;
}
.case_studies .casestudies_pagination {
  padding-top: 10px;
}

.signup {
  background: linear-gradient(269.99deg, #c7d4ff -44.71%, #adc1ff 26.35%, #152b6f 60.11%);
  margin: 20px 0 0;
  padding: 30px 50px;
}
.signup .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.signup .content_section {
  padding: 20px;
  transition: 0.2s;
}
.signup .content_section h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 44px;
  color: #ffffff;
}
.signup .content_section p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
  padding-top: 5px;
}
.signup .content_section .signup_box {
  display: flex;
  align-items: center;
  align-items: baseline;
  grid-gap: 20px;
  padding-top: 30px;
}
.signup .content_section .signup_box .input_field {
  display: flex;
  flex-direction: column;
}
.signup .content_section .signup_box .input_field .submail_error {
  font-size: 14px;
  color: red;
  display: none;
}
.signup .content_section .signup_box .input_field input {
  width: 435px;
  height: 46px;
  padding: 0 30px;
  color: #fff;
  background: transparent;
  border: 1.5px solid #acacac;
  border-radius: 3px;
  transition: 0.5s ease;
}
.signup .content_section .signup_box .input_field input:focus {
  border: 1.5px solid #d6d6d6;
  outline: 0;
}
.signup .content_section .signup_box .input_field input:hover {
  border-color: #d6d6d6;
}
.signup .content_section .signup_box .input_field input::-moz-placeholder {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: #e2e2e2;
}
.signup .content_section .signup_box .input_field input::placeholder {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: #e2e2e2;
}
.signup .content_section .signup_box .input_field small {
  color: red;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  display: none;
  transition: 0.3s ease;
}
.signup .content_section .signup_box .btn_box {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  background: none;
  color: #152b6f;
  padding: 10px 20px;
  border: 2px solid #eee;
  color: #152b6f;
  background: #fff;
}
.signup .content_section .signup_box .btn_box::before {
  background: #5569a9;
}
.signup .content_section .signup_box .btn_box::after {
  background: #5569a9;
}

.contact_form {
  padding-bottom: 0;
}
.contact_form .title_box h1 {
  font-size: 50px;
  font-weight: 300;
  line-height: 66px;
  color: #152b6f;
  font-family: "Roboto Slab", serif;
  padding-bottom: 20px;
}
.contact_form .title_box h1 span {
  font-weight: 700;
}
.contact_form .title_box .description p {
  font-size: 15px;
  font-weight: 400;
  line-height: 29px;
  color: #000000;
  text-align: center;
  padding-bottom: 30px;
  width: 75%;
  margin: auto;
}
.contact_form .form_container .form_left,
.contact_form .form_container .form_right {
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 10px;
  padding-left: 15px;
}
.contact_form .form_container .form_left .form_field,
.contact_form .form_container .form_right .form_field {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.contact_form .form_container .form_left .form_field label,
.contact_form .form_container .form_right .form_field label {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  color: #152b6f;
  padding-bottom: 5px;
}
.contact_form .form_container .form_left .form_field input,
.contact_form .form_container .form_right .form_field input {
  border-radius: 2.5px;
  border: 0.75px solid #2e4898;
  height: 43px;
  padding: 0 10px;
  transition: 0.5s ease;
}
.contact_form .form_container .form_left .form_field input:focus,
.contact_form .form_container .form_right .form_field input:focus {
  outline: none;
}
.contact_form .form_container .form_left .form_field input::-moz-placeholder, .contact_form .form_container .form_right .form_field input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
  hyphens: auto;
  color: #111111;
  opacity: 0.28;
}
.contact_form .form_container .form_left .form_field input::placeholder,
.contact_form .form_container .form_right .form_field input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  color: #111111;
  opacity: 0.28;
}
.contact_form .form_container .form_left .form_field .hidden,
.contact_form .form_container .form_right .form_field .hidden {
  visibility: hidden;
}
.contact_form .form_container .form_left .form_field .recaptcha,
.contact_form .form_container .form_right .form_field .recaptcha {
  display: flex;
  align-items: center;
  height: 35px;
  border-radius: 4px;
  vertical-align: middle;
}
.contact_form .form_container .form_left .form_field .recaptcha p,
.contact_form .form_container .form_right .form_field .recaptcha p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  color: #000000;
  position: relative;
  transform: translateY(8px);
}
.contact_form .form_container .submit_btn {
  display: flex;
  justify-content: start;
  margin-left: -10px;
}
.contact_form .form_container .submit_btn .btn_box {
  border-radius: 4px;
  padding: 10px 35px;
  border-color: #000;
  background: transparent;
  color: #fff;
  background: #152b6f;
}
.contact_form .form_container .submit_btn .btn_box:hover {
  box-shadow: 0 0px 30px 3px rgb(216, 216, 216);
}

.footer_container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #081232;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.footer_container .footer_section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px 40px 50px;
  grid-gap: 100px;
  width: 100%;
  margin: auto;
}
.footer_container .footer_section .footer_box .footer_title {
  padding-bottom: 25px;
}
.footer_container .footer_section .footer_box .footer_title a {
  color: #FFF;
  font-weight: 700;
  transition: 0.2s;
  font-size: 16px;
}
.footer_container .footer_section .footer_box .footer_title a:hover {
  color: #e0e2ea;
}
.footer_container .footer_section .footer_box li {
  list-style: none;
  padding: 10px 0;
}
.footer_container .footer_section .footer_box li b {
  padding-bottom: 20px;
  background: #000;
}
.footer_container .footer_section .footer_box li a {
  font-size: 15px;
  color: #ffffff;
  transition: 0.2s;
}
.footer_container .footer_section .footer_box li a:hover {
  color: #e9e9e9;
}
.footer_container .footer_section .footer_box .social_media_links p {
  color: #FFF;
}
.footer_container .footer_section .footer_box .social_media_links .icons {
  grid-gap: 20px;
  padding-bottom: 10px;
}
.footer_container .footer_section .footer_box .social_media_links .icons a {
  transition: 0.2s;
}
.footer_container .footer_section .footer_box .social_media_links .icons a:hover {
  transform: translateY(-5px);
}
.footer_container .footer_section .footer_box .social_media_links .icons i {
  font-size: 35px;
  color: #FFF;
  transition: 0.2s;
}
.footer_container .footer_section .footer_box .social_media_links .icons i:hover {
  color: #dfecff;
}
.footer_container .copyright_box {
  color: #fff;
  text-align: center;
  padding-bottom: 50px;
}
.footer_container .copyright_box span,
.footer_container .copyright_box a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}
.footer_container .store_box {
  display: flex;
  grid-gap: 10px;
}

.Main_container {
  margin-top: 45px;
}
.Main_container .contact_form .title_box h1 {
  padding-bottom: 10px;
}
.Main_container .contact_form .title_box h1 span {
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

.header_content {
  display: flex;
  align-items: center;
  flex-flow: column;
  color: #FFF;
  text-align: center;
  padding: 40px 0;
}
.header_content h1 {
  font-size: clamp(40px, 4vw, 50px);
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 80px;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.header_content span {
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  color: #FFFFFF;
  width: 70%;
  padding-bottom: 30px;
}

.caseStudie_hero_banner,
.contact_hero_banner {
  background-image: url(/images/portfolio-banner-img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
}
.caseStudie_hero_banner .header_content,
.contact_hero_banner .header_content {
  padding: 100px 0;
}

.caseStudie_hero_section .content h1 {
  font-size: clamp(32px, 4vw, 35px);
  line-height: clamp(44px, 4vw, 52px);
  font-weight: 600;
  color: #152b6f;
  font-family: "Oswald", sans-serif;
  font-family: "Noto Sans", sans-serif;
  padding-bottom: 5px;
}
.caseStudie_hero_section .content h1 span {
  font-weight: 200;
  color: #000;
}
.caseStudie_hero_section .content P {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  color: #383838;
}

.quote_section {
  padding: 30px 0;
  background: #F6F9FF;
}
.quote_section .quote_container {
  display: flex;
  align-items: center;
  grid-gap: 80px;
}
.quote_section .quote_container .content h1, .quote_section .quote_container .content h4, .quote_section .quote_container .content h5 {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 600;
  line-height: 40px;
  font-family: "Oswald", sans-serif;
  color: #E74C45;
  padding-bottom: 10px;
}
.quote_section .quote_container .content h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(34px, 4vw, 40px);
  font-weight: 600;
  line-height: 56px;
  color: #152B6F;
}
.quote_section .quote_container .content p {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  padding: 5px 0 15px;
}
.quote_section .quote_container .content .btn_box {
  font-size: 16px;
}

.docManagement_container,
.legacySystem_container,
.MobileSolution_container,
.LearningSolution_container {
  padding-bottom: 35px;
}
.docManagement_container .asset_box,
.legacySystem_container .asset_box,
.MobileSolution_container .asset_box,
.LearningSolution_container .asset_box {
  border-radius: 2px 2px 0px 0px;
  background: #DCEAF2;
}
.docManagement_container .asset_box .asset,
.legacySystem_container .asset_box .asset,
.MobileSolution_container .asset_box .asset,
.LearningSolution_container .asset_box .asset {
  padding-top: 40px;
  width: 97%;
  margin: auto;
}
.docManagement_container .asset_box .asset img,
.legacySystem_container .asset_box .asset img,
.MobileSolution_container .asset_box .asset img,
.LearningSolution_container .asset_box .asset img {
  display: flex;
  justify-content: center;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  height: 500px;
}
.docManagement_container .content_box,
.legacySystem_container .content_box,
.MobileSolution_container .content_box,
.LearningSolution_container .content_box {
  background-color: #F0F5F7;
  position: relative;
  z-index: 0;
}
.docManagement_container .content_box .content,
.legacySystem_container .content_box .content,
.MobileSolution_container .content_box .content,
.LearningSolution_container .content_box .content {
  width: 90%;
  margin: auto;
  padding: 40px 10px 50px;
}
.docManagement_container .content_box .content h1,
.legacySystem_container .content_box .content h1,
.MobileSolution_container .content_box .content h1,
.LearningSolution_container .content_box .content h1 {
  font-size: clamp(32px, 4vw, 35px);
  line-height: clamp(44px, 4vw, 52px);
  font-weight: 600;
  color: #152b6f;
  font-family: "Oswald", sans-serif;
}
.docManagement_container .content_box .content h6,
.legacySystem_container .content_box .content h6,
.MobileSolution_container .content_box .content h6,
.LearningSolution_container .content_box .content h6 {
  font-size: clamp(21px, 4vw, 24px);
  font-weight: 500;
  line-height: 36px;
  font-family: "Oswald", sans-serif;
  color: #152b6f;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Noto Sans", sans-serif;
  text-transform: none;
  line-height: 30px;
  color: #000000;
  padding-bottom: 10px;
}
.docManagement_container .content_box .content p,
.legacySystem_container .content_box .content p,
.MobileSolution_container .content_box .content p,
.LearningSolution_container .content_box .content p {
  font-size: clamp(15px, 4vw, 16px);
  font-weight: 400;
  line-height: 28px;
  color: #000000;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.docManagement_container .content_box .content .btn_box,
.legacySystem_container .content_box .content .btn_box,
.MobileSolution_container .content_box .content .btn_box,
.LearningSolution_container .content_box .content .btn_box {
  background: #152b6f;
  padding: 10px 30px;
  color: #fff;
  margin-top: 20px;
}

.legacySystem_container .asset_box {
  background: #DEE8FF;
  border-radius: 2px 2px 0px 0px;
}
.legacySystem_container .content_box {
  background: #EEF3FF;
}

.MobileSolution_container .asset_box {
  background: #D3EDF0;
  border-radius: 2px 2px 0px 0px;
}
.MobileSolution_container .content_box {
  background: #ECF8FA;
}

.LearningSolution_container .asset_box {
  background: #B8BDCE;
  border-radius: 2px 2px 0px 0px;
}
.LearningSolution_container .content_box {
  background-color: #EEF3FF;
}

.docManag_hero_banner,
.Mobile_App_Hero_Banner,
.web_App_Hero_Banner,
.devops_Hero_Banner,
.agile_Hero_Banner,
.lms_Hero_Banner {
  background-image: url(/images/docManagement.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
}
.docManag_hero_banner .content,
.Mobile_App_Hero_Banner .content,
.web_App_Hero_Banner .content,
.devops_Hero_Banner .content,
.agile_Hero_Banner .content,
.lms_Hero_Banner .content {
  color: #FFF;
  position: relative;
  height: 100%;
}
.docManag_hero_banner .breadcrumb,
.Mobile_App_Hero_Banner .breadcrumb,
.web_App_Hero_Banner .breadcrumb,
.devops_Hero_Banner .breadcrumb,
.agile_Hero_Banner .breadcrumb,
.lms_Hero_Banner .breadcrumb {
  display: flex;
  grid-gap: 15px;
  align-items: center;
  margin-top: 25px;
}
.docManag_hero_banner .breadcrumb a,
.Mobile_App_Hero_Banner .breadcrumb a,
.web_App_Hero_Banner .breadcrumb a,
.devops_Hero_Banner .breadcrumb a,
.agile_Hero_Banner .breadcrumb a,
.lms_Hero_Banner .breadcrumb a {
  font-size: clamp(15px, 4vw, 16px);
  font-weight: 400;
  line-height: 28px;
  color: #000000;
  color: #FFF;
  font-weight: 300;
  cursor: pointer;
}
.docManag_hero_banner .breadcrumb i,
.Mobile_App_Hero_Banner .breadcrumb i,
.web_App_Hero_Banner .breadcrumb i,
.devops_Hero_Banner .breadcrumb i,
.agile_Hero_Banner .breadcrumb i,
.lms_Hero_Banner .breadcrumb i {
  color: rgba(255, 255, 255, 0.6509803922);
  font-size: 20px;
  transform: translateY(-1px);
}
.docManag_hero_banner .breadcrumb span,
.Mobile_App_Hero_Banner .breadcrumb span,
.web_App_Hero_Banner .breadcrumb span,
.devops_Hero_Banner .breadcrumb span,
.agile_Hero_Banner .breadcrumb span,
.lms_Hero_Banner .breadcrumb span {
  font-size: clamp(15px, 4vw, 16px);
  font-weight: 400;
  line-height: 28px;
  color: #000000;
  color: #FFF;
  font-weight: 500;
  cursor: pointer;
}
.docManag_hero_banner .breadcrumb span::after,
.Mobile_App_Hero_Banner .breadcrumb span::after,
.web_App_Hero_Banner .breadcrumb span::after,
.devops_Hero_Banner .breadcrumb span::after,
.agile_Hero_Banner .breadcrumb span::after,
.lms_Hero_Banner .breadcrumb span::after {
  content: "";
  display: block;
  position: relative;
  top: 3px;
  background: #ffffff;
  width: 100%;
  height: 1px;
}

.about_project_section .title h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 59px;
  color: #152B6F;
  padding-bottom: 30px;
  font-family: "Oswald", sans-serif;
}
.about_project_section .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.02em;
  color: #000000;
  padding-right: 10px;
}

.technologies_container .title h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 59px;
  color: #152B6F;
  font-family: "Oswald", sans-serif;
  padding-bottom: 15px;
}
.technologies_container .texhnologie_section {
  background: #ECF3FE;
  padding: 50px;
}
.technologies_container .texhnologie_section .technologie_title {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}
.technologies_container .texhnologie_section .technologie_title .name {
  background: #FFF;
  width: 100%;
  height: 50px;
  border-right: 2px solid #ADC1FF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.technologies_container .texhnologie_section .technologie_title .name:last-child {
  border-right: none;
}
.technologies_container .texhnologie_section .technologie_title .name h6 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #152B6F;
}
.technologies_container .texhnologie_section .technologie_asset {
  display: flex;
  justify-content: space-between;
  grid-gap: 70px;
  margin-top: 30px;
}
.technologies_container .texhnologie_section .technologie_asset .mob_name {
  display: none;
}
.technologies_container .texhnologie_section .technologie_asset .tech_box {
  padding: 20px 10px;
  width: 280px;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projectGoal_container {
  background: #152B6F;
  color: #FFF;
  padding: 80px 0;
}
.projectGoal_container .projectGoal_list .title h1 {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 59px;
  color: #FFFFFF;
}
.projectGoal_container .projectGoal_list .project_list table tbody tr {
  margin: 40px 0;
  display: flex;
  align-items: center;
  grid-gap: 40px;
}
.projectGoal_container .projectGoal_list .project_list table tbody tr th {
  width: 20%;
}
.projectGoal_container .projectGoal_list .project_list table tbody tr td p {
  font-size: clamp(15px, 3vw, 16px);
  font-weight: 300;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.projectGoal_container .projectGoal_list .project_list .list_count {
  width: 60px;
  height: 60px;
  text-align: center;
  background: #0FADF8;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
}
.projectGoal_container .projectGoal_circle .projectGoal_circle {
  height: 450px;
  width: 450px;
  background: rgba(132, 24, 24, 0);
  border-radius: 50%;
  border: 3px dashed rgb(255, 255, 255);
  animation: spin 40s linear infinite;
  margin: auto;
}
.projectGoal_container .projectGoal_circle .projectGoal_circle .goal_box {
  width: 100%;
}
.projectGoal_container .projectGoal_circle .projectGoal_circle .goal_box h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.projectGoal_container .projectGoal_circle .projectGoal_circle .working_hours {
  position: relative;
  transform: translate(10%, -30%);
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.projectGoal_container .projectGoal_circle .projectGoal_circle .data_entry {
  position: relative;
  transform: translate(-7%, 80%);
  display: flex;
  align-items: center;
}
.projectGoal_container .projectGoal_circle .projectGoal_circle .data_entry h6 {
  padding-left: 15px;
}
.projectGoal_container .projectGoal_circle .projectGoal_circle .actionable_data {
  position: relative;
  transform: translate(-11%, 220%);
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
}
.projectGoal_container .projectGoal_circle .projectGoal_circle .actionable_data h6 {
  padding-right: 15px;
  text-align: end;
}

.project_decription .title h1 {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  line-height: 59px;
  color: #152B6F;
  padding: 20px 0;
}
.project_decription .description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.02em;
  color: #000000;
}

.result_container .title h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 59px;
  color: #152B6F;
  font-family: "Oswald", sans-serif;
}
.result_container .result_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 50px;
  margin-top: 80px;
  transition: transform 1s;
}
.result_container .result_section .result_box {
  width: 100%;
  background: #B9C2FE;
  border-radius: 3px;
  padding: 60px 30px;
  transition: 0.5s all;
  position: relative;
}
.result_container .result_section .result_box h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 82px;
  color: #040301;
}
.result_container .result_section .result_box .title h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  color: #152B6F;
  padding: 10px 0;
}
.result_container .result_section .result_box p {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.02em;
  color: #000000;
  padding: 10px 0 30px;
}
.result_container .result_section .result_box .bottom_line {
  display: block;
  height: 3px;
  background: #ffffff;
  transform: rotate(180deg);
}
.result_container .result_section .result_box .bottom_line::before {
  content: "";
  display: block;
  width: 3px;
  height: 16px;
  background: #ffffff;
}
.result_container .result_section .result_box .bottom_line::after {
  content: "";
  position: fixed;
  right: 0;
  bottom: -13px;
  display: block;
  width: 3px;
  height: 16px;
  background: #ffffff;
}
.result_container .result_section .box_one {
  transform: translateY(200px);
}
.result_container .result_section .box_two {
  transform: translateY(100px);
}
.result_container .result_section .box_three {
  transform: translateY(0);
}

.qoutes_container {
  background: #152B6F;
  height: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(-150px);
  position: relative;
  z-index: -1;
}
.qoutes_container .container {
  margin-bottom: 70px;
}
.qoutes_container .container .qoutes_text h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 400;
  font-family: "Noto Sans", sans-serif;
  line-height: 52px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  width: 80%;
  margin: 0 auto;
}
.qoutes_container .container .qoutes_text h1::before {
  content: url(/images/double_qoute.png);
  position: absolute;
  transform: translate(-45px, -65px);
}
.qoutes_container .container .qoutes_author {
  padding: 40px 0 0;
}
.qoutes_container .container .qoutes_author h5 {
  font-size: 26px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  text-align: center;
  color: #FFFFFF;
}
.qoutes_container .container .qoutes_author small {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #DFDFDF;
}

.document_management_container .case_studies,
.legacy_system_modernization .case_studies,
.mobile_crm_solution .case_studies,
.learning_management_solution .case_studies {
  margin-top: -8em;
}

.product_hero {
  background-image: url(/images/product-banner.webp);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}
.product_hero .product_container {
  padding: 60px 0;
  padding-left: 30px;
}
.product_hero .product_container .row {
  display: flex;
  align-items: center;
  width: 100%;
}
.product_hero .product_container .row .content_box h1 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 74px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  padding: 8px 0;
}
.product_hero .product_container .row .content_box p {
  font-size: clamp(15px, 4vw, 16px);
  font-weight: 400;
  line-height: 28px;
  color: #000000;
  font-weight: 300;
  color: #FFFFFF;
  width: 75%;
  padding-bottom: 15px;
}

.about_product_section {
  padding: 30px 0;
}
.about_product_section .about_product_Container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 40px;
}
.about_product_section .about_product_Container .asset_box {
  width: 40%;
}
.about_product_section .about_product_Container .asset_box img {
  border-radius: 20px;
}
.about_product_section .about_product_Container .content_box {
  width: 60%;
}
.about_product_section .about_product_Container .content_box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #000000;
}

.Products_Container {
  padding: 40px 0;
  background: #000;
}
.Products_Container .content_box .title_box {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
.Products_Container .content_box .title_box h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  line-height: 68px;
  color: #152b6f;
  font-family: "Oswald", sans-serif;
}
.Products_Container .content_box .title_box img {
  width: 69px;
  border-radius: 15px;
}
.Products_Container .content_box h5 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 500;
  line-height: clamp(28px, 4vw, 32px);
  letter-spacing: 0.02em;
  color: #000000;
  padding: 15px 0 10px;
}
.Products_Container .content_box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  letter-spacing: -0.04em;
  color: #000000;
  width: 98%;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.Products_Container .content_box .btn_box {
  background-color: #152b6f;
  color: #FFF;
  margin-top: 40px;
}

.Payil__Container {
  background-color: #EEF3FF;
}

.Timecard__Container {
  background-color: #F1FEFF;
}

.Timesheet__Container {
  background-color: #F9F5EE;
}

.Services_page .quote_section .quote_container,
.Mobile_App_Page .quote_section .quote_container,
.Web_App_Page .quote_section .quote_container,
.Dev_Ops_Page .quote_section .quote_container,
.Agile_Software_Page .quote_section .quote_container,
.LMS_Software_Page .quote_section .quote_container,
.Solution_Page .quote_section .quote_container,
.Government_Solutions_Page .quote_section .quote_container {
  padding: 15px 0;
}
.Services_page .quote_section .quote_container .content p,
.Mobile_App_Page .quote_section .quote_container .content p,
.Web_App_Page .quote_section .quote_container .content p,
.Dev_Ops_Page .quote_section .quote_container .content p,
.Agile_Software_Page .quote_section .quote_container .content p,
.LMS_Software_Page .quote_section .quote_container .content p,
.Solution_Page .quote_section .quote_container .content p,
.Government_Solutions_Page .quote_section .quote_container .content p {
  padding: 0 0 13px;
}
.Services_page .quote_section .quote_container .asset img,
.Mobile_App_Page .quote_section .quote_container .asset img,
.Web_App_Page .quote_section .quote_container .asset img,
.Dev_Ops_Page .quote_section .quote_container .asset img,
.Agile_Software_Page .quote_section .quote_container .asset img,
.LMS_Software_Page .quote_section .quote_container .asset img,
.Solution_Page .quote_section .quote_container .asset img,
.Government_Solutions_Page .quote_section .quote_container .asset img {
  width: 100%;
}

.Services_Hero {
  background-image: url(/images/Services-Hero-Banner.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 85px;
}
.Services_Hero .Hero_Banner {
  padding: 80px 0;
}
.Services_Hero .Hero_Banner h1 {
  font-size: 45px;
  font-weight: 400;
  line-height: 61px;
  letter-spacing: -0.01em;
  text-transform: capitalize;
  color: #FFFFFF;
  font-family: "Oswald", sans-serif;
}
.Services_Hero .Hero_Banner p {
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  color: #FFFFFF;
  padding: 15px 0;
}

.Right_Align_Container,
.Left_Align_Container {
  position: relative;
  background: #ECF3FE;
  border: 1px solid #C5DBFF;
  box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-top: 100px;
  width: calc(100% - 30px);
  margin-left: auto;
  margin-right: 0;
  height: 440px;
}
.Right_Align_Container ul,
.Left_Align_Container ul {
  padding-left: 0 !important;
}
.Right_Align_Container .development_section,
.Left_Align_Container .development_section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  height: 100%;
}
.Right_Align_Container .development_section .mob_title,
.Left_Align_Container .development_section .mob_title {
  display: none;
}
.Right_Align_Container .development_section .content_box,
.Left_Align_Container .development_section .content_box {
  padding: 20px 35px;
  width: 46%;
}
.Right_Align_Container .development_section .content_box h1,
.Left_Align_Container .development_section .content_box h1 {
  font-size: 36px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 45px;
  letter-spacing: -0.01em;
  color: #142A6E;
  padding-bottom: 10px;
}
.Right_Align_Container .development_section .content_box p,
.Left_Align_Container .development_section .content_box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #383838;
  padding-bottom: 15px;
}
.Right_Align_Container .development_section .content_box .link_btn,
.Left_Align_Container .development_section .content_box .link_btn {
  background: #152B6F;
  grid-gap: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.Right_Align_Container .development_section .content_box .link_btn i,
.Left_Align_Container .development_section .content_box .link_btn i {
  font-size: 24px;
  color: #ffffff;
  transform: translate(0, 2px);
  transition: 0.3s;
}
.Right_Align_Container .development_section .asset_box,
.Left_Align_Container .development_section .asset_box {
  z-index: 9;
}
.Right_Align_Container .development_section .asset_box img,
.Left_Align_Container .development_section .asset_box img {
  transform: translateY(-50px);
}
.Right_Align_Container .development_section .development_list_section,
.Left_Align_Container .development_section .development_list_section {
  position: absolute;
  height: 85%;
  width: 55%;
  background: linear-gradient(206deg, #678CFF 2.69%, #3965EF 17.46%, #142A6E 67.92%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  display: flex;
  justify-content: end;
  align-items: center;
  transform: translateX(-30px);
}
.Right_Align_Container .development_section .development_list_section .development_list,
.Left_Align_Container .development_section .development_list_section .development_list {
  margin: 30px;
}
.Right_Align_Container .development_section .development_list_section .development_list li,
.Left_Align_Container .development_section .development_list_section .development_list li {
  font-size: 18px;
  line-height: 45px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  font-weight: 700;
  padding: 10px 0;
}
.Right_Align_Container .development_section .development_list_section .development_list li::after,
.Left_Align_Container .development_section .development_list_section .development_list li::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.Right_Align_Container .development_section .development_list_section .dev_ops_list,
.Left_Align_Container .development_section .development_list_section .dev_ops_list {
  margin: 0 60px 0 30px;
  padding-left: 0;
}

.Left_Align_Container {
  margin-right: auto;
  margin-left: 0;
  background: #DBF1FD;
  border: 1px solid #C7EBFF;
  box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.Left_Align_Container .development_section {
  flex-flow: row-reverse;
}
.Left_Align_Container .development_section .asset_box img {
  transform: translateY(-50px);
}
.Left_Align_Container .development_section .development_list_section {
  justify-content: start;
  transform: translateX(30px);
  background: linear-gradient(145deg, #678CFF 2.69%, #3965EF 17.46%, #142A6E 67.92%);
}
.Left_Align_Container .development_section .development_list_section .development_list {
  padding-left: 0;
  margin-right: 20px;
}

.Mobile_App_Hero_Banner {
  background-image: url(/images/mobil_app_hero.webp);
}

.Mobile_App_AboutUs,
.solution_aboutus {
  margin-top: 30px;
}
.Mobile_App_AboutUs .column_reverse,
.solution_aboutus .column_reverse {
  flex-flow: row-reverse;
}
.Mobile_App_AboutUs .AboutUs_Section,
.solution_aboutus .AboutUs_Section {
  align-items: flex-start;
}
.Mobile_App_AboutUs .AboutUs_Section .content_box h2, .Mobile_App_AboutUs .AboutUs_Section .content_box h3,
.solution_aboutus .AboutUs_Section .content_box h2,
.solution_aboutus .AboutUs_Section .content_box h3 {
  font-size: 36px;
  font-weight: 500;
  line-height: 45px;
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.01em;
  color: #142A6E;
  padding-bottom: 30px;
}
.Mobile_App_AboutUs .AboutUs_Section .content_box h4,
.solution_aboutus .AboutUs_Section .content_box h4 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.01em;
  color: #142a6e;
  padding-bottom: 5px;
}
.Mobile_App_AboutUs .AboutUs_Section .content_box h5,
.solution_aboutus .AboutUs_Section .content_box h5 {
  font-size: 24px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.01em;
  color: #142A6E;
  padding-bottom: 5px;
}
.Mobile_App_AboutUs .AboutUs_Section .content_box p,
.solution_aboutus .AboutUs_Section .content_box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #000000;
  padding-bottom: 10px;
}
.Mobile_App_AboutUs .AboutUs_Section .aboutUs_bottom_content,
.solution_aboutus .AboutUs_Section .aboutUs_bottom_content {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #000000;
  padding-bottom: 10px;
}
.Mobile_App_AboutUs .AboutUs_Section .asset_box img,
.solution_aboutus .AboutUs_Section .asset_box img {
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.17));
  border-radius: 45px 7px 7px 7px;
}
.Mobile_App_AboutUs .AboutUs_Section .asset_box h2, .Mobile_App_AboutUs .AboutUs_Section .asset_box h3,
.solution_aboutus .AboutUs_Section .asset_box h2,
.solution_aboutus .AboutUs_Section .asset_box h3 {
  display: none;
}

.Operating_System_Section {
  margin-top: 10px;
  margin-bottom: 30px;
}
.Operating_System_Section .Operating_System_Cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.Operating_System_Section .Operating_System_Cards .Os_Card {
  text-align: center;
}
.Operating_System_Section .Operating_System_Cards .Os_Card .Os_Logo {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.Operating_System_Section .Operating_System_Cards .Os_Card h2, .Operating_System_Section .Operating_System_Cards .Os_Card h1 {
  font-size: 30px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Oswald", sans-serif;
  text-align: center;
  letter-spacing: -0.01em;
  color: #152B6F;
  padding: 35px 0;
}
.Operating_System_Section .Operating_System_Cards .Os_Card h2::after, .Operating_System_Section .Operating_System_Cards .Os_Card h1::after {
  display: block;
  position: relative;
  top: 25px;
  content: "";
  width: 170px;
  margin: auto;
  height: 2px;
  background: #D0DCFF;
}
.Operating_System_Section .Operating_System_Cards .Os_Card p {
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #383838;
  padding: 0 15px;
}

.Application_Process_container {
  background: #F6F9FF;
  padding-bottom: 60px;
}
.Application_Process_container .Application_Process_Section .title_content {
  text-align: center;
  padding-bottom: 30px;
}
.Application_Process_container .Application_Process_Section .title_content h1, .Application_Process_container .Application_Process_Section .title_content h3, .Application_Process_container .Application_Process_Section .title_content h4 {
  font-size: clamp(34px, 4vw, 36px);
  font-weight: 500;
  line-height: 45px;
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.01em;
  padding: 30px 0;
  color: #142A6E;
}
.Application_Process_container .Application_Process_Section .title_content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #383838;
}
.Application_Process_container .Application_Process_Section .Application_Process_Cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card {
  border-radius: 6px;
  background: #E4EDFF;
  padding: 35px 40px;
}
.Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card img {
  padding: 0 5px 5px;
}
.Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 45px;
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.01em;
  color: #142A6E;
}
.Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #000000;
}

.Team_Progress_Container {
  margin-bottom: 60px;
}
.Team_Progress_Container .title h4, .Team_Progress_Container .title h1 {
  font-size: clamp(34px, 4vw, 36px);
  font-weight: 500;
  line-height: 53px;
  font-family: "Oswald", sans-serif;
  color: #152B6F;
  padding: 20px 0;
}
.Team_Progress_Container .Team_Progress_Cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: baseline;
  margin-top: 60px;
}
.Team_Progress_Container .Team_Progress_Cards .Progress_Card {
  width: 220px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}
.Team_Progress_Container .Team_Progress_Cards .Progress_Card h1, .Team_Progress_Container .Team_Progress_Cards .Progress_Card h4, .Team_Progress_Container .Team_Progress_Cards .Progress_Card h5 {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0.02em;
  color: #000000;
  padding: 15px 0;
}
.Team_Progress_Container .Team_Progress_Cards .Progress_Card h1 span, .Team_Progress_Container .Team_Progress_Cards .Progress_Card h4 span, .Team_Progress_Container .Team_Progress_Cards .Progress_Card h5 span {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0.02em;
  color: #000000;
}
.Team_Progress_Container .Team_Progress_Cards .Progress_Card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  font-variant: small-caps;
  color: #000000;
  width: 80%;
}

.services_links {
  margin: 35px 0;
}
.services_links .title {
  padding-bottom: 15px;
}
.services_links .title h1 {
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 500;
  line-height: 45px;
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.01em;
  color: #142A6E;
}
.services_links .services_link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
  grid-gap: 35px;
}
.services_links .services_link .link_box {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 35px;
  background: #FFFFFF;
  border: 1px solid #CDCDCD;
  border-radius: 3px;
  transition: all 0.4s;
}
.services_links .services_link .link_box:hover {
  background: #E74C45;
  border: 1px solid #E74C45;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}
.services_links .services_link .link_box:hover h2, .services_links .services_link .link_box:hover i {
  color: #fff;
}
.services_links .services_link .link_box:hover i {
  transform: translateX(10px);
}
.services_links .services_link .link_box h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #142A6E;
  text-overflow: ellipsis;
  transition: color 0.4s;
  margin-bottom: 0;
}
.services_links .services_link .link_box i {
  font-size: 30px;
  color: #142A6E;
  transition: 0.4s;
}

.cardtoggle.active,
.LMS_Card.active {
  display: block;
}

.Our_Service_Container {
  position: relative;
}
.Our_Service_Container .content_box {
  position: relative;
  background: #142A6E;
  padding: 0 30px 40px;
  color: #FFF;
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
  height: 410px;
}
.Our_Service_Container .content_box .content {
  width: 80%;
}
.Our_Service_Container .content_box .content .Next_Prev_Box {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: -35px;
  right: 45%;
}
.Our_Service_Container .content_box .content .Next_Prev_Box .prev,
.Our_Service_Container .content_box .content .Next_Prev_Box .next {
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 2px 20px;
  cursor: pointer;
  transition: all 0.5s;
}
.Our_Service_Container .content_box .content .Next_Prev_Box .prev:hover,
.Our_Service_Container .content_box .content .Next_Prev_Box .next:hover {
  background: #142A6E;
}
.Our_Service_Container .content_box .content .Next_Prev_Box .prev:hover i,
.Our_Service_Container .content_box .content .Next_Prev_Box .next:hover i {
  color: #FFFFFF;
}
.Our_Service_Container .content_box .content .Next_Prev_Box .prev i,
.Our_Service_Container .content_box .content .Next_Prev_Box .next i {
  color: #142A6E;
  font-size: 50px;
  transition: all 0.5s;
}
.Our_Service_Container .content_box .content h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  padding-bottom: 10px;
}
.Our_Service_Container .content_box .content h4 {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #E74C45;
  padding-bottom: 15px;
  transition: all 0.5s;
}
.Our_Service_Container .content_box .content h4::before {
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  background: #ffffff;
  transform: translate(-40px, 18px);
}
.Our_Service_Container .content_box .content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 0;
}
.Our_Service_Container .content_box .heading_titles {
  position: absolute;
  left: 0;
  top: 70px;
  background: #FFFFFF;
  border: 1px solid #E3E3E3;
  box-shadow: -3px -5px 13px rgba(0, 0, 0, 0.08), -1px 5px 13px rgba(0, 0, 0, 0.11);
  transform: translate(-315px, 0px);
  width: 465px;
}
.Our_Service_Container .content_box .heading_titles ul {
  padding: 30px 40px;
  margin-bottom: 0;
}
.Our_Service_Container .content_box .heading_titles ul .active_line {
  font-weight: 600;
}
.Our_Service_Container .content_box .heading_titles ul .active_line::before {
  display: inline-block;
  position: relative;
  bottom: 5px;
  content: "";
  width: 30px;
  height: 3px;
  margin-right: 10px;
  background: #E74C45;
  transition: all 0.5s;
}
.Our_Service_Container .content_box .heading_titles ul li {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  text-align: start;
  letter-spacing: -0.01em;
  color: #383838;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.5s;
}
.Our_Service_Container .content_box .heading_titles ul li:hover {
  color: #142A6E;
  font-weight: 600;
}
.Our_Service_Container .content_box .heading_titles ul li:hover::before {
  width: 30px;
}
.Our_Service_Container .content_box .heading_titles ul li::before {
  display: inline-block;
  position: relative;
  bottom: 5px;
  content: "";
  width: 0;
  height: 3px;
  margin-right: 10px;
  background: #E74C45;
  transition: all 0.5s;
}

.Web_Application_Process {
  background: #F6F9FF;
  padding: 40px 0;
  margin-bottom: 20px;
}
.Web_Application_Process .Application_Process_Container {
  padding: 30px 0;
}
.Web_Application_Process .Application_Process_Container .title_content h1 {
  font-size: 36px;
  font-weight: 500;
  line-height: 45px;
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.01em;
  color: #142A6E;
  padding-bottom: 10px;
}
.Web_Application_Process .Application_Process_Container .title_content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #383838;
  padding-bottom: 15px;
}
.Web_Application_Process .Application_Process_Container .Application_Process_Cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 30px 20px;
  padding: 30px 0;
}
.Web_Application_Process .Application_Process_Container .Application_Process_Cards .Process_Card {
  background: #FFFFFF;
  box-shadow: -2px 1px 12px rgba(0, 0, 0, 0.08), 1px 2px 13px rgba(0, 0, 0, 0.08);
  border-radius: 1px;
  padding: 20px 15px;
  width: 280px;
}
.Web_Application_Process .Application_Process_Container .Application_Process_Cards .Process_Card h5 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #142A6E;
  padding-bottom: 10px;
}
.Web_Application_Process .Application_Process_Container .Application_Process_Cards .Process_Card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #383838;
}

#Web_App_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards,
#Agile_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards,
#LMS_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards,
#Dev_Ops_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards {
  justify-items: center;
}
#Web_App_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child,
#Agile_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child,
#LMS_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child,
#Dev_Ops_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child {
  grid-column-start: 1;
  grid-column-end: 3;
  width: 50%;
}

.Devops_Service_container .content_box {
  background: #FFFFFF;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1529411765);
  padding: 40px 30px;
  border-radius: 4px;
}
.Devops_Service_container .content_box .content h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #142A6E;
}
.Devops_Service_container .content_box .content h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #E74C45;
  padding: 10px 0;
}
.Devops_Service_container .content_box .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #142A6E;
  margin-bottom: 0;
}

.Agile_Software_Services {
  margin-top: 30px;
}
.Agile_Software_Services .title h1 {
  font-size: 36px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 45px;
  letter-spacing: -0.01em;
  color: #142A6E;
}
.Agile_Software_Services .Agile_service_container {
  padding-top: 30px;
  padding-left: 25px;
}
.Agile_Software_Services .Agile_service_container hr {
  margin: 45px 0;
}
.Agile_Software_Services .Agile_service_container .service_card {
  display: flex;
  grid-gap: 30px;
}
.Agile_Software_Services .Agile_service_container .service_card .asset_box {
  align-self: center;
}
.Agile_Software_Services .Agile_service_container .service_card .asset_box h3 {
  font-size: 36px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 45px;
  letter-spacing: -0.01em;
  color: #142A6E;
  width: 100px;
}
.Agile_Software_Services .Agile_service_container .service_card .vertical_line {
  display: block;
  border: 1.4px solid #EC4F45;
  background: #EC4F45;
  margin: 0 20px 0 0;
}
.Agile_Software_Services .Agile_service_container .service_card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #000000;
  width: 85%;
  margin-bottom: 0;
}

.TechnoGems_Agile_container .title h4 {
  font-size: 36px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 45px;
  letter-spacing: -0.01em;
  color: #142A6E;
  text-align: center;
  padding-bottom: 30px;
}
.TechnoGems_Agile_container .TechnoGems_Agile_section {
  width: 75%;
  margin: auto;
}
.TechnoGems_Agile_container .TechnoGems_Agile_section .agile_list {
  display: flex;
  align-items: center;
  grid-gap: 40px;
  padding: 0 30px;
}
.TechnoGems_Agile_container .TechnoGems_Agile_section .agile_list p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #000000;
}

.LMS_develop_Services .LMS_develop_section {
  display: flex;
  align-items: center;
  grid-gap: 50px;
}
.LMS_develop_Services .LMS_develop_section .buttons_links .button_box {
  background: rgba(228, 237, 255, 0.5);
  box-shadow: 0px 0px 20px rgba(173, 193, 255, 0.6);
  border-radius: 1px;
  padding: 30px;
  width: 340px;
}
.LMS_develop_Services .LMS_develop_section .buttons_links .button_box h3 {
  font-size: 28px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #142A6E;
  padding-bottom: 15px;
}
.LMS_develop_Services .LMS_develop_section .buttons_links .button_box ul {
  padding-left: 0;
}
.LMS_develop_Services .LMS_develop_section .buttons_links .button_box ul li {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #383838;
  cursor: pointer;
  transition: 0.3s;
  padding: 15px 0;
}
.LMS_develop_Services .LMS_develop_section .buttons_links .button_box ul li:hover {
  color: #E85750;
}
.LMS_develop_Services .LMS_develop_section .buttons_links .button_box ul .LMS_active {
  color: #E85750;
}
.LMS_develop_Services .LMS_develop_section .content_box h1 {
  font-size: 36px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 45px;
  letter-spacing: -0.01em;
  color: #142A6E;
  padding-bottom: 20px;
}
.LMS_develop_Services .LMS_develop_section .content_box .content {
  transition: all 0.5s;
}
.LMS_develop_Services .LMS_develop_section .content_box .content h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #E74C45;
}
.LMS_develop_Services .LMS_develop_section .content_box .content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #000000;
}

.blog_banner {
  background-image: url(/images/blog-banner-img.png);
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.blog_banner .Hero_Banner {
  padding: 0;
}
.blog_banner .Hero_Banner h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}
.blog_banner .Hero_Banner p {
  font-size: 20px;
  font-weight: 300;
  line-height: 34px;
  color: #FFFFFF;
}

.blog_header_container .filter_search_section {
  display: flex;
  align-items: center;
  background: #FFFFFF;
}
.blog_header_container .filter_search_section .filter_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #DFEAFF;
  padding: 10px 20px;
  cursor: pointer;
}
.blog_header_container .filter_search_section .filter_box input {
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
.blog_header_container .filter_search_section .filter_box input::-moz-placeholder {
  opacity: 1;
  color: #000;
}
.blog_header_container .filter_search_section .filter_box input::placeholder {
  opacity: 1;
  color: #000;
}
.blog_header_container .filter_search_section .filter_box span {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
.blog_header_container .filter_search_section .filter_box span i {
  font-size: 28px;
  transition: 0.5s;
  transform-origin: center;
  color: #152C84;
}
.blog_header_container .filter_search_section .filter_box span .toggleI {
  transform: rotate(180deg);
  transition: 0.5s;
}
.blog_header_container .filter_search_section .filter_dropdown {
  position: absolute;
  transform: translate(0pc, 0pc);
  background: #fff;
  width: -moz-max-content;
  width: max-content;
  padding: 20px;
  z-index: 5;
  box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
  display: none;
}
.blog_header_container .filter_search_section .filter_dropdown .filterdropbox {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  grid-gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
}
.blog_header_container .filter_search_section .filter_dropdown .filterdropbox button {
  color: #000000;
  cursor: pointer;
  transition: 0.2s;
  text-align: start;
  padding: 10px;
}
.blog_header_container .filter_search_section .filter_dropdown .filterdropbox button:hover {
  background: #f1f5ff;
  border-radius: 5px;
}
.blog_header_container .filter_search_section .filter_dropdown .card-active {
  background: #dfe9ff;
  border-radius: 5px;
}
.blog_header_container .filter_search_section .search_section .search_box {
  padding: 0 45px;
  display: flex;
  align-items: center;
  grid-gap: 20px;
  border: 1px solid #CCCCCC;
  border-left-width: 0;
  padding: 10px 40px;
}
.blog_header_container .filter_search_section .search_section .search_box i {
  font-size: 26px;
  color: #152C84;
}
.blog_header_container .filter_search_section .search_section .search_box input {
  border: 0;
  width: 100%;
}
.blog_header_container .filter_search_section .search_section .search_box input:focus {
  outline: none;
}

.blog_Cards_Container {
  transition: all 0.5s;
}
.blog_Cards_Container .Blog_Card {
  background: #F7F7F7;
  border-radius: 6px;
  padding: 50px;
  margin-bottom: 35px;
  transition: all 0.5s;
}
.blog_Cards_Container .Blog_Card:hover {
  background: #FFFFFF;
  box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.blog_Cards_Container .Blog_Card .content_box h3 {
  font-family: "Oswald", sa;
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  letter-spacing: 0.02em;
  color: #152C84;
}
.blog_Cards_Container .Blog_Card .content_box .date_time {
  display: flex;
  align-items: center;
  grid-gap: 80px;
}
.blog_Cards_Container .Blog_Card .content_box .date_time span {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  color: #5A5A5A;
  padding: 18px 0;
}
.blog_Cards_Container .Blog_Card .content_box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #000000;
}
.blog_Cards_Container .Blog_Card .content_box .card_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 20px;
}
.blog_Cards_Container .Blog_Card .content_box .card_info .label .lebelOne,
.blog_Cards_Container .Blog_Card .content_box .card_info .label .lebelTwo {
  margin-right: 10px;
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #0F0F0F;
}
.blog_Cards_Container .Blog_Card .content_box .card_info a {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: #448AFF;
}
.blog_Cards_Container .Blog_Card .content_box .card_info a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #448AFF;
  transition: all 0.4s;
}
.blog_Cards_Container .Blog_Card .content_box .card_info a:hover::after {
  width: 100%;
}
.blog_Cards_Container .blog_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 25px;
  margin: 20px 0 40px;
}
.blog_Cards_Container .blog_pagination .preview,
.blog_Cards_Container .blog_pagination .next {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  width: 158px;
  padding: 6px 0;
  background: #FFFFFF;
  border: 1px solid rgba(115, 128, 144, 0.53);
  border-radius: 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(124, 136, 150, 0.53);
  cursor: not-allowed;
  transition: all 0.4s ease;
}
.blog_Cards_Container .blog_pagination .preview i,
.blog_Cards_Container .blog_pagination .next i {
  font-size: 24px;
}
.blog_Cards_Container .blog_pagination .pagelist {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  color: #383838;
}

#Contact_Us_page .contact_hero_banner {
  background-image: url(/images/contact-us-banner.webp);
  height: 610px;
}
#Contact_Us_page .contact_hero_banner .header_content h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
#Contact_Us_page .contact_hero_banner .header_content span {
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  text-align: center;
  color: #FFFFFF;
}

.empty_space {
  height: 400px;
}

.Contact_Form_container {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  width: 85%;
  background: #ffffff;
  border-radius: 17px;
  box-shadow: 3px 5px 12px rgba(0, 0, 0, 0.11);
  transform: translateY(-280px);
}
.Contact_Form_container .Contact_Form_section {
  display: flex;
  grid-gap: 40px;
}
.Contact_Form_container .Contact_Form_section .Form_content {
  padding: 40px 60px;
  width: 70%;
}
.Contact_Form_container .Contact_Form_section .Form_content .text_content h1 {
  font-size: 36px;
  font-weight: 300;
  line-height: 47px;
  color: #152B6F;
  font-family: "Roboto Slab", sans-serif;
}
.Contact_Form_container .Contact_Form_section .Form_content .text_content span {
  font-size: 36px;
  font-weight: 500;
}
.Contact_Form_container .Contact_Form_section .Form_content .text_content strong {
  font-weight: 600;
}
.Contact_Form_container .Contact_Form_section .Form_content .text_content p {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #000000;
}
.Contact_Form_container .Contact_Form_section .Form_assets {
  right: 0;
}
.Contact_Form_container .Contact_Form_section .Form_assets img {
  border-radius: 0 14px 14px 0;
  height: 650px;
}

.social_media_section {
  background: #152B6F;
}
.social_media_section .social_media_container h1 {
  text-align: center;
  font-weight: 400;
  line-height: 52px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  font-size: 35px;
  font-family: "Oswald", sans-serif;
  margin: 50px auto;
}
.social_media_section .social_media_container h1::after {
  content: "";
  display: block;
  width: 80px;
  margin: auto;
  border: 1.5px solid #E74C45;
  background: #E74C45;
  position: relative;
  top: 5px;
}
.social_media_section .social_media_container .media_links {
  margin: 65px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 40px;
}
.social_media_section .social_media_container .media_links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 30px;
  padding-left: 0;
}
.social_media_section .social_media_container .media_links ul li {
  list-style: none;
}
.social_media_section .social_media_container .media_links ul li a {
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 80px;
  font-size: 35px;
  display: block;
  border: 2px solid #FFFFFF;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social_media_section .social_media_container .media_links ul li a .icon {
  position: relative;
  color: #ffffff;
  transition: 0.5s;
  z-index: 3;
}
.social_media_section .social_media_container .media_links ul li a:hover .icon {
  color: #fff;
}
.social_media_section .social_media_container .media_links ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00;
  transition: 0.5s;
  z-index: 2;
}
.social_media_section .social_media_container .media_links ul li a:hover:before {
  top: 0;
}
.social_media_section .social_media_container .media_links ul li:nth-child(1) a:before {
  background: #3b5999;
}
.social_media_section .social_media_container .media_links ul li:nth-child(2) a:before {
  background: #55acee;
}
.social_media_section .social_media_container .media_links ul li:nth-child(3) a:before {
  background: #0077b5;
}
.social_media_section .social_media_container .media_links ul li:nth-child(4) a:before {
  background: #c13584;
}

.office_location_section {
  margin-bottom: 40px;
}
.office_location_section .title h1 {
  font-weight: 500;
  line-height: 59px;
  letter-spacing: 0.01em;
  color: #152B6F;
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  margin: 20px auto 40px;
}
.office_location_section .indian_location .location_container,
.office_location_section .united_states_location .location_container {
  position: relative;
}
.office_location_section .indian_location .location_container img,
.office_location_section .united_states_location .location_container img {
  border-radius: 5px;
}
.office_location_section .indian_location .location_container .address_box,
.office_location_section .united_states_location .location_container .address_box {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-25%, 20%);
  background: #FFFFFF;
  box-shadow: -3px 1px 16px 4px rgba(38, 38, 38, 0.25), 2px 3px 9px 2px rgba(167, 167, 167, 0.25);
  border-radius: 11px;
  text-align: center;
  padding: 40px 30px;
  height: 73%;
}
.office_location_section .indian_location .location_container .address_box .address_header,
.office_location_section .united_states_location .location_container .address_box .address_header {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  padding-bottom: 20px;
}
.office_location_section .indian_location .location_container .address_box .address_header img,
.office_location_section .united_states_location .location_container .address_box .address_header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.office_location_section .indian_location .location_container .address_box .address_header h2,
.office_location_section .united_states_location .location_container .address_box .address_header h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  color: #152B6F;
}
.office_location_section .indian_location .location_container .address_box address,
.office_location_section .united_states_location .location_container .address_box address {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: #000000;
}
.office_location_section .indian_location .location_container .address_box .contact_details,
.office_location_section .united_states_location .location_container .address_box .contact_details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.office_location_section .indian_location .location_container .address_box .contact_details a,
.office_location_section .united_states_location .location_container .address_box .contact_details a {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: #383838;
}
.office_location_section .united_states_location .address_box {
  transform: translate(-25%, 23%) !important;
}

.back_link_Section {
  padding: 40px 0;
}
.back_link_Section .back_link {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
.back_link_Section .back_link i {
  font-size: 24px;
}
.back_link_Section .back_link .back_icon {
  position: relative;
  top: 4px;
}
.back_link_Section .back_link a {
  font-size: 16px;
  font-weight: 600;
  color: #152B6F;
  line-height: 22px;
}

#Blog_Sub_Page .sub_blog_banner {
  display: flex;
  align-items: flex-end;
  height: 380px !important;
  margin-bottom: 10px;
  background-image: url(/images/sub_blog_banner.jpeg);
}
#Blog_Sub_Page .sub_blog_banner .Hero_Banner {
  padding-bottom: 40px;
}
#Blog_Sub_Page .sub_blog_banner .Hero_Banner h1 {
  font-size: clamp(32px, 4vw, 35px);
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: clamp(48px, 4vw, 52px);
  color: #FFFFFF;
  margin-bottom: 60px;
}
#Blog_Sub_Page .sub_blog_banner .Hero_Banner small {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: #FFFFFF;
}

.description_Container .author_section {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.description_Container .author_section span {
  transform: translateY(-2px);
}
.description_Container .blog_content_section {
  padding-top: 15px;
}
.description_Container .blog_content_section p {
  margin-bottom: 0;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #000000;
  font-size: 16px;
}
.description_Container .blog_content_section a {
  color: #000000;
  text-decoration: underline !important;
}
.description_Container .blog_content_section h6 {
  font-weight: 600;
  margin-bottom: 0;
}
.description_Container .blog_content_section .text_space {
  padding-bottom: 20px;
}
.description_Container .blog_content_section ul {
  list-style: disc;
  margin-bottom: 0;
}

.card_label_section {
  display: flex;
}
.card_label_section .card_label {
  margin-right: 10px;
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 10px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #0F0F0F;
}

.suggection_blogs_container {
  margin-bottom: 50px;
}
.suggection_blogs_container .suggection_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.suggection_blogs_container .suggection_header h2 {
  font-family: "Oswald", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #152B6F;
  white-space: nowrap;
  margin-right: 30px;
}
.suggection_blogs_container .suggection_header span {
  background: #D2D2D2;
  border: 1px solid #D2D2D2;
  width: 100%;
}
.suggection_blogs_container .suggection_header .pagination_buttons {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin-left: 10px;
}
.suggection_blogs_container .suggection_header .pagination_buttons .prev {
  margin-left: 10px;
}
.suggection_blogs_container .suggection_header .pagination_buttons .prev,
.suggection_blogs_container .suggection_header .pagination_buttons .next {
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.suggection_blogs_container .suggection_header .pagination_buttons .prev i,
.suggection_blogs_container .suggection_header .pagination_buttons .next i {
  font-size: 30px;
  color: rgba(15, 15, 15, 0.6509803922);
}
.suggection_blogs_container .suggection_header .pagination_buttons .swiper-button-next, .suggection_blogs_container .suggection_header .pagination_buttons .swiper-button-prev {
  position: relative;
  margin-top: 0;
}
.suggection_blogs_container .suggection_header .pagination_buttons .swiper-button-next:after, .suggection_blogs_container .suggection_header .pagination_buttons .swiper-rtl .swiper-button-prev:after,
.suggection_blogs_container .suggection_header .pagination_buttons .swiper-button-prev:after, .suggection_blogs_container .suggection_header .pagination_buttons .swiper-rtl .swiper-button-next:after {
  content: "";
}
.suggection_blogs_container .suggection_header .pagination_buttons .swiper-button-prev, .suggection_blogs_container .suggection_header .pagination_buttons .swiper-rtl .swiper-button-next {
  left: auto;
  right: 10px;
}
.suggection_blogs_container .suggection_blogs_section {
  margin-top: 40px;
}
.suggection_blogs_container .suggection_blogs_section .suggection_card_section .suggection_card img {
  border-radius: 5px;
}
.suggection_blogs_container .suggection_blogs_section .suggection_card_section .suggection_card .info {
  margin: 15px 0;
}
.suggection_blogs_container .suggection_blogs_section .suggection_card_section .suggection_card .info span {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  color: #0F0F0F;
}
.suggection_blogs_container .suggection_blogs_section .suggection_card_section .suggection_card p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 25px;
  color: #152B6F;
}

.NoResult {
  display: none;
  text-align: center;
}
.NoResult .page_404 {
  padding: 40px 0;
  background: #fff;
  font-family: "Arvo", serif;
}
.NoResult .page_404 img {
  width: 100%;
}
.NoResult .four_zero_four_bg {
  background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
  height: 400px;
  background-position: center;
}
.NoResult .four_zero_four_bg h1 {
  font-size: 60px;
}
.NoResult .four_zero_four_bg h3 {
  font-size: 80px;
}
.NoResult .link_404 {
  display: block;
  padding: 10px 20px;
  background: #142A6E;
  width: -moz-max-content;
  width: max-content;
  margin: 20px auto;
  color: #fff !important;
}
.NoResult .contant_box_404 {
  margin-top: -50px;
}

.crm_platform_container {
  position: relative;
}
.crm_platform_container .asset_box img {
  position: absolute;
  top: 13%;
  left: -1%;
  z-index: 2;
  width: 26%;
  border-radius: 50px 5px 0 5px;
  box-shadow: -5px -5px 14px 0 rgba(116, 116, 113, 0.25);
}
.crm_platform_container .platform_sectioon {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-top: 40px;
  margin-bottom: 60px;
  padding: 30px 20px 90px;
  background: #EEF3FF;
  border-radius: 23px 0 0 23px;
}
.crm_platform_container .platform_sectioon .content_box {
  width: 78%;
  margin-left: auto;
}
.crm_platform_container .platform_sectioon .content_box h1 {
  font-weight: 600;
  font-size: 35px;
  font-family: "Oswald", sans-serif;
  line-height: 52px;
  color: #152B6F;
  padding-bottom: 10px;
}
.crm_platform_container .platform_sectioon .content_box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #383838;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.crm_platform_container .platform_sectioon .content_box .content {
  width: 95%;
}
.crm_platform_container .platform_sectioon .content_box .btn_box {
  background: #152B6F;
  color: #FFF;
  margin-top: 30px;
}
.crm_platform_container .platform_sectioon .content_box img {
  display: none;
}

.mid_content_section p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  color: #383838;
}

.white_application_container {
  padding-top: 0;
}
.white_application_container .content_box h1 {
  font-weight: 600;
  font-size: 35px;
  font-family: "Oswald", sans-serif;
  line-height: 52px;
  color: #152B6F;
  padding-bottom: 15px;
}
.white_application_container .content_box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  color: #383838;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.white_application_container .content_box .content {
  width: 98%;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.white_application_container .content_box .btn_box {
  background: #152B6F;
  color: #FFF;
  margin-top: 30px;
}
.white_application_container .asset_box img {
  border-radius: 0 50px 0 0;
}

.article_page_banner {
  background-image: url(/images/Government-Solutions-banner.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.article_page_banner .article_section {
  width: 45%;
  background: rgba(21, 43, 111, 0.9607843137);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 30px 40px;
  margin: 50px 0 30px;
}
.article_page_banner .article_section .breadcrumb {
  display: flex;
  grid-gap: 15px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 35px;
}
.article_page_banner .article_section .breadcrumb a {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #FFFFFF;
}
.article_page_banner .article_section .breadcrumb i {
  color: rgba(255, 255, 255, 0.6509803922);
  font-size: 20px;
  transform: translateY(-1px);
}
.article_page_banner .article_section .breadcrumb span {
  font-size: clamp(15px, 4vw, 16px);
  font-weight: 400;
  line-height: 28px;
  color: #000000;
  color: #FFF;
  font-weight: 500;
  cursor: pointer;
}
.article_page_banner .article_section .breadcrumb span::after {
  content: "";
  display: block;
  position: relative;
  top: 3px;
  background: #ffffff;
  width: 100%;
  height: 1px;
}
.article_page_banner .article_section .hero_content h1 {
  font-size: 50px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 74px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  padding-bottom: 8px;
}
.article_page_banner .article_section .hero_content p {
  font-size: 19px;
  font-weight: 300;
  line-height: 28px;
  color: #FFFFFF;
  padding-bottom: 50px;
}

.article_content_section .row .content_box {
  align-self: center;
}
.article_content_section .row .content_box h1 {
  font-size: 34px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 50px;
  color: #152B6F;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
}
.article_content_section .row .content_box p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: #000000;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.article_content_section .row .content_box .ai_tool_link {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin-top: 50px;
  padding: 10px 15px;
  border: 2px solid #152b6f;
  border-radius: 5px;
  transition: 0.4s;
  width: -moz-max-content;
  width: max-content;
  background: #152b6f;
  letter-spacing: 0.5px;
  color: #FFF;
}
.article_content_section .row .content_box .ai_tool_link span {
  display: contents;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: 0.4s;
  text-transform: capitalize;
}
.article_content_section .row .content_box .ai_tool_link i {
  font-size: 22px;
  font-weight: 400;
  transition: 0.3s;
  color: #FFF;
}
.article_content_section .row .content_box .ai_tool_link:hover {
  background: #152b6f;
  box-shadow: 0 5px 10px -2px rgba(21, 43, 111, 0.2509803922);
}
.article_content_section .row .content_box .ai_tool_link:hover span {
  color: #fff;
}
.article_content_section .row .content_box .ai_tool_link:hover i {
  color: #fff;
  transform: rotate(40deg);
}
.article_content_section .row .asset_box img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.CRM_banner {
  background-image: url(/images/crm-platform-banner.png);
}

.White_label_banner {
  background-image: url(/images/white-label-banner.png);
}

.startup_solution_banner {
  background-image: url(/images/startup-solution-banner.png);
}

.Contact_popup {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.74);
}
.Contact_popup .Contact_Form_container {
  position: relative;
  top: 45%;
}
.Contact_popup .Contact_Form_container .Form_content .text_content h1,
.Contact_popup .Contact_Form_container .Form_content .text_content strong,
.Contact_popup .Contact_Form_container .Form_content .text_content span {
  font-family: "Oswald", sans-serif !important;
}
.Contact_popup .Contact_Form_container .Form_content .text_content strong,
.Contact_popup .Contact_Form_container .Form_content .text_content span {
  font-weight: 500;
}
.Contact_popup .Contact_Form_container .Form_content .text_content p #para_txt,
.Contact_popup .Contact_Form_container .Form_content .text_content p #page_txt {
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.01em;
  color: #000000;
  font-family: "Noto Sans", sans-serif !important;
}
.Contact_popup .Contact_Form_container .Form_content .popup_close_btn {
  position: absolute;
  top: 0;
  right: 15px;
  display: none;
}
.Contact_popup .Contact_Form_container .Form_content .popup_close_btn i {
  font-size: 40px;
  color: #000;
}
.Contact_popup .popup_close {
  position: absolute;
  right: 0;
  top: 10px;
  margin: 0 20px;
}
.Contact_popup .popup_close i {
  background: rgba(21, 43, 111, 0.5333333333);
  border-radius: 50%;
  font-size: 30px;
  padding: 5px;
  color: #ffffff;
  transition: 0.3s;
}
.Contact_popup .popup_close i:hover {
  background: #152b6f;
}

.ShowPopup {
  opacity: 1;
  visibility: visible;
  overflow: scroll;
  z-index: 999;
}

.DevOps_Environment_container {
  margin-top: 30px;
}
.DevOps_Environment_container .title h1, .DevOps_Environment_container .title h3 {
  font-size: 36px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 45px;
  letter-spacing: -0.01em;
  color: #142A6E;
  padding-bottom: 15px;
  text-align: center;
}
.DevOps_Environment_container .content {
  margin-top: 30px;
}
.DevOps_Environment_container .content .list_content {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 70px;
  align-items: flex-start;
}
.DevOps_Environment_container .content .list_content .list_point {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  grid-gap: 25px;
}
.DevOps_Environment_container .content .list_content .list_point span {
  display: block;
  width: 15px;
  height: 15px;
  background-color: rgba(255, 80, 64, 0.9);
  border-radius: 50%;
}
.DevOps_Environment_container .content .list_content .list_point h5 {
  font-size: clamp(24px, 4vw, 18px);
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 28px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: rgba(255, 80, 64, 0.9);
}
.DevOps_Environment_container .content .list_content .text_content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #383838;
}
.DevOps_Environment_container .content hr {
  margin-bottom: 30px;
}

.Mobile_App_Benefits_Container {
  background: #F6F9FF;
  padding: 80px 0;
}
.Mobile_App_Benefits_Container .Mobile_App_Benefits_Section .title h2, .Mobile_App_Benefits_Container .Mobile_App_Benefits_Section .title h1 {
  font-size: clamp(32px, 4vw, 36px);
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 45px;
  letter-spacing: -0.01em;
  color: #142A6E;
  text-align: center;
  text-transform: capitalize;
}
.Mobile_App_Benefits_Container .Mobile_App_Benefits_Section .title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #383838;
  padding: 15px 0 0;
}
.Mobile_App_Benefits_Container .Mobile_App_Benefits_Section .Benefits_section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 0 30px;
}
.Mobile_App_Benefits_Container .Mobile_App_Benefits_Section .Benefits_section .Benefits_card {
  background: rgba(185, 194, 254, 0.6);
  border: 1px solid #B9C2FE;
  box-shadow: 0 3px 10px -3px rgba(0, 0, 0, 0.7098039216);
  border-radius: 5px;
  padding: 20px 15px;
  width: 380px;
  height: 300px;
  margin-top: 40px;
}
.Mobile_App_Benefits_Container .Mobile_App_Benefits_Section .Benefits_section .Benefits_card .header {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.Mobile_App_Benefits_Container .Mobile_App_Benefits_Section .Benefits_section .Benefits_card .header span {
  display: block;
  width: 100%;
  border: 1.5px solid #FFFFFF;
  background: #ffffff;
}
.Mobile_App_Benefits_Container .Mobile_App_Benefits_Section .Benefits_section .Benefits_card .header h2 {
  font-size: 40px;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  line-height: 59px;
  color: #142A6E;
}
.Mobile_App_Benefits_Container .Mobile_App_Benefits_Section .Benefits_section .Benefits_card .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.02em;
  color: #383838;
}

.midcontent_section {
  background: #ecf2ff;
  margin: 30px auto 40px;
  padding: 20px 0;
}
.midcontent_section h5 {
  font-size: clamp(28px, 4vw, 30px);
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 45px;
  letter-spacing: -0.01em;
  color: #142a6e;
  text-transform: capitalize;
  text-align: start;
}
.midcontent_section p {
  font-weight: 400;
  font-size: clamp(18px, 3vw, 20px);
  line-height: 34px;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.01em;
  color: #383838;
  padding-bottom: 10px;
}
.midcontent_section .Service_subpage_Content {
  background: #ecf2ff;
  text-align: center;
  padding-top: 30px;
}
.midcontent_section .Service_subpage_Content h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  text-align: justify;
  -moz-text-align-last: center;
       text-align-last: center;
  -webkit-hyphens: auto;
  hyphens: auto;
  letter-spacing: -0.01em;
  width: 80%;
  margin: auto;
}

.services_paragraph {
  background: #ecf2ff;
  margin: 30px auto 40px;
  padding: 20px 0;
}
.services_paragraph .services_heading {
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 45px;
  letter-spacing: -0.01em;
  color: #142a6e;
  padding-bottom: 10px;
  text-align: center;
}
.services_paragraph .services_title {
  font-size: clamp(32px, 3vw, 38px);
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 45px;
  letter-spacing: -0.01em;
  color: #e74c45;
  padding-bottom: 20px;
  text-align: center;
  text-transform: capitalize;
}
.services_paragraph .services_content .list_card {
  display: flex;
  align-items: start;
  grid-gap: 25px;
  padding-bottom: 30px;
}
.services_paragraph .services_content .list_card .card_icon img {
  width: 55px;
}
.services_paragraph .services_content .list_card .card_content h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
  letter-spacing: -0.01em;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 0;
}
.services_paragraph .services_content .list_card .card_content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
  letter-spacing: -0.01em;
  margin: 0;
  color: #383838;
}

.Privacy_Policy {
  margin-top: 6em;
}
.Privacy_Policy h2 {
  clear: both;
  font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  line-height: 1.3;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  font-weight: 700;
  color: #205493;
  font-size: 1.8rem;
}
.Privacy_Policy h4 {
  color: #205493;
}
.Privacy_Policy .services {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 15px 15px;
  margin-bottom: 15px;
  background-color: white;
}
.Privacy_Policy .services h4 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Merriweather", "Georgia", "Cambria", "Times New Roman", "Times", serif;
  line-height: 1.3;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}
.Privacy_Policy .services p {
  line-height: 1.5;
  margin-bottom: 1em;
  margin-top: 1em;
  font-size: 16px;
}
.Privacy_Policy .services:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2901960784);
}

.main-footer {
  background-color: #205493;
  color: white;
  margin-top: 0px;
  text-align: center;
}
.main-footer p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 1em;
  margin-top: 1em;
}

.modal {
  margin: 15px auto;
}

.modal-dialog {
  margin: 0 auto !important;
}

.modal, .modal-dialog .modal-content {
  height: calc(100vh - 30px) !important;
}

.float_right {
  display: block;
  float: right;
  width: 41%;
  max-width: 100%;
  margin-left: 25px;
  margin-bottom: 5px;
}

.float_left {
  display: block;
  float: left;
  width: 41%;
  max-width: 100%;
  margin-right: 25px;
  margin-bottom: 5px;
}

.service_mob_title {
  display: none;
}

.Ai_tool_banner_img {
  background-image: url(/images/Ai-testing-banner.webp);
  background-position: center;
}

.About_Ai_content {
  background-color: rgb(21, 43, 111);
  color: #FFF;
  border-radius: 15px;
  margin: 50px 0 30px;
  box-shadow: 0 0 2rem 0.5rem rgba(21, 43, 111, 0.2156862745);
}
.About_Ai_content .content {
  padding: 20px 30px;
}
.About_Ai_content .content p {
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.3px;
  text-align: justify;
  -moz-text-align-last: center;
       text-align-last: center;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.About_Ai_content .content p i {
  font-size: 40px;
  color: #ff5040;
  transition: 0.5s;
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
  /* Styles for Desktops */
  .Contact_Form_container .Contact_Form_section {
    grid-gap: 5px;
  }
  .Contact_Form_container .Contact_Form_section .Form_assets img {
    height: 618px;
  }
  .Contact_Form_container .Contact_Form_section .Form_content {
    padding: 30px 20px;
  }
  .office_location_section {
    margin-bottom: 40px;
  }
  .office_location_section .title h1 {
    font-weight: 500;
    line-height: 59px;
    letter-spacing: 0.01em;
    color: #152B6F;
    font-size: 40px;
    font-family: "Oswald", sans-serif;
    margin: 20px auto 40px;
  }
  .office_location_section .indian_location .location_container .address_box,
  .office_location_section .united_states_location .location_container .address_box {
    transform: translate(0%, 20%);
  }
  .office_location_section .united_states_location .address_box {
    transform: translate(0%, 23%) !important;
  }
  .Right_Align_Container .development_section .content_box,
  .Left_Align_Container .development_section .content_box {
    width: 40%;
  }
  .Right_Align_Container .development_section .development_list_section,
  .Left_Align_Container .development_section .development_list_section {
    width: 63%;
  }
  .rad_gradient_clients_bg {
    background: radial-gradient(#c7d4ff 11%, transparent 72%, #ffffff 42%);
    background-position: right 0% bottom 10%;
    background-size: 58% 39%;
    background-repeat: no-repeat;
  }
  .Right_Align_Container .development_section .development_list_section .development_list,
  .Left_Align_Container .development_section .development_list_section .development_list {
    margin: 15px;
  }
  .Agile_Software_Services .Agile_service_container .service_card p {
    width: 90%;
  }
  .Contact_Form_container {
    width: 95% !important;
  }
  .footer_container .footer_section {
    justify-content: flex-start;
  }
  .quote_section .quote_container {
    grid-gap: 60px;
  }
  .Our_Service_Container .content_box .heading_titles {
    width: 440px;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_header .header_part span {
    width: 210px;
    height: 210px;
  }
  .TechnoGems_Agile_container .TechnoGems_Agile_section {
    width: 85%;
  }
  .rad_gradient_clients_bg {
    background-size: 58% 30% !important;
  }
}
@media only screen and (max-width: 1440px) {
  .bg_box {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1440px) {
  .midcontent_section p {
    font-size: 18px;
  }
  header .logo_box img {
    width: 230px;
    transform: translateY(3px);
  }
  header .nav_bar .nav_menu .nav_list {
    grid-gap: 15px;
  }
  header .nav_bar .nav_menu .nav_list li .nav_links {
    font-size: 14px;
  }
  header .nav_bar .nav_menu .nav_list li .nav_btn {
    padding: 10px 15px;
  }
  .client_logo_container {
    width: 100%;
  }
  .client_logo_container .logo_title {
    width: 12%;
    padding: 10px;
  }
  .client_logo_container .logo_section {
    width: 100%;
  }
  .footer_container .footer_section .footer_box .footer_title {
    padding-bottom: 15px;
  }
  .Contact_Form_container .Contact_Form_section .Form_assets img {
    height: 615px;
  }
  .Contact_Form_container .Contact_Form_section .Form_content {
    padding: 30px 20px;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_body {
    height: 490px;
  }
  .rad_gradient_clients_bg {
    background: radial-gradient(#c7d4ff 11%, transparent 72%, #ffffff 42%);
    background-position: right 0% bottom 10%;
    background-size: 58% 39%;
    background-repeat: no-repeat;
  }
  .Right_Align_Container .development_section .development_list_section,
  .Left_Align_Container .development_section .development_list_section {
    width: 65%;
  }
  .Right_Align_Container .development_section .content_box,
  .Left_Align_Container .development_section .content_box {
    width: 37%;
  }
  .Right_Align_Container .development_section .asset_box img,
  .Left_Align_Container .development_section .asset_box img {
    width: 100%;
  }
  .article_page_banner .article_section {
    width: 55%;
  }
}
@media only screen and (max-width: 1024px) {
  header .nav_bar .nav_menu {
    grid-gap: 20px;
  }
  header .logo_box img {
    width: 240px;
  }
  .client_logo_container {
    width: 100%;
  }
  .client_logo_container .logo_title {
    width: 12%;
    padding: 0;
  }
  .client_logo_container .logo_section {
    width: 100%;
  }
}
@media only screen and (min-width: 744px) and (max-width: 1024px) and (orientation: portrait) {
  .float_right {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .float_left {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .service_mob_title {
    display: block;
  }
  .service_desk_title {
    display: none;
  }
  .Hero_Banner_Height {
    height: auto !important;
  }
  .ShowMobile {
    display: block;
  }
  .ShowDesktop {
    display: none;
  }
  .show-nav {
    -webkit-clip-path: circle(100%) !important;
            clip-path: circle(100%) !important;
    z-index: 99;
  }
  .Hero_Container .hero_section .hero_content .content h1 {
    font-size: 34px;
    line-height: 56px;
  }
  .Hero_Container .hero_section .hero_content .content p {
    width: 100%;
    padding-bottom: 20px;
  }
  header .logo_box img {
    width: 200px;
  }
  header .nav_schedule_btn {
    width: 100%;
    margin-left: auto;
    margin-top: 40px;
  }
  header .nav_bar .nav_menu .nav_list {
    grid-gap: 20px;
  }
  header .nav_bar .nav_menu .nav_list li .nav_links {
    font-size: 13px;
  }
  header .schedul_button .nav_btn {
    font-size: 13px;
  }
  header .logo_box {
    position: relative;
    z-index: 999;
  }
  header .logo_box img {
    width: 220px;
  }
  header .nav_bar {
    display: flex;
    align-items: center;
    position: fixed;
    position: relative;
    height: 65px;
    width: 100%;
    background: #fff;
  }
  header .nav_bar .Hamburger {
    display: block;
  }
  header .nav_bar .Hamburger {
    z-index: 9999;
  }
  header .nav_bar .Hamburger ion-icon {
    font-size: 28px;
  }
  header .nav_bar .nav_menu {
    position: fixed;
    grid-gap: 15px;
    height: -moz-max-content;
    height: max-content;
    background: #fff;
    padding: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    text-align: start;
    -webkit-clip-path: circle(0% at 100% 0%);
            clip-path: circle(0% at 100% 0%);
    transition: all 1s cubic-bezier(0.17, 0.67, 1, 1.23);
    z-index: 99;
    flex-flow: column;
  }
  header .nav_bar .nav_menu .nav_list {
    transform: translateY(65px);
    flex-direction: column;
    grid-gap: 30px;
    text-align: start;
    padding-bottom: 50px;
    justify-content: start;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  header .nav_bar .nav_menu .nav_list li {
    align-self: auto;
  }
  header .nav_bar .nav_menu .nav_list li span {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .nav_bar .nav_menu .nav_list li .dropdown {
    position: relative;
    transition: none;
    padding: 0;
    display: none;
    transform: translate3d(20px, 0, 0) !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }
  header .nav_bar .nav_menu .nav_list li .dropdown li:hover {
    transform: translateX(0);
  }
  header .nav_bar .nav_menu .nav_list li .drop_arrow {
    display: inline;
    font-size: 24px;
    cursor: pointer;
  }
  header .nav_bar .nav_menu .nav_list li .desk_drop_arrow {
    display: none;
  }
  .Web_App_Development {
    margin-left: 0;
  }
  .WWA_section .section_three img {
    height: 100%;
  }
  .WWA_section .section_three,
  .WWA_section .section_two {
    grid-gap: 20px;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_body {
    height: 590px;
  }
  .Team_Progress_Container .Team_Progress_Cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer_container .footer_section {
    justify-content: flex-start;
  }
  .case_studies .casestudies_container .casestudies_section .cards .content {
    padding: 20px !important;
  }
  .Agile_Software_Services .Agile_service_container .service_card p {
    width: 100%;
  }
  .Mob_Our_LMS_Serivce .container_box {
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    box-shadow: -3px -5px 13px rgba(0, 0, 0, 0.08), -1px 5px 13px rgba(0, 0, 0, 0.11);
    padding: 20px;
  }
  .Mob_Our_LMS_Serivce .container_box .title h1 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.01em;
    color: #142A6E;
  }
  .Mob_Our_LMS_Serivce .container_box .content h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #E74C45;
  }
  .Mob_Our_LMS_Serivce .container_box .content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: justify;
    -webkit-hyphens: auto;
            hyphens: auto;
    letter-spacing: -0.01em;
    color: #142A6E;
  }
  .quote_section .quote_container {
    grid-gap: 30px;
  }
  .Contact_Form_container .Contact_Form_section .Form_content {
    width: 100%;
  }
  .Contact_Form_container .Contact_Form_section .Form_assets {
    display: none;
  }
  .office_location_section .row {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .office_location_section .indian_location .location_container img,
  .office_location_section .united_states_location .location_container img {
    width: 100%;
  }
  .office_location_section .indian_location .location_container .address_box,
  .office_location_section .united_states_location .location_container .address_box {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    margin-left: auto;
    margin-right: auto;
    width: 300px; /* Need a specific value to work */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translate(0%, -50%);
    margin: auto;
    height: 370px;
  }
  .office_location_section .united_states_location {
    transform: translateY(-0px);
  }
  .office_location_section .united_states_location .address_box {
    transform: translate(0%, -50%) !important;
    right: 25%;
  }
  .office_location_section .indian_location .location_container {
    margin-bottom: 170px;
  }
  .office_location_section .united_states_location .location_container {
    margin-bottom: 230px;
  }
  .Right_Align_Container,
  .Left_Align_Container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
  }
  .Right_Align_Container ul,
  .Left_Align_Container ul {
    padding-left: 0 !important;
    width: 100%;
    margin: 15px 20px 25px !important;
  }
  .Right_Align_Container .development_section,
  .Left_Align_Container .development_section {
    position: relative;
    flex-flow: column;
    height: 100%;
    padding: 0 30px;
  }
  .Right_Align_Container .development_section .mob_title,
  .Left_Align_Container .development_section .mob_title {
    font-size: 36px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    line-height: 45px;
    letter-spacing: -0.01em;
    color: #142A6E;
    padding: 20px 0;
    width: 100%;
    display: block;
  }
  .Right_Align_Container .development_section .content_box,
  .Left_Align_Container .development_section .content_box {
    padding: 30px 0px;
    width: 100%;
  }
  .Right_Align_Container .development_section .content_box h1,
  .Left_Align_Container .development_section .content_box h1 {
    display: none;
  }
  .Right_Align_Container .development_section .asset_box,
  .Left_Align_Container .development_section .asset_box {
    z-index: 9;
    width: 100%;
  }
  .Right_Align_Container .development_section .asset_box img,
  .Left_Align_Container .development_section .asset_box img {
    transform: translateY(0);
    width: 100%;
  }
  .Right_Align_Container .development_section .development_list_section,
  .Left_Align_Container .development_section .development_list_section {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    transform: translateX(0);
  }
  .Right_Align_Container .development_section .development_list_section .development_list li,
  .Left_Align_Container .development_section .development_list_section .development_list li {
    padding: 10px 0;
  }
  .white_application_container .row {
    flex-flow: column;
  }
  .white_application_container .row .content_box,
  .white_application_container .row .asset_box {
    width: 100%;
  }
  .white_application_container .row .content_box .content,
  .white_application_container .row .asset_box .content {
    width: 100%;
    text-align: start;
  }
  .white_application_container .asset_box img {
    margin-top: 40px;
    border-radius: 10px;
  }
  .crm_platform_container .platform_sectioon {
    margin-top: 20px;
    border-radius: 35px;
    width: 100%;
  }
  .crm_platform_container .platform_sectioon .content_box {
    width: 100%;
    margin: auto;
  }
  .crm_platform_container .platform_sectioon .content_box .content {
    width: 100%;
  }
  .crm_platform_container .platform_sectioon .content_box img {
    display: block;
    margin-top: 40px;
    border-radius: 10px;
  }
  .crm_platform_container .row {
    flex-flow: column-reverse;
  }
  .crm_platform_container .asset_box img {
    display: none;
  }
  .Devops_Service_container .asset_box img {
    display: none;
  }
  #Web_App_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards,
  #Agile_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards,
  #LMS_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards,
  #Dev_Ops_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards {
    justify-items: center;
  }
  #Web_App_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child,
  #Agile_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child,
  #LMS_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child,
  #Dev_Ops_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child {
    grid-column-start: auto;
    grid-column-end: auto;
    width: 100%;
  }
  .rad_gradient_clients_bg {
    background-size: 55% 27%;
    background-position: right 5% bottom 12%;
  }
  .Contact_popup .Contact_Form_container {
    top: 30%;
  }
  .Operating_System_Section .Operating_System_Cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .product_hero {
    background: linear-gradient(95deg, #142A6E 8.91%, #5E76E3 64.22%, #9BA8FF 102.55%);
  }
  .midcontent_section p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
  .Contact_Form_container {
    width: 98%;
  }
  header .logo_box img {
    width: 210px;
  }
  header .nav_schedule_btn {
    margin-left: 0;
  }
  header .nav_bar .nav_menu .nav_list {
    grid-gap: 15px;
  }
  header .nav_bar .nav_menu .nav_list li .nav_links {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1024px) and (max-height: 1366px) {
  .article_page_banner .article_section {
    width: 70%;
  }
}
@media only screen and (max-width: 1280px) and (max-height: 800px) {
  header .nav_bar .nav_menu .nav_list {
    grid-gap: 10px;
  }
  header .nav_bar .nav_menu .nav_list li .nav_links {
    font-size: 15px;
  }
  .midcontent_section p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .Right_Align_Container,
  .Left_Align_Container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
  }
  .Right_Align_Container ul,
  .Left_Align_Container ul {
    padding-left: 0 !important;
    margin: 15px 20px 25px !important;
    width: 100%;
  }
  .Right_Align_Container .development_section,
  .Left_Align_Container .development_section {
    position: relative;
    flex-flow: column;
    height: 100%;
    padding: 0px;
  }
  .Right_Align_Container .development_section .mob_title,
  .Left_Align_Container .development_section .mob_title {
    font-size: 36px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    line-height: 45px;
    letter-spacing: -0.01em;
    color: #142A6E;
    padding: 20px;
    width: 100%;
    display: block;
  }
  .Right_Align_Container .development_section .content_box,
  .Left_Align_Container .development_section .content_box {
    padding: 20px;
    width: 100%;
  }
  .Right_Align_Container .development_section .content_box h1,
  .Left_Align_Container .development_section .content_box h1 {
    display: none;
  }
  .Right_Align_Container .development_section .asset_box,
  .Left_Align_Container .development_section .asset_box {
    z-index: 9;
    width: 100%;
  }
  .Right_Align_Container .development_section .asset_box img,
  .Left_Align_Container .development_section .asset_box img {
    transform: translateY(0);
    width: 100%;
  }
  .Right_Align_Container .development_section .development_list_section,
  .Left_Align_Container .development_section .development_list_section {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    transform: translateX(0);
  }
  .Right_Align_Container .development_section .development_list_section .development_list li,
  .Left_Align_Container .development_section .development_list_section .development_list li {
    padding: 10px 0;
  }
}
@media only screen and (max-width: 991px) {
  .midcontent_section p {
    font-size: 16px;
  }
  .float_right {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .float_left {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .service_mob_title {
    display: block;
  }
  .service_desk_title {
    display: none;
  }
  .header_content h1 {
    line-height: 60px;
  }
  .Hero_Banner_Height {
    height: auto !important;
    padding: 50px 0;
  }
  .Hide_Mobile {
    display: none;
  }
  .alert_box {
    min-width: calc(100% - 30px);
    max-width: 40%;
  }
  .column_reverse {
    flex-direction: column-reverse;
  }
  .show-nav {
    -webkit-clip-path: circle(100%) !important;
            clip-path: circle(100%) !important;
    z-index: 9;
  }
  .section_border {
    border: none;
    box-shadow: none;
  }
  .header-container {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  header .logo_box {
    position: relative;
    z-index: 999;
  }
  header .logo_box img {
    width: 220px;
  }
  header .nav_schedule_btn {
    width: 100%;
    margin-left: auto;
    margin-top: 10%;
  }
  header .nav_bar {
    display: flex;
    align-items: center;
    position: fixed;
    position: relative;
    height: 65px;
    width: 100%;
    background: #fff;
    z-index: 2;
    justify-content: space-between;
  }
  header .nav_bar .Hamburger {
    display: block;
  }
  header .nav_bar .Hamburger {
    z-index: 9999;
  }
  header .nav_bar .Hamburger ion-icon {
    font-size: 28px;
  }
  header .nav_bar .nav_menu {
    position: fixed;
    flex-flow: column;
    grid-gap: 15px;
    height: -moz-max-content;
    height: max-content;
    background: #fff;
    padding: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    text-align: start;
    -webkit-clip-path: circle(0% at 100% 0%);
            clip-path: circle(0% at 100% 0%);
    transition: all 1s cubic-bezier(0.17, 0.67, 1, 1.23);
    z-index: -1;
  }
  header .nav_bar .nav_menu .nav_list {
    transform: translateY(65px);
    flex-direction: column;
    grid-gap: 30px;
    text-align: start;
    padding-bottom: 50px;
    justify-content: start;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  header .nav_bar .nav_menu .nav_list li {
    align-self: auto;
  }
  header .nav_bar .nav_menu .nav_list li span {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .nav_bar .nav_menu .nav_list li .dropdown {
    position: relative;
    transition: none;
    padding: 0;
    display: none;
    transform: translate3d(20px, 0, 0) !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none !important;
  }
  header .nav_bar .nav_menu .nav_list li .dropdown li:hover {
    transform: translateX(0);
  }
  header .nav_bar .nav_menu .nav_list li .drop_arrow {
    display: inline;
    font-size: 24px;
    cursor: pointer;
  }
  header .nav_bar .nav_menu .nav_list li .desk_drop_arrow {
    display: none;
  }
  .Hero_Container {
    width: 100%;
  }
  .Hero_Container .hero_section {
    background: #142a6e;
    height: 465px;
  }
  .Hero_Container .hero_section .hero_content {
    width: 100%;
  }
  .Hero_Container .hero_section .hero_content .content {
    width: 100%;
  }
  .Hero_Container .hero_section .hero_content .content h1 {
    line-height: 52px;
    font-weight: 400;
  }
  .Hero_Container .hero_section .hero_content .content p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding-bottom: 20px;
    width: 100%;
  }
  .Hero_Container .hero_section .hero_content .content .btn_box {
    font-weight: 500;
  }
  .client_logo_container {
    flex-direction: column;
    height: auto;
    width: 100%;
  }
  .client_logo_container .logo_title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 10px;
  }
  .client_logo_container .logo_section {
    box-shadow: 0px 3px 4px rgba(205, 205, 205, 0.2);
    border-top: 0.5px solid #c6c6c6;
    width: 100%;
  }
  .client_logo_container .logo_section .logo_slider {
    grid-gap: 30px;
  }
  .about_container {
    flex-direction: column;
  }
  .about_container .content_section {
    width: 100%;
  }
  .about_container .asset_section {
    align-self: center;
  }
  .about_container .asset_section img {
    width: 100%;
  }
  .achievement_section {
    justify-content: center;
    padding: 0;
    padding-bottom: 20px;
    grid-gap: 35px;
  }
  .achievement_section .achievement_box {
    width: 370px;
    height: 240px;
  }
  .client_review .client_review_section {
    margin: 0px 15px 70px;
  }
  .client_review .client_review_section .slider_container {
    margin-left: auto;
    padding-top: 0;
  }
  .client_review .client_review_section .slider_container .slider_section .slider_card {
    width: 100%;
  }
  .client_review .client_review_section .slider_container .slider_section .slider_card .description {
    text-align: justify;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
  .product_container .products_section {
    max-width: 100%;
  }
  .product_container .products_section .product_card {
    width: 100%;
    height: 330px;
  }
  .WWA_section .section_three,
  .WWA_section .section_two {
    flex-wrap: wrap;
  }
  .WWA_section .section_three img,
  .WWA_section .section_two img {
    height: 100%;
  }
  .WWA_section .WWA_content {
    flex: 0 0 auto;
    width: 100%;
  }
  .WWA_section .WWA_asset {
    flex: 0 0 auto;
    width: 100%;
  }
  .signup {
    width: 100%;
    background: linear-gradient(360deg, #c7d4ff 0, #adc1ff 10.35%, #152b6f 65.11%);
    padding: 30px;
  }
  .signup .container {
    flex-direction: column;
  }
  .signup .content_section {
    text-align: center;
  }
  .signup .content_section .signup_box {
    flex-direction: column;
    grid-gap: 30px;
    align-items: center;
  }
  .signup .content_section .signup_box .input_field input {
    width: calc(100vw - 200px);
    height: 50px;
  }
  .contact_form .form_container input {
    height: 45px !important;
  }
  .contact_form .form_container .form_left {
    padding-bottom: 0;
  }
  .contact_form .form_container .form_left .form_field {
    padding: 0;
  }
  .contact_form .form_container .form_right {
    padding-bottom: 40px;
  }
  .contact_form .form_container .form_right .form_field {
    padding: 0;
  }
  .contact_form .form_container .form_right .form_field .recaptcha {
    width: auto;
    margin: auto;
  }
  .contact_form .title_box h1 {
    padding-bottom: 10px;
  }
  .contact_form .title_box .description p {
    width: 90%;
    padding-bottom: 10px;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_body {
    height: 400px;
  }
  .footer_container .footer_section .footer_box .footer_title {
    padding-bottom: 20px;
  }
  .docManagement_container .asset_box .asset,
  .legacySystem_container .asset_box .asset,
  .MobileSolution_container .asset_box .asset,
  .LearningSolution_container .asset_box .asset {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .header_content {
    padding: 0;
  }
  .header_content span {
    width: 100%;
    padding: 0 0 30px;
  }
  .caseStudie_container .header_content span {
    padding: 0 10px 30px;
  }
  .caseStudie_hero_banner,
  .contact_hero_banner {
    background-position: center;
    background-image: url(/images/portfolio-banner-img-mob.webp);
  }
  .caseStudie_hero_banner .header_content,
  .contact_hero_banner .header_content {
    padding: 60px 0;
  }
  .case_studies .casestudies_container {
    padding: 0;
  }
  .case_studies .casestudies_container .casestudies_section .cards .content {
    padding: 0 15px;
  }
  .caseStudie_hero_section .content .h1 {
    display: grid;
  }
  .caseStudie_hero_section .content p {
    text-align: justify;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
  .projectGoal_container .projectGoal_list .project_list table tbody tr {
    grid-gap: 20px;
  }
  .quote_section .quote_container {
    flex-flow: column;
    grid-gap: 50px;
  }
  .quote_section .quote_container .content {
    text-align: start;
  }
  .quote_section .quote_container .content h1,
  .quote_section .quote_container .content h2 {
    line-height: 40px;
  }
  .quote_section .quote_container .content p {
    padding: 0;
  }
  .docManag_hero_banner,
  .Mobile_App_Hero_Banner,
  .web_App_Hero_Banner,
  .devops_Hero_Banner,
  .agile_Hero_Banner,
  .lms_Hero_Banner {
    background-position: left;
    padding-bottom: 50px;
  }
  .docManag_hero_banner .breadcrumb,
  .Mobile_App_Hero_Banner .breadcrumb,
  .web_App_Hero_Banner .breadcrumb,
  .devops_Hero_Banner .breadcrumb,
  .agile_Hero_Banner .breadcrumb,
  .lms_Hero_Banner .breadcrumb {
    margin-top: 0;
  }
  .technologies_container .texhnologie_section {
    padding: 20px 0 70px;
  }
  .technologies_container .texhnologie_section .technologie_title {
    display: none;
  }
  .technologies_container .texhnologie_section .technologie_asset {
    flex-flow: column;
    align-items: center;
    grid-gap: 30px;
  }
  .technologies_container .texhnologie_section .technologie_asset .mob_name {
    display: block;
    background: #FFF;
    width: 100%;
    height: 60px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .technologies_container .texhnologie_section .technologie_asset .mob_name h6 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #152B6F;
  }
  .technologies_container .texhnologie_section .technologie_asset .tech_box {
    height: 180px;
  }
  .result_container {
    padding-bottom: 30px;
  }
  .result_container .result_section {
    transform: translateY(0);
    flex-flow: column;
  }
  .result_container .result_section .box_one,
  .result_container .result_section .box_two,
  .result_container .result_section .box_three {
    transform: translateY(0);
  }
  .qoutes_container {
    height: 100%;
    padding: 40px 0;
    transform: translateY(0px);
  }
  .qoutes_container .container {
    margin-bottom: 0;
    padding: 50px 0 20px;
  }
  .qoutes_container .container .qoutes_text h1 {
    line-height: 50px;
    width: 100%;
  }
  .qoutes_container .container .qoutes_text h1::before {
    transform: translate(-15px, -52px);
  }
  .document_management_container .case_studies,
  .legacy_system_modernization .case_studies,
  .mobile_crm_solution .case_studies,
  .learning_management_solution .case_studies {
    margin-top: 0;
  }
  .Timecard_Prodcut .row {
    flex-flow: column-reverse;
  }
  .product_hero {
    background: linear-gradient(95deg, #142A6E 8.91%, #5E76E3 64.22%, #9BA8FF 102.55%);
  }
  .product_hero .product_container {
    padding: 35px 15px 35px;
  }
  .product_hero .product_container .row .content_box h1 {
    line-height: 48px;
  }
  .product_hero .product_container .row .content_box p {
    width: 100%;
  }
  .product_container .products_section .product_card:hover::after {
    opacity: 0;
    visibility: hidden;
  }
  .about_product_section {
    padding-bottom: 5px;
  }
  .about_product_section .about_product_Container {
    flex-flow: column;
    grid-gap: 30px;
  }
  .about_product_section .about_product_Container .asset_box,
  .about_product_section .about_product_Container .content_box {
    width: 100%;
  }
  .Products_Container {
    padding-top: 20px;
  }
  .Products_Container .row {
    grid-gap: 30px;
  }
  .Products_Container .content_box .btn_box {
    margin-top: 15px;
  }
  .Products_Container .asset_box {
    text-align: center;
  }
  .Services_Hero {
    background-image: url(/images/Services-Hero-Banner-mob.webp);
    margin-bottom: 15px;
    background-position: left;
  }
  .Services_Hero .Hero_Banner {
    padding: 40px 15px;
  }
  .docManagement_container .asset_box .asset img,
  .legacySystem_container .asset_box .asset img,
  .MobileSolution_container .asset_box .asset img,
  .LearningSolution_container .asset_box .asset img {
    height: 100%;
  }
  .Mobile_App_AboutUs .AboutUs_Section,
  .solution_aboutus .AboutUs_Section {
    flex-flow: column-reverse;
    grid-gap: 10px;
  }
  .Mobile_App_AboutUs .AboutUs_Section .content_box p,
  .solution_aboutus .AboutUs_Section .content_box p {
    line-height: 24px;
  }
  .Mobile_App_AboutUs .AboutUs_Section .asset_box h2, .Mobile_App_AboutUs .AboutUs_Section .asset_box h3,
  .solution_aboutus .AboutUs_Section .asset_box h2,
  .solution_aboutus .AboutUs_Section .asset_box h3 {
    display: block;
    font-size: 30px;
    font-weight: 500;
    line-height: 45px;
    font-family: "Oswald", sans-serif;
    letter-spacing: -0.01em;
    color: #142A6E;
    padding-bottom: 15px;
  }
  .Application_Process_container .Application_Process_Section .title_content p {
    text-align: justify;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
  .Application_Process_container .Application_Process_Section .Application_Process_Cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card {
    padding: 25px 20px;
  }
  .Team_Progress_Container .Team_Progress_Cards {
    grid-template-columns: repeat(2, 1fr);
    place-content: center;
    place-items: center;
  }
  .Team_Progress_Container .Team_Progress_Cards .Progress_Card:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .services_links .services_link {
    grid-template-columns: repeat(1, 1fr);
  }
  .ShowDesktop {
    display: none;
  }
  .Web_Application_Process .Application_Process_Container {
    padding: 10px 15px;
  }
  .Web_Application_Process .Application_Process_Container .Application_Process_Cards {
    padding: 30px 15px;
  }
  .Web_Application_Process .Application_Process_Container .Application_Process_Cards .Process_Card {
    width: 300px;
  }
  .ShowMobile {
    display: block;
  }
  .Web_App_Page .swiper-pagination-bullets.swiper-pagination-horizontal,
  .Agile_Software_Page .swiper-pagination-bullets.swiper-pagination-horizontal {
    padding-top: 15px;
  }
  .Web_App_Page .our_service_pagination span:before,
  .Agile_Software_Page .our_service_pagination span:before {
    width: 9px;
    height: 9px;
  }
  .Web_App_Page .our_service_pagination span,
  .Agile_Software_Page .our_service_pagination span {
    padding: 11px;
  }
  .Web_App_Page .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet,
  .Agile_Software_Page .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
  }
  .Agile_Software_Services .Agile_service_container {
    padding-left: 0;
  }
  .Agile_Software_Services .Agile_service_container .service_card {
    flex-flow: column;
    grid-gap: 30px;
  }
  .Agile_Software_Services .Agile_service_container .service_card p {
    margin: auto;
    width: 100%;
  }
  .Mob_Our_LMS_Serivce .container_box {
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    box-shadow: -3px -5px 13px rgba(0, 0, 0, 0.08), -1px 5px 13px rgba(0, 0, 0, 0.11);
    padding: 20px;
  }
  .Mob_Our_LMS_Serivce .container_box .title h1 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.01em;
    color: #142A6E;
  }
  .Mob_Our_LMS_Serivce .container_box .content h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #E74C45;
  }
  .Mob_Our_LMS_Serivce .container_box .content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: justify;
    -webkit-hyphens: auto;
            hyphens: auto;
    letter-spacing: -0.01em;
    color: #142A6E;
  }
  .blog_banner .Hero_Banner h1 {
    font-weight: 400;
  }
  .blog_banner .Hero_Banner p {
    font-weight: 400;
  }
  .blog_header_container .filter_search_section {
    flex-flow: column-reverse;
    padding: 0 15px;
  }
  .blog_header_container .filter_search_section .search_section {
    margin-bottom: 30px;
  }
  .blog_header_container .filter_search_section .search_section .search_box {
    border-left-width: 1px;
    border-radius: 5px;
    padding: 10px 20px;
  }
  .blog_header_container .filter_search_section .filter_box {
    border-radius: 5px;
  }
  .blog_header_container .filter_search_section .filter_dropdown {
    transform: translate(0, 0);
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
  .blog_Cards_Container .blog_Cards_Section .row {
    grid-gap: 30px;
  }
  .blog_Cards_Container .Blog_Card {
    padding: 15px;
  }
  .blog_Cards_Container .Blog_Card .content_box h3 {
    font-size: 26px;
  }
  .blog_Cards_Container .Blog_Card .content_box .date_time span {
    font-weight: 400;
  }
  .blog_Cards_Container .Blog_Card .content_box .card_info {
    flex-wrap: wrap;
    grid-gap: 40px 20px;
  }
  .Contact_Form_container {
    transform: translateY(-300px);
    width: calc(100% - 20px);
  }
  .Contact_Form_container .Contact_Form_section .Form_content {
    width: 100%;
    padding: 40px 5px 15px;
  }
  .Contact_Form_container .Contact_Form_section .Form_content .text_content h1 {
    text-align: center;
    padding: 10px 0 15px;
  }
  .Contact_Form_container .Contact_Form_section .Form_content .text_content p {
    margin-bottom: 0;
    text-align: center;
  }
  .Contact_Form_container .Contact_Form_section .Form_content .popup_close_btn {
    display: block;
  }
  .Contact_Form_container .Contact_Form_section .Form_assets {
    display: none;
  }
  .Contact_Form_container .Contact_Form_section .contact_form .form_container .submit_btn {
    justify-content: center;
    margin-left: 0;
  }
  .Contact_Form_container .Contact_Form_section .contact_form .form_container .row .form_left,
  .Contact_Form_container .Contact_Form_section .contact_form .form_container .row .form_right {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .Contact_Form_container .Contact_Form_section .contact_form .form_container .row .form_right {
    margin-top: 0;
  }
  .empty_space {
    height: 700px;
  }
  .office_location_section .indian_location .location_container img,
  .office_location_section .united_states_location .location_container img {
    width: 100%;
  }
  .office_location_section .indian_location .location_container .address_box,
  .office_location_section .united_states_location .location_container .address_box {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    /* Need a specific value to work */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translate(0%, -50%);
    margin: auto;
    height: 370px;
  }
  .office_location_section .united_states_location {
    transform: translateY(-0px);
  }
  .office_location_section .united_states_location .address_box {
    transform: translate(0%, -50%) !important;
    right: 25%;
  }
  .office_location_section .indian_location .location_container {
    margin-bottom: 170px;
  }
  .office_location_section .united_states_location .location_container {
    margin-bottom: 230px;
  }
  .description_Container .blog_content_section h6 {
    font-weight: 700;
  }
  .suggection_blogs_container {
    margin-bottom: 20px;
  }
  .Right_Align_Container,
  .Left_Align_Container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
  }
  .Right_Align_Container ul,
  .Left_Align_Container ul {
    padding-left: 0 !important;
    margin: 15px 20px 25px !important;
    width: 100%;
  }
  .Right_Align_Container .development_section,
  .Left_Align_Container .development_section {
    position: relative;
    flex-flow: column;
    height: 100%;
    padding: 0px;
  }
  .Right_Align_Container .development_section .mob_title,
  .Left_Align_Container .development_section .mob_title {
    font-size: 36px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    line-height: 45px;
    letter-spacing: -0.01em;
    color: #142A6E;
    padding: 20px;
    width: 100%;
    display: block;
  }
  .Right_Align_Container .development_section .content_box,
  .Left_Align_Container .development_section .content_box {
    padding: 20px;
    width: 100%;
  }
  .Right_Align_Container .development_section .content_box h1,
  .Left_Align_Container .development_section .content_box h1 {
    display: none;
  }
  .Right_Align_Container .development_section .content_box p,
  .Left_Align_Container .development_section .content_box p {
    text-align: justify;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
  .Right_Align_Container .development_section .asset_box,
  .Left_Align_Container .development_section .asset_box {
    z-index: 9;
    width: 100%;
  }
  .Right_Align_Container .development_section .asset_box img,
  .Left_Align_Container .development_section .asset_box img {
    transform: translateY(0);
    width: 100%;
  }
  .Right_Align_Container .development_section .development_list_section,
  .Left_Align_Container .development_section .development_list_section {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    transform: translateX(0);
  }
  .Right_Align_Container .development_section .development_list_section .development_list li,
  .Left_Align_Container .development_section .development_list_section .development_list li {
    padding: 10px 0;
  }
  .article_page_banner .article_section {
    width: calc(100% - 25px);
    margin: 40px auto 20px;
  }
  .article_page_banner .article_section .hero_content h1 {
    font-size: 40px;
    line-height: 68px;
  }
  .article_page_banner .article_section .hero_content p {
    font-size: 16px;
    padding-bottom: 30px;
    text-align: justify;
  }
  .article_page_banner .article_section .breadcrumb {
    grid-gap: 5px;
  }
  .article_page_banner .article_section .breadcrumb a,
  .article_page_banner .article_section .breadcrumb span {
    font-size: 15px;
  }
  .article_page_banner .article_section .breadcrumb i {
    transform: translateY(1px);
  }
  .white_application_container .row {
    grid-gap: 40px;
  }
  .white_application_container .row .content_box .content {
    width: 100%;
    text-align: start;
  }
  .white_application_container .asset_box img {
    border-radius: 5px;
    width: 70%;
    display: block;
    margin: auto;
  }
  .crm_platform_container .platform_sectioon {
    margin-top: 20px;
    border-radius: 35px;
  }
  .crm_platform_container .platform_sectioon .content_box {
    width: 100%;
    margin: auto;
  }
  .crm_platform_container .platform_sectioon .content_box .content {
    width: 100%;
  }
  .crm_platform_container .platform_sectioon .content_box img {
    display: block;
    border-radius: 5px;
    width: 70%;
    margin: 40px auto 0;
  }
  .crm_platform_container .row {
    flex-flow: column-reverse;
  }
  .crm_platform_container .asset_box img {
    display: none;
  }
  .article_content_section .column_reverse {
    flex-flow: column-reverse;
  }
  .article_content_section .row .content_box {
    padding-bottom: 45px;
  }
  .article_content_section .row .content_box p {
    text-align: justify;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
  .Contact_popup .Contact_Form_container {
    top: 35%;
  }
  .Devops_Service_container .content_box {
    width: calc(100% - 20px);
    margin: auto;
    border-radius: 5px;
  }
  .Devops_Service_container .asset_box img {
    display: none;
  }
  #Web_App_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards,
  #Agile_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards,
  #LMS_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards,
  #Dev_Ops_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards {
    justify-items: center;
  }
  #Web_App_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child,
  #Agile_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child,
  #LMS_Software_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child,
  #Dev_Ops_Page .Application_Process_container .Application_Process_Section .Application_Process_Cards .Process_Card:last-child {
    grid-column-start: auto;
    grid-column-end: auto;
    width: 100%;
  }
  .rad_gradient_clients_bg {
    background-size: 100% 14%;
    background-position: right 12% bottom 1%;
  }
  .Contact_popup .Contact_Form_container .Form_content .form_container .form_left {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .DevOps_Environment_container .content .list_content {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 25px;
  }
  .TechnoGems_Agile_container .TechnoGems_Agile_section {
    width: 100%;
  }
  .TechnoGems_Agile_container .TechnoGems_Agile_section .agile_list {
    flex-flow: column;
    grid-gap: 30px;
    padding: 0 15px;
  }
  .mid_content_section p {
    text-align: justify;
    -webkit-hyphens: auto;
            hyphens: auto;
  }
  .Services_page .quote_section .quote_container,
  .Mobile_App_Page .quote_section .quote_container,
  .Web_App_Page .quote_section .quote_container,
  .Dev_Ops_Page .quote_section .quote_container,
  .Agile_Software_Page .quote_section .quote_container,
  .LMS_Software_Page .quote_section .quote_container,
  .Solution_Page .quote_section .quote_container,
  .Government_Solutions_Page .quote_section .quote_container {
    padding: 15px;
  }
  #Solution_Page .Services_Hero {
    background-image: url(/images/solution-banner-img-mob.webp);
  }
  #Contact_Us_page .contact_hero_banner {
    background-image: url(/images/contact-us-banner-mob.webp);
  }
  .Mobile_App_Hero_Banner {
    background-image: url(/images/mobil_app_hero-mob.webp);
  }
  #Web_App_Page .web_App_Hero_Banner {
    background-image: url(/images/web-app-banner-mob.webp);
  }
  #Dev_Ops_Page .devops_Hero_Banner {
    background-image: url(/images/devops-banner-img-mob.webp);
  }
  #Agile_Software_Page .agile_Hero_Banner {
    background-image: url(/images/agile-banner-img-mob.webp);
  }
  #LMS_Software_Page .lms_Hero_Banner {
    background-image: url(/images/LMS-banner-img-mob.webp);
  }
  .modal {
    margin: 0 auto;
  }
  .modal-dialog {
    margin: 0 auto !important;
  }
  .modal, .modal-dialog .modal-content {
    height: calc(100vh - 0px) !important;
  }
  .modal-body {
    padding: 0 !important;
  }
  .About_Ai_content {
    border-radius: 10px;
    margin: 40px auto;
    width: calc(100% - 10px) !important;
  }
  .About_Ai_content .content {
    padding: 5px;
  }
}
@media only screen and (min-width: 641px) and (max-width: 767px) {
  .rad_gradient_clients_bg {
    background-position: right 12% bottom 1%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 743px) and (orientation: portrait) {
  .alert_box {
    flex-flow: column;
    text-align: center;
    padding: 20px 15px !important;
  }
  .lines,
  .lines:before,
  .lines:after,
  .lines_button.x2.close .lines:before,
  .lines_button.x2.close .lines:after {
    width: 30px;
  }
  .overflowHidden {
    overflow: hidden;
  }
  .client_logo_container .logo_section .logo_slider {
    grid-gap: 20px;
  }
  .product_container .products_section .product_card {
    width: 100%;
    height: 515px;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_header {
    height: 150px;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_header .header_part {
    grid-gap: 2px;
    height: auto;
    padding: 0 15px;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_header .header_part .title {
    text-align: left;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_header .header_part .asset {
    width: 100%;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_header .header_part .asset img {
    width: 155px;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_header .header_part span {
    width: 155px;
    height: 155px;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_header .header_part .title_overwrite h3 {
    line-height: 28px;
    letter-spacing: -0.2px;
  }
  .Ourteam .teamcard_container .card_section .cards .cards_body {
    padding: 40px 20px 50px;
    height: 670px;
  }
  .achievement_section .achievement_box {
    width: 100%;
  }
  .client_review .client_review_section {
    margin-bottom: 25px;
  }
  .client_review .client_review_section .slider_container {
    padding: 0;
  }
  .footer_container .footer_section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer_container .footer_section .footer_box {
    padding-bottom: 30px;
  }
  .footer_container .footer_section .footer_box .footer_title {
    padding-bottom: 10px;
  }
  .case_studies .casestudies_container .casestudies_section .cards .row {
    height: 500px;
  }
  .docManagement_container .asset_box .asset,
  .legacySystem_container .asset_box .asset,
  .MobileSolution_container .asset_box .asset,
  .LearningSolution_container .asset_box .asset {
    padding: 15px;
  }
  .docManagement_container .content_box .content,
  .legacySystem_container .content_box .content,
  .MobileSolution_container .content_box .content,
  .LearningSolution_container .content_box .content {
    padding-bottom: 30px;
  }
  .projectGoal_container {
    padding-top: 40px;
  }
  .projectGoal_container .projectGoal_circle .projectGoal_circle {
    width: 320px;
    height: 320px;
  }
  .projectGoal_container .projectGoal_circle .projectGoal_circle .goal_box img {
    width: 60px;
  }
  .projectGoal_container .projectGoal_circle .projectGoal_circle .goal_box h6 {
    font-size: 14px;
  }
  .projectGoal_container .projectGoal_circle .projectGoal_circle .actionable_data {
    transform: translate(0%, 63%);
  }
  .projectGoal_container .projectGoal_circle .projectGoal_circle .data_entry {
    transform: translate(-8%, 10%);
  }
  .qoutes_container .container .qoutes_text h1 {
    line-height: 40px;
    padding: 0 15px;
  }
  .Mobile_App_Hero_Banner,
  .web_App_Hero_Banner,
  .devops_Hero_Banner,
  .agile_Hero_Banner,
  .lms_Hero_Banner {
    background-position: bottom;
  }
  .Operating_System_Section .Operating_System_Cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .Operating_System_Section .Operating_System_Cards .Os_Card p {
    padding: 0;
  }
  .Web_Application_Process .Application_Process_Container .Application_Process_Cards {
    padding: 10px 15px;
  }
  .Web_Application_Process .Application_Process_Container .Application_Process_Cards .Process_Card {
    width: 100%;
  }
  .Agile_Software_Services .Agile_service_container {
    padding-left: 0;
  }
  .Agile_Software_Services .Agile_service_container .service_card {
    flex-flow: column;
    grid-gap: 25px;
  }
  .Agile_Software_Services .Agile_service_container .service_card p {
    width: 95%;
    margin: auto;
  }
  .back_link_Section {
    padding: 15px 0;
  }
  #Blog_Sub_Page .sub_blog_banner {
    background-position: center;
  }
  .signup .content_section .signup_box .input_field input {
    width: calc(100vw - 40px);
  }
  .blog_Cards_Container {
    transition: all 0.5s;
  }
  .blog_Cards_Container .blog_pagination {
    grid-gap: 20px;
  }
  .blog_Cards_Container .blog_pagination .preview,
  .blog_Cards_Container .blog_pagination .next {
    grid-gap: 3px;
    width: auto;
    padding: 10px;
  }
  .blog_Cards_Container .blog_pagination .preview span,
  .blog_Cards_Container .blog_pagination .next span {
    display: none;
  }
  .rad_gradient_clients_bg {
    background-size: 100% 7%;
  }
  .Contact_popup .Contact_Form_container {
    top: 0%;
    transform: translateY(0);
    width: 100%;
  }
  .Contact_popup .Contact_Form_container .Form_content {
    padding: 40px 5px 15px;
  }
  .Mobile_App_Benefits_Container .Mobile_App_Benefits_Section .Benefits_section .Benefits_card {
    width: 100%;
  }
  .docManagement_container .asset_box .asset,
  .legacySystem_container .asset_box .asset,
  .MobileSolution_container .asset_box .asset,
  .LearningSolution_container .asset_box .asset {
    width: 100%;
  }
  .docManagement_container .content_box .content,
  .legacySystem_container .content_box .content,
  .MobileSolution_container .content_box .content,
  .LearningSolution_container .content_box .content {
    width: 100%;
  }
  .white_application_container .asset_box img {
    width: 100%;
  }
  .crm_platform_container .platform_sectioon .content_box img {
    width: 100%;
  }
  .alert_box i {
    font-size: 30px;
  }
  .services_paragraph .services_heading {
    line-height: 40px;
  }
  .services_paragraph .services_content .list_card {
    flex-flow: column;
    align-items: center;
  }
  .services_paragraph .services_content .list_card .card_content h5 {
    text-align: center;
    font-size: 24px;
    padding-bottom: 10px;
  }
  .services_paragraph .services_content .list_card .card_icon img {
    width: 110px;
  }
  .article_page_banner .article_section {
    width: calc(100% - 10px);
    margin: 30px auto 10px;
    padding: 10px 15px;
  }
  .article_page_banner .article_section .hero_content p {
    padding-bottom: 0;
  }
  .article_page_banner .article_section .hero_content h1 {
    font-size: 34px;
    line-height: 48px;
  }
  .article_page_banner .article_section .breadcrumb {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 425px) {
  .Team_Progress_Container .Team_Progress_Cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .Team_Progress_Container .Team_Progress_Cards .Progress_Card:last-child {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .blog_header_container .filter_search_section .filter_dropdown .filterdropbox {
    flex-flow: column;
    grid-gap: 0;
  }
  .client_pagination span,
  .casestudies_pagination span,
  .our_service_pagination span {
    padding: 10px;
  }
  .client_review .client_review_section .slider_container .slider_section .slider_card {
    height: 650px;
  }
}