/* @font-face {
  font-family: calibri;
  src: url("../fonts/Calibri.ttf");
}
@font-face {
  font-family: popping-black;
  src: url("../fonts/Poppins-Black.ttf");
}

body,p{
  font-family: calibri;
}
h1,h2,h3,h4,h5,h6{
  font-family: popping-black;
} */

/*=======================================
         1. Nodejs Page
====================================== */
/* Banner Section
====================================== */
.banner-img {
  animation: up-down 2s infinite alternate-reverse;
}

@keyframes up-down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.section-shadow {
  box-shadow: 0 15px 30px rgba(66, 66, 66, 0.04);
}

/* Technology Breadcamb Section
====================================== */
.menu-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.66);
}

/* Technology Breadcamb Section
====================================== */
.breadcumb-section {
  z-index: 1;
}

.bradcamb-wrap {
  position: relative;
  padding: 31px;
  width: auto;
  top: -57px;
  border-radius: 10px;
  background: var(--bs-white);
  box-shadow: 3px 4px 14px -3px #d0d0d0;
  margin-bottom: -91px;
}

.breadcumb-menu li {
  display: inline-block;
}

.breadcumb-divid i {
  font-size: 14px;
  color: var(--bs-theme-blue);
}

.breadcumb-links:hover {
  color: var(--bs-theme-orange);
}

.breadcumb-divid {
  padding: 0 7px;
}

.breadcumb-active {
  color: var(--bs-theme-blue2);
}

/* About Section
====================================== */
.about-banner-section {
  padding: 200px 0 110px;
  background-position: center;
  background-size: cover;
  background: linear-gradient(180.21deg,
      #fff9f9 -64.58%,
      rgba(255, 255, 255, 0.1) 115.31%),
    linear-gradient(90deg, #f7d29b 0, #aa93ff 48%, #4a6ce1 100%);
}

.hero-banner-content {
  position: relative;
  z-index: 1;
}

/* Technology Aboutus Section
====================================== */
.technology-aboutus {
  background: var(--bg-gray);
  padding: 100px 0 70px;
}

.technology-aboutus-wrapper {
  border-radius: 50px 50px 0 0;
  background: var(--bs-white);
  padding: 40px 20px 70px 20px;
}

.technology-aboutus-image {
  animation: up-down 2s infinite alternate-reverse;
}

@media only screen and (min-width: 280px) {
  .about-banner-section {
    padding: 120px 0 110px;
  }
}

@media only screen and (min-width: 576px) {
  .technology-aboutus-wrapper {
    padding: 40px 25px 70px 25px;
  }
}

@media only screen and (min-width: 992px) {
  .technology-aboutus-wrapper {
    padding: 70px 60px 70px 60px;
    border-radius: 88px 88px 0 0;
  }
}

@media only screen and (min-width: 1200px) {
  .about-banner-section {
    padding: 190px 0 110px;
  }
}

/* Technology funfacts Section
====================================== */
.technology-funfact-section {
  background: linear-gradient(90deg,
      var(--bs-theme-orange3) 0,
      var(--bs-theme-orange) 100%);
  padding: 30px 0;
  background: linear-gradient(90deg,
      var(--bs-blue) 0,
      var(--bs-primary-darkblue) 100%);
}

.technology-funfact-section .row {
  align-items: center;
}

.funfact-col:nth-child(1),
.funfact-col:nth-child(2),
.funfact-col:nth-child(3) {
  margin-bottom: 45px;
}

.tech-funfact-icon {
  padding-right: 20px;
}

.tech-funfact-details img {
  transition: 0.5s all ease-in-out;
}

.tech-funfact-details:hover img {
  transform: scaleX(-1);
}

.technology-funfact-section .col-xl-3:last-child .tech-funfact-details::after {
  display: none;
}

@media only screen and (min-width: 576px) {
  .tech-funfact-details::after {
    background: var(--bs-white);
    width: 2px;
    height: 115%;
    content: "";
    top: -2px;
    position: absolute;
    right: -10px;
  }

  .funfact-col:nth-child(3) {
    margin-bottom: 0;
  }

  .technology-funfact-section .col-xxl-3:nth-child(2) .tech-funfact-details::after {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .tech-funfact-details::after {
    right: 37px;
  }
}

@media only screen and (min-width: 992px) {
  .tech-funfact-details::after {
    right: 85px;
  }
}

@media only screen and (min-width: 1200px) {
  .tech-funfact-details::after {
    right: 3px;
  }

  .technology-funfact-section .funfact-col {
    margin-bottom: 0;
  }

  .technology-funfact-section .col-xxl-3:nth-child(2) .tech-funfact-details::after {
    display: block;
  }
}

@media only screen and (min-width: 1400px) {
  .tech-funfact-details::after {
    right: 18px;
  }
}

/* Technology Aboutus Section
====================================== */
.development-cta-wrap {
  background: linear-gradient(90deg,
      var(--bs-theme-blue1) 0,
      var(--bs-theme-blue1) 27%,
      var(--bs-theme-blue) 55%,
      var(--bs-primary-darkblue) 100%);
  border-radius: 10px;
  padding: 45px 50px;
}

.development-btns {
  background: var(--bs-white);
  padding: 15px 20px;
  border-radius: 6px;
  font-weight: 600;
  color: var(--bs-primary-blue);
  transition: 0.5s all ease-in-out;
  border: 1px solid var(--bs-white);
}

.development-btns:hover {
  background: transparent;
  color: var(--bs-white);
}

/* Technology funfacts Section
====================================== */
.cta-section.section-padding {
  padding: 70px 0;
}

.cta-wrapper {
  position: relative;
  border-radius: 8px;
  padding: 55px 15px 10px;
  display: inline-block;
  width: 100%;
  background-color: var(--bs-white);
  border: 1px solid var(--bs-gray-500);
  overflow: hidden;
}

.cta-wrapper::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 165px;
  width: 165px;
  background-size: contain;
  z-index: 1;
  background: var(--bs-theme-orange6);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
}

.cta-wrapper::after {
  content: "";
  position: absolute;
  bottom: -233px;
  z-index: 1;
  left: 0;
  height: 303px;
  width: 346px;
  background-size: contain;
  background: var(--bs-theme-blue7);
  border-radius: 50%;
  right: 0;
  margin: 0 auto;
}

.cta-heading,
.cta-text,
.cta-btns {
  position: relative;
  z-index: 9;
}

.cta-heading {
  color: var(--bs-black);
}

.cta-btns .arrowRight::before {
  top: 3px;
}

.cta-img {
  position: relative;
  right: -31px;
  bottom: 0;
  animation: up-down 2s infinite alternate-reverse;
  width: 200px;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .cta-wrapper {
    padding: 55px 30px 50px;
  }

  .cta-wrapper::before {
    left: auto;
    right: -8px;
  }

  .cta-img {
    position: absolute;
  }
}

@media only screen and (min-width: 992px) {
  .cta-wrapper {
    padding: 55px 55px 50px;
  }

  .cta-wrapper::before {
    right: 31px;
  }

  .cta-img {
    right: 0;
  }
}

/* Platter  Section 
=================================*/
.tabs-content {
  opacity: 0;
  display: none;
  margin: 3em 0;
}

.tabs-content.active {
  opacity: 1;
  display: block;
}

.technology-tap-section {
  background: var(--bg-gray);
}

.technology-row {
  background: var(--bg-gray);
  border-radius: 15px;
}

.technology-left {
  background: var(--bs-white);
  padding: 15px;
}

.technology-items {
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-family: var(--bs-font-resolve);
  color: var(--bs-black);
  font-size: 19px;
  transition: 0.5s all ease-in-out;
}

.technology-items.active {
  color: var(--bs-primary-blue);
  padding-left: 15px;
}

.technology-items.active .technology-tabs-links {
  box-shadow: 0 6px 10px -10px var(--bs-black) !important;
  border: 1px solid var(--bs-primary-blue) !important;
  z-index: 1;
}

.technology-tabs-links {
  background: var(--bs-white);
  width: 100%;
  padding: 7px 15px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid var(--bs-white);
  display: flex;
  align-items: center;
}

.technology-icon img {
  margin: 0 10px 0 0;
  width: 45px;
  transition: 0.5s all ease-in-out;
}

.technology-icon img {
  filter: brightness(0.1);
}

.technology-items.active img {
  filter: brightness(1);
  transform: rotateY(360deg);
}

.technology-right {
  padding: 30px 30px 49px;
  border-radius: 15px;
  background: linear-gradient(0, #0753ca 0, #0ce3f9 100%);
  background: linear-gradient(0, #0753ca 0, #0cabf9 100%);
}

.technology-title {
  display: block;
  margin: 30px 0 15px;
}

.technology-img {
  filter: brightness(0) invert(1);
}

.filter_white {
  filter: brightness(0) invert(1);
}

@media only screen and (min-width: 576px) {
  .technology-tabs::after {
    width: 2px;
    height: 97%;
    position: absolute;
    top: 5px;
    left: 57px;
    content: "";
    background: var(--bs-primary-blue);
    z-index: 0;
  }

  .technology-tabs-links {
    display: block;
  }

  .technology-icon img {
    opacity: 0;
  }

  .technology-items.active img {
    opacity: 1;
  }
}

/* Why Node JS is becoming preferable
=================================*/
.single-column {
  background: var(--bg-gray);
  padding: 25px 20px;
  border-radius: 10px;
  transition: 0.5s all ease-in-out;
  text-align: center;
  height: 100%;
}

.single-column:hover {
  background: var(--bs-theme-blue);
  transform: translateY(-10px);
}

.single-column .sub-title,
.single-column p {
  transition: 0.5s all ease-in-out;
}

.single-column:hover .sub-title,
.single-column:hover p {
  color: var(--bs-white);
}

.box-icon {
  background: var(--bs-white);
  padding: 10px;
  border-radius: 5px;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  box-shadow: 9px 11px 23px 0 rgba(64, 67, 68, 0.12);
}

.box-icon img {
  width: 100px;
}

/* Choose Nodejs Section 
=================================*/
.choose-technology-section {
  background: var(--bg-gray);
  position: relative;
}

.choose-wrapper {
  margin-right: 5%;
  background: var(--bs-white);
  border-radius: 0 50px 0 0;
  padding: 50px 15px 0 15px;
}

.choose-column {
  background: var(--bg-gray);
  padding: 25px 15px;
  border-radius: 10px;
  transition: 0.5s all ease-in-out;
  text-align: center;
  height: 100%;
}

.box-icon {
  background: var(--bs-white);
  padding: 22px;
  border-radius: 5px;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  box-shadow: 9px 11px 23px 0 rgba(64, 67, 68, 0.12);
  border-radius: 50%;
}

.choose-column:hover {
  background: var(--bs-theme-blue);
  transform: translateY(-10px);
}

.box-icon img {
  width: 100px;
}

.choose-column .sub-title,
.choose-column p {
  transition: 0.5s all ease-in-out;
}

.choose-column:hover .sub-title,
.choose-column:hover p {
  color: var(--bs-white);
}

@media only screen and (min-width: 768px) {
  .choose-wrapper {
    padding: 50px 15px 0 15px;
  }
}

@media only screen and (min-width: 992px) {
  .choose-wrapper {
    padding: 50px 3% 0 3%;
  }
}

@media only screen and (min-width: 1400px) {
  .choose-wrapper {
    padding: 50px 3% 0 6%;
  }
}

@media only screen and (min-width: 1600px) {
  .choose-wrapper {
    padding: 50px 3% 0 15.5%;
  }
}

/* Technology IndustrySection 
=================================*/
.technology-industry-section {
  background: linear-gradient(90deg,
      var(--bs-blue) 0,
      var(--bs-primary-darkblue) 100%);
  background: linear-gradient(0, #0753ca 0, #0cabf9 100%);
  padding: 100px 0;
}

.technology-industry-section .section-text {
  width: 80%;
  margin: 0 auto;
}

.row.technology-industry-wrapper {
  background: var(--bs-white);
  overflow: hidden;
  border-radius: 70px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 98%;
  margin: 0 auto;
}

.technology-industry-wrapper .col-xl-2 {
  padding: 0;
  text-align: center;
}

.technology-industry-wrap {
  padding: 34px 15px;
  display: inline-block;
  width: 100%;
  border-top: 1px solid #e1e1e1;
  color: var(--bs-black);
  text-decoration: none;
}

.technology-col1 .technology-industry-wrap:first-child {
  border-top: 0;
}

@media only screen and (min-width: 576px) {
  .technology-col2 .technology-industry-wrap:first-child {
    border-top: 0;
  }

  .technology-col1 .technology-industry-wrap,
  .technology-col3 .technology-industry-wrap {
    border-right: 1px solid #e1e1e1;
  }
}

@media only screen and (min-width: 768px) {
  .technology-col2 .technology-industry-wrap {
    border-right: 1px solid #e1e1e1;
  }

  .technology-col3 .technology-industry-wrap:first-child {
    border-top: 0;
    border-right: 0;
  }

  .technology-col3 .technology-industry-wrap:last-child {
    border-right: 0;
  }

  .technology-col4 .technology-industry-wrap {
    border-right: 1px solid #e1e1e1;
  }
}

@media only screen and (min-width: 992px) {
  .technology-col3 .technology-industry-wrap {
    border-right: 1px solid #e1e1e1 !important;
  }

  .technology-col4 .technology-industry-wrap:first-child,
  .technology-col5 .technology-industry-wrap:first-child {
    border-top: 0;
  }
}

@media only screen and (min-width: 576px) {
  .row.technology-industry-wrapper {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .technology-col4 {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}

@media only screen and (min-width: 992px) {
  .technology-industry-wrapper .col-xl-2 {
    width: 20%;
  }

  .technology-col4 {
    display: block;
  }

  .technology-industry-wrapper .col-xl-2:nth-child(5) .technology-industry-wrap {
    padding-top: 129px;
  }
}

@media only screen and (min-width: 1200px) {
  .technology-industry-wrapper .col-xl-2 {
    width: 20%;
  }
}

/*  Hire Developer Section
=================================*/
.hire-row {
  background: var(--bg-gray);
  padding: 27px;
  border-radius: 15px 15px 0 0;
}

.hire-wrapper {
  background: #fff3ea;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding: 50px 20px;
}
.hire_point {
  padding: 20px;
  border-radius: 10px;
  background: #ffd6b7;
  height: 100%;
}
.hire_point ul{
  list-style: square;
  padding-left: 2rem;
  list-style-image: blue;
}

@media only screen and (min-width: 768px) {
  .hire-wrapper {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 992px) {
  .hire-wrapper {
    padding: 50px;
  }
}

/*  Technology Form Section
=================================*/
.technology-form-section {
  background: linear-gradient(135deg, #f4fbfb, #fff9f2);
}

.row-technology {
  background: var(--bs-white);
  padding: 30px;
  box-shadow: 0 0 20px 0 rgba(57, 73, 99, 0.15);
  border-radius: 5px;
  align-items: center;
}

.round-circle {
  right: -27px;
  top: -113px;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  background: var(--bs-white);
  z-index: 9;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid var(--bs-theme-blue7);
  padding: 4px;
}

.round-circle-text,
.round-circle-text .texts {
  width: 100px;
  height: 100px;
  border-radius: 100px;
}

.round-circle-text,
.round-circle-text .texts {
  width: 100px;
  height: 100px;
}

.round-circle-text .innerlogo {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 50px;
}

@media only screen and (min-width: 768px) {
  .round-circle {
    top: -11px;
  }
}

/* Mobile app development  */
.php-language-box.mobile-app-service {
  background: var(--bs-white);
  padding: 30px 30px;
  box-shadow: 0 0 10px #ddd;
  display: block !important;
  text-align: center;
  border-radius: 20px;
  height: 100%;
}

.approaches_section {
  background: var(--bs-white);
  padding: 30px 30px;
  box-shadow: 0 0 10px #ddd;
  align-items: center;
  border-radius: 20px;
  height: 100%;
}

.approaches_icon_box{
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  border-radius: 50%;
  padding: 15px;
  margin-right: 15px;
  box-shadow: 0 9px 12px 0 #bfbfbfd9;
}

.php-icon-box.mobile-icon-box {
  max-width: 100px;
  height: 100px;
  font-size: 44px;
  padding: 15px;
  padding-top: 15px;
  border-radius: 50%;
  box-shadow: 0 9px 12px 0 #bfbfbfd9;
  margin: 0 auto 20px;
  transition: ease 0.4s;
}

.mobile-app-service:hover .mobile-icon-box {
  transform: translateY(-10px);
}

/* faq */
.mobile-app-faqs {
  position: relative;
  background: radial-gradient(at 40% 20%, hsl(251.5, 100%, 94.9%) 0px, transparent 50%), radial-gradient(at 80% 0%, hsl(180deg 100% 98%) 0px, transparent 50%), radial-gradient(at 0% 50%, hsl(280deg 100% 98%) 0px, transparent 50%), radial-gradient(at 14% 75%, hsl(50deg 100% 97%) 0px, transparent 50%), radial-gradient(at 0% 100%, hsl(47deg 100% 98%) 0px, transparent 50%), radial-gradient(at 84% 84%, rgb(252 248 255) 0px, transparent 50%), radial-gradient(at 0% 0%, hsl(250, 100%, 89.4%) 0px, transparent 50%);
}

.mobile-app-single-faq {
  margin: 15px 0;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 3px;
  padding-top: 3px;
}

.faq-answer {
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding-left: 20px;
  padding-right: 20px;
}

.faq-answer.active {
  padding: 20px;
  border-top: 1px solid #e0e0e0;
}

.icon-container i {
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.icon-container i.active {
  transform: rotate(90deg);
}



/*=======================================
         Asp.net Development Page
====================================== */
.solutuion-single-box {
  align-items: center;
  box-shadow: 2px 9px 15px -13px var(--bs-black);
  border-radius: 10px;
  background: var(--bs-theme-orange2);
  transition: 0.5s all ease-in-out;
}

.solutuion-single-box:hover {
  box-shadow: none;
  transform: translateY(-5px);
}

.solutuion-icons {
  padding: 15px 15px;
  color: var(--bs-white);
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  height: 100%;
}

.inner-solution-icon {
  background: var(--bs-white);
  padding: 18px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  align-items: center;
  display: flex;
  justify-content: center;
}

.solutuion-icons img {
  width: 75px;
  transition: 0.5s all ease-in-out;
}

.solutuion-single-box:hover img {
  transform: rotateY(360deg) scale(1.1);
}

.solution-content {
  padding: 20px 20px 15px 25px;
  height: 100%;
}

.solution-row .solution-title {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--bs-theme-orange1);
}

.development-process-count {
  position: absolute;
  top: 30px;
  left: 6px;
  background: var(--bs-white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  color: var(--bs-theme-orange2);
  font-weight: 600;
  border: 2px solid var(--bs-theme-orange2);
  font-family: var(--bs-font-resolve);
}

@media only screen and (min-width: 768px) {
  .solutuion-single-box {
    border-left: 10px solid var(--bs-theme-orange2);
    border-right: 10px solid var(--bs-theme-orange2);
    border-top: 2px solid var(--bs-theme-orange2);
    border-bottom: 2px solid var(--bs-theme-orange2);
  }

  .solutuion-single-box {
    display: grid;
  }

  .solution-left {
    grid-template-columns: 20% 80%;
  }

  .solution-right {
    grid-template-columns: 80% 20%;
  }

  .solutuion-icons {
    align-items: center;
    display: flex;
    background: var(--bg-gray);
  }

  .solution-left .solutuion-icons {
    border-radius: 20px 0 0 20px;
  }

  .solution-right .solutuion-icons {
    order: 1;
    border-radius: 0 20px 20px 0;
  }

  .inner-solution-icon {
    width: 100px;
    height: 100px;
  }

  .solutuion-icons img {
    width: 60px;
  }

  .solution-left .solution-content {
    border-left: 1px solid #d7d7d7;
    border-radius: 0 20px 20px 0;
  }

  .solution-right .solution-content {
    order: 0;
    border-right: 1px solid #d7d7d7;
    border-radius: 20px 0 0 20px;
  }
}

@media only screen and (min-width: 992px) {
  .solution-left {
    grid-template-columns: 17% 83%;
  }

  .solution-right {
    grid-template-columns: 83% 17%;
  }

  .inner-solution-icon {
    width: 120px;
    height: 120px;
  }

  .development-process-count {
    top: 19px;
    left: -24px;
  }
}

@media only screen and (min-width: 1200px) {
  .solution-left {
    grid-template-columns: 14% 86%;
  }

  .solution-right {
    grid-template-columns: 86% 14%;
  }
}

/*   Methodology  Process
---------------------------*/
.service-process-section {
  background: var(--bg-gray);
}

.service-process-box {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.5s all ease-in-out;
  border: 1px solid #e7efff;
  box-shadow: 5px 9px 20px -4px #dadce173;
  background: var(--bs-white);
}

.service-process-box:hover {
  background: var(--bs-theme-blue8);
  border: 1px solid #e7efff;
  box-shadow: none;
}

.service-process-head {
  position: relative;
  text-align: center;
  padding: 15px 20px 5px;
  background: linear-gradient(0, #1c3e70 0, #4071c5 100%);
  transition: 0.5s all ease-in-out;
}

.service-process-head::after {
  width: 100%;
  height: 0;
  top: 0;
  content: "";
  left: 0;
  z-index: 0;
  position: absolute;
  transition: 0.5s all ease-in-out;
  background: var(--bs-theme-blue);
}

.service-process-box:hover .service-process-head::after {
  height: 100%;
}

.process-icon {
  background: var(--bs-white);
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 50%;
  border: 3px solid var(--bs-theme-blue5);
  transition: 0.5s all ease-in-out;
  line-height: 100px;
  min-width: 100px;
  box-shadow: 0 3px 18px -5px #0000005e;
  margin: 0 auto;
}

.process-icon::before {
  width: 4px;
  height: 33px;
  position: absolute;
  top: 97px;
  content: "";
  background: #2a79fa;
  margin-left: -1px;
  transition: 0.5s all ease-in-out;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.service-process-box:hover .process-icon::before {
  background: var(--bs-white);
}

.process-icon::after {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 118px;
  content: "";
  margin-left: 0;
  border-radius: 50%;
  background: var(--bs-theme-blue);
  border: 3px solid var(--bs-theme-blue6);
  transition: 0.5s all ease-in-out;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.service-process-box:hover .process-icon {
  background: var(--bs-theme-blue2);
  border: 3px solid var(--bs-blue);
  z-index: 1;
}

.service-process-box:hover .process-icon::after {
  border: 3px solid var(--bs-white);
  background: var(--bs-theme-orange5);
}

.process-icon img {
  width: 60px;
  position: relative;
  z-index: 1;
  transition: 0.5s all ease-in-out;
}

.service-process-box:hover img {
  filter: brightness(0) invert(1);
}

.processing-content {
  padding: 25px 30px 20px;
  text-align: center;
  background: var(--bs-white);
  transition: 0.5s all ease-in-out;
}

.service-process-box:hover .processing-content {
  background: var(--bs-theme-blue8);
}

.process-title {
  color: var(--bs-white);
  transition: 0.5s all ease-in-out;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.service-process-box:hover .process-title {
  color: var(--bs-white);
}

@media only screen and (min-width: 360px) {
  .service-process-head {
    display: flex;
    align-items: center;
    padding: 20px;
  }

  .process-icon {
    margin: unset;
  }

  .process-icon::before {
    width: 60px;
    height: 4px;
    top: 47px;
    right: -62px;
    left: auto;
  }

  .process-icon::after {
    top: 40px;
    margin-left: 68px;
    left: auto;
    right: auto;
  }

  .process-title {
    margin-left: 79px;
    margin-top: 0px;
  }
}

/*   Dot net Type 
---------------------------*/
.type-dotnet-row .col-xl-3 {
  margin-bottom: 25px;
}

.dotnet-info {
  padding: 34px 30px;
  text-align: center;
  background: var(--bg-gray);
  border-radius: 10px;
  height: 100%;
  transition: 0.5s all ease-in-out;
}

.dotnet-info:hover {
  transform: translateY(-10px);
}

@media only screen and (min-width: 576px) {

  .type-dotnet-row .col-xl-3:nth-child(2),
  .type-dotnet-row .col-xl-3:nth-child(4),
  .type-dotnet-row .col-xl-3:nth-child(6),
  .type-dotnet-row .col-xl-3:nth-child(8) {
    position: relative;
    top: 21px;
  }
}

/*  cta section
======================================== */
.cta-qoute {
  background-color: #fff3ea;
  border-radius: 10px;
  padding: 0 50px;
}

.cta-qoute-img img {
  margin-top: -30px;
}

.technology-btn {
  position: relative;
  padding: 10px 58px 10px 24px;
  background-color: var(--bs-light-orange);
  font-size: 22px;
}

@media only screen and (min-width: 768px) {
  .service-cta-content {
    top: -34px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .service-cta-btn {
    right: 0;
    bottom: 35px;
    padding-bottom: 0;
    position: absolute;
  }

  .development-cta-btn {
    bottom: 50px;
  }
}

@media only screen and (min-width: 992px) {
  .service-cta-content {
    order: 0;
    top: unset;
  }

  .service-cta-image {
    order: 1;
  }

  .service-cta-btn {
    order: 2;
    position: relative;
    right: unset;
    bottom: unset;
  }
}

/*=======================================
       Python Development Page
====================================== */
.marketplace-section {
  padding-top: 70px;
  background: linear-gradient(-90deg, #0753ca 0, #00c3ff 100%);
}

.marketplace-box .solution-title {
  margin-bottom: 8px;
  color: var(--bs-white);
  background: var(--bs-theme-orange1);
  padding: 15px 20px;
  border-radius: 10px;
}

.top-space-ingress {
  margin-top: -50px;
}

@media only screen and (min-width: 992px) {
  .marketplace-box .solution-title {
    color: var(--bs-theme-orange1);
    background: 0;
    padding: 0;
  }
}

/*=======================================
         Industries We Serve-In Page
====================================== */
.serve-industries-section {
  background-color: #19bdff;
  background-image: radial-gradient(at 40% 20%,
      hsl(251.5, 100%, 94.9%) 0px,
      transparent 50%),
    radial-gradient(at 80% 0%, hsl(180deg 100% 98%) 0px, transparent 50%),
    radial-gradient(at 0% 50%, hsl(280deg 100% 98%) 0px, transparent 50%),
    radial-gradient(at 14% 75%, hsl(50deg 100% 97%) 0px, transparent 50%),
    radial-gradient(at 0% 100%, hsl(47deg 100% 98%) 0px, transparent 50%),
    radial-gradient(at 84% 84%, rgb(252 248 255) 0px, transparent 50%),
    radial-gradient(at 0% 0%, hsl(250, 100%, 89.4%) 0px, transparent 50%);
}

.serve-industry-row>div {
  margin-bottom: 25px;
}

.serve-box {
  padding: 30px 15px;
  border: 2px solid #ffffff4f;
  margin: 1px;
  border-radius: 15px;
  transition: 0.5s all ease-in-out;
  backdrop-filter: blur(21px);
  background: #ffffff61;
  background-image: none;
  text-align: center;
  box-shadow: 0 5px 50px rgba(13, 21, 55, 0.2);
  height: 100%;
}

.serve-box:hover {
  background-image: linear-gradient(45deg,
      var(--bs-redorange) 17%,
      var(--bs-orange) 100%);
  border: 2px solid var(--bs-redorange);
}

.serve-img {
  width: 60px;
  margin: 0 auto 18px;
}

.serve-box:hover img {
  filter: brightness(0) invert(1);
}

.serve-subtitle {
  color: var(--bs-black);
}

.serve-box:hover .serve-subtitle {
  color: var(--bs-white);
}

@media only screen and (min-width: 1200px) {
  .serve-industry-row>div {
    width: 20%;
  }
}

/*=======================================
        Reactjs Development Page
====================================== */
.cover-row {
  z-index: 1;
  background: var(--bs-white);
  padding: 23px 0 23px;
  border-radius: 15px;
}

.cover-inner-box {
  margin-bottom: 20px;
  border-bottom: 1px dotted var(--bs-black);
  padding-bottom: 25px;
}

.cover-title {
  color: var(--bs-theme-blue1);
}

.cover-text-line {
  width: 26px;
  height: 3px;
  background: var(--bs-theme-blue1);
  display: inline-block;
  position: relative;
  top: -3px;
  margin-right: 15px;
}

.cover-inner-box:last-child {
  border: 0;
}

@media only screen and (min-width: 768px) {
  .cover-row {
    padding: 23px 0 23px 15px;
    margin-left: 10px;
  }
}

@media only screen and (min-width: 992px) {
  .cover-row {
    padding: 23px;
  }
}

/*=======================================
        android app development Page
====================================== */
.platform-development {
  overflow: hidden;
  box-shadow: 0 0 17px 2px rgba(64, 64, 64, 0.15);
  border-radius: 20px;
  transition: 0.5s all ease-in-out;
  position: relative;
}

.platform-development::after {
  background: var(--bs-black);
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  z-index: 0;
  transition: 0.5s all ease-in-out;
}

.platform-development:hover::after {
  height: 100%;
  opacity: 0.8;
}

.android-img {
  position: relative;
}

.android-content {
  position: absolute;
  top: 80%;
  z-index: 1;
  text-align: center;
  transition: 0.5s all ease-in-out;
  padding: 11px;
}

.platform-development:hover .android-content {
  top: 50px;
}

.platform-title,
.platform-development p {
  color: var(--bs-white);
}

.platform-development p {
  opacity: 0;
}

.platform-development:hover p {
  opacity: 1;
}

/*  Android Development Process 
---------------------------------*/
.android-process-section .col-xl-6 {
  margin-bottom: 40px;
}

.android-process-box {
  border: 1px solid #cacaca;
  border-radius: 25px;
  height: 100%;
  padding: 0 25px 25px;
  background: var(--bs-white);
  box-shadow: 0 0 17px -4px rgba(38, 38, 38, 0.24);
  position: relative;
  transition: 0.5s all ease-in-out;
}

.android-process-box:hover {
  transform: translateY(-10px);
  box-shadow: none;
  border: 1px solid var(--bs-theme-blue1);
}

.process-count {
  position: absolute;
  background: var(--bs-white);
  width: 35px;
  height: 35px;
  border: 2px solid #a4a4a4;
  text-align: center;
  line-height: 30px;
  font-weight: 600;
  border-radius: 50%;
  top: -10px;
  right: -10px;
  transition: 0.5s all ease-in-out;
}

.android-process-box:hover .process-count {
  border: 2px solid var(--bs-theme-blue1);
  color: var(--bs-theme-blue1);
}

.android-title-box {
  margin-top: -23px;
  margin-bottom: 9px;
}

.android-icons {
  background: var(--bs-white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 17px;
  box-shadow: 0 0 17px 2px rgba(64, 64, 64, 0.15);
}

.app-process-title {
  position: relative;
  transition: 0.5s all ease-in-out;
  margin-top: 16px;
}

.android-process-box:hover .app-process-title {
  color: var(--bs-theme-blue1);
}

@media only screen and (min-width: 576px) {
  .android-title-box {
    display: flex;
    align-items: center;
    margin-top: -23px;
    margin-bottom: 9px;
  }

  .app-process-title {
    margin-left: 18px;
  }
}

@media only screen and (min-width: 768px) {
  .android-title-box {
    display: block;
  }

  .app-process-title {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) {
  .android-title-box {
    display: flex;
    margin-top: -23px;
  }

  .app-process-title {
    margin-left: 18px;
  }
}

/*  Why Android App Development 
---------------------------------*/
.android-app-row {
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
}

/*  Client journey section  
---------------------------------*/
.journey-wrapper {
  border-radius: 30px;
  overflow: hidden;
}

.journey-heading-wrap {
  padding: 40px;
  background: var(--bs-theme-blue1);
}

.journey-wrapper .section-text {
  padding: 50px 40px;
}

.android-img {
  border-radius: 15px;
  width: 100%;
}

.android-wraper-img {
  float: none;
  position: relative;
  left: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
}

.android-wraper-content {
  width: 90%;
  padding: 20px 20px;
  border: 1px solid #ecedee;
  border-radius: 15px;
  margin: -74px auto 0;
  z-index: 1;
  position: relative;
  background-color: #ffffffba;
  backdrop-filter: blur(5px);
}

.android-wraper:hover .android-wraper-img {
  position: relative;
  left: -5px;
  top: -5px;
}

@media screen and (min-width: 992px) {
  .android-wraper-content {
    padding: 30px 30px;
    position: absolute;
    right: 0;
    border: 1px solid #ecedee;
    background-color: #ffffffba;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    margin: 0 auto;
    left: 0;
    bottom: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .android-img {
    width: auto;
  }

  .android-wraper-content {
    bottom: 20px;
  }
}

@media screen and (min-width: 1400px) {
  .android-img {
    width: auto;
  }

  .android-wraper-content {
    left: auto;
    width: 400px;
    height: max-content;
    top: 50%;
    transform: translateY(-50%);
  }
}

/*=======================================
        iOS app development Page
====================================== */
.solution-content.reasons-wrap {
  background: var(--bg-gray);
}

/*=======================================
       PHP development Page
====================================== */
.php-language-box {
  background: var(--bg-gray);
  padding: 20px;
  text-align: center;
  border-radius: 13px;
  height: 100%
}

.php-language-img {
  animation: up-down 2s infinite alternate-reverse
}

.php-language-box {
  align-items: center
}

.php-icon-box {
  max-width: 100px;
  height: 100px;
  font-size: 44px;
  padding: 15px;
  padding-top: 15px;
  border-radius: 50%;
  box-shadow: 0 9px 12px 0 #BFBFBFD9;
  margin: 0 auto 20px
}

.immense-success-point{
  position: relative;
  padding: 20px;
  height: 100%;
}
.immense-success-point:hover .immense-success-point-text{
  opacity: 1;
}
.immense-success-point:hover .immense-success-point-icon{
  opacity: 0;
}
.immense-success-point-icon{
  transition: ease 0.4s;
}
.immense-success-point-text{
  opacity: 0;
  margin-top: -60px;
  transition: ease 0.5s;
}

.immense-success-point-text::before{
  position: absolute;
  content: "";
  border-top: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}
.immense-success-point-text::after{
  position: absolute;
  content: "";
  border-top: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
}
.immense-success-point-text p::before{
  position: absolute;
  content: "";
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  width: 40px;
  height: 40px;
  bottom: 0;
  left: 0;
}
.immense-success-point-text p::after{
  position: absolute;
  content: "";
  border-bottom: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  width: 40px;
  height: 40px;
  bottom: 0;
  right: 0;
}

@media only screen and (min-width: 768px) {
  .php-language-box {
    display: grid;
    grid-template-columns: 134px auto
  }

  .php-icon-box {
    margin: 0
  }

  .php-language-box {
    background: transparent;
    padding: 0;
    text-align: left;
    border-radius: 0
  }
}


/*=======================================
      Angularjs Development Page
====================================== */
.development-full-cta {
  background: #fff3ea;
}

/*=============================================  Industry Start =========================================================*/
/*=======================================
         1. Food Devilery Page
====================================== */
.advantages-column {
  border-radius: 10px;
  transition: 0.5s all ease-in-out;
  border: 1px solid #eaeaea;
  background: var(--bg-gray);
  align-items: center;
}

.advantages-column:hover {
  background: var(--bs-white);
  transform: translateY(-10px);
  box-shadow: 0 7px 18px -10px #a2a0a0;
  border: 1px solid var(--bs-theme-blue2);
}

.industry-left .industry-box,
.industry-right .industry-box {
  text-align: center;
}

.advantages-icon {
  padding: 10px;
  width: 100%;
  box-shadow: 9px 11px 23px 0 rgba(64, 67, 68, 0.12);
  position: relative;
  z-index: 1;
  transition: 0.5s all ease-in-out;
  margin-right: 20px;
  min-width: 100px;
  border-radius: 10px;
  background: var(--bs-white);
  text-align: center;
  margin-left: 1px;
}

.advantages-column:hover .advantages-icon {
  transform: translateY(0);
  padding: 9px;
  background: var(--bs-theme-blue2);
}

.advantages-icon img {
  width: 100px;
}

.advantages-content {
  padding: 25px;
}

.advantages-title {
  text-align: left;
  transition: 0.5s all ease-in-out;
}

.advantages-column:hover .advantages-title {
  color: var(--bs-theme-blue2);
}

@media only screen and (min-width: 576px) {
  .industry-left .industry-box {
    text-align: left;
  }

  .industry-right .industry-box {
    text-align: right;
  }
}

@media only screen and (min-width: 768px) {
  .advantages-column {
    height: 100%;
  }

  .food-delivery-column .advantages-icon {
    line-height: 142px;
    width: 132px;
    height: 99%;
  }

  .advantages-content {
    padding: 10px 20px 10px 0;
  }
}

@media only screen and (min-width: 992px) {
  .food-delivery-column .advantages-icon {
    line-height: 175px;
  }
}

/*  Industry Cta Section
=================================*/
.schedule-section {
  background: linear-gradient(-90deg, #0753ca 0, #00c3ff 100%);
  border-radius: 50px 50px 0 0;
  padding: 2px 0;
}

.background-shape {
  top: 0;
}

.background-shape img {
  filter: brightness(0) invert(1);
}

.industry-cta {
  position: relative;
}

.contact-banner-image {
  z-index: 1;
  position: relative;
}

.industry-cta-img {
  animation: up-down 2s infinite alternate-reverse;
}

/*  Industry Tap Section
=================================*/
.industry-tap-section {
  background: linear-gradient(-90deg, #0753ca 0, #00c3ff 100%);
}

.industry-tap-section::after {
  width: 76%;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--bg-gray);
  content: "";
  z-index: 0;
  border-radius: 30px 0 0 0;
  height: 100%;
}

.industry-tap-section .container {
  padding: 60px 20px 0;
}

.industry-tap-section .container::after {
  width: 99%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--bg-gray);
  content: "";
  z-index: 0;
  border-radius: 30px 0 0 0;
}

.industry-tap-section .row.technology-row {
  background: var(--bg-gray);
}

.industry-tap-section .row,
.marketplace-row {
  z-index: 1;
}

.industry-tap-section .technology-left {
  background: var(--bg-gray);
  padding: 15px;
}

.industry-tap-section .technology-tabs-links {
  background: var(--bg-gray);
  border: 1px solid var(--bg-gray);
}

.industry-tap-section .technology-items.active .technology-tabs-links {
  background: var(--bs-white);
}

@media only screen and (min-width: 576px) {
  .industry-tap-section .container {
    padding: 80px 20px 20px 60px;
  }

  .industry-tap-section .container::after {
    width: 100%;
    border-radius: 100px 0 0 0;
  }
}

/*  Industry Choose Section
=================================*/
.choose-industry-wrapper {
  border: 1px solid rgba(1, 16, 61, 0.08);
  border-radius: 30px;
  padding: 30px 15px;
  transition: 0.3s;
  transition: 0.5s all ease-in-out;
  height: 100%;
}

.choose-industry-wrapper:hover {
  border: 1px solid var(--bs-theme-blue4);
}

.choose-industry-title {
  color: var(--bs-warning-rgb);
}

.choose-industry-icon img {
  width: 90px;
  transition: 0.5s all ease-in-out;
}

.choose-industry-wrapper:hover img {
  animation: icon-bounce 0.8s 1;
}

.choose-industry-title {
  transition: 0.5s all ease-in-out;
}

.choose-industry-wrapper:hover .choose-industry-title {
  color: var(--bs-theme-blue1);
}

@keyframes icon-bounce {

  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  60% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

@media only screen and (min-width: 767px) {
  .choose-industry-wrapper {
    padding: 30px;
  }
}

/*  Industry Feature Section
=================================*/
.industry-left,
.industry-right {
  margin-bottom: 25px;
}

.industry-box {
  padding: 25px 20px;
  align-items: center;
  border: 1px solid rgba(1, 16, 61, 0.08);
  border-radius: 15px;
  transition: 0.5s all ease-in-out;
  position: relative;
  box-shadow: 0 7px 18px -10px #bdbdbd;
  height: 100%;
}

.industry-box:hover {
  box-shadow: none;
}

.icon-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  padding: 16px;
  background: var(--bs-white);
  border: 3px solid #ebecf0;
  transition: 0.5s all ease-in-out;
  margin: 0 auto;
}

.industry-box:hover .icon-box {
  background: var(--bs-theme-blue2);
  border: 3px solid var(--bs-theme-blue);
}

.content-details {
  margin-top: 20px;
}

@media only screen and (min-width: 576px) {
  .industry-box {
    display: flex;
  }

  .icon-box {
    position: absolute;
  }

  .industry-left .content-details {
    padding-left: 55px;
  }

  .industry-left .industry-box {
    margin-left: 35px;
  }

  .industry-left .icon-box {
    left: -45px;
  }

  .industry-right .content-details {
    padding-right: 55px;
  }

  .industry-right .industry-box {
    text-align: end;
  }

  .industry-right .industry-box {
    margin-right: 35px;
  }

  .industry-right .icon-box {
    right: -45px;
  }

  .content-details {
    margin-top: 0;
  }
}

/*  Industry Feature Section
=================================*/
.feature-box {
  overflow: hidden;
  height: 100%;
}

.health-box {
  margin-bottom: 20px;
}

.health-box:nth-child(1) .feature-box {
  border-radius: 30px 30px 0 0;
}

.health-box:nth-child(6) .feature-box {
  border-radius: 0 0 30px 30px;
}

.top-box {
  background: var(--bs-theme-blue1);
  height: 100%;
}

.top-box::after {
  bottom: 0;
}

.bottom-box {
  background: var(--bs-theme-blue1);
}

.bottom-box::after {
  top: 0;
}

.feature-box::after {
  background: var(--bs-theme-blue);
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  content: "";
  left: 0;
  right: 0;
  transition: 0.5s all ease-in-out;
  z-index: 0;
}

.feature-box:hover::after {
  height: 100%;
  border-radius: 0;
}

.feature-icon {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

.feature-icon img {
  filter: brightness(0) invert(1);
  width: 80px;
  transition: 0.5s all ease-in-out;
  z-index: 1;
  position: relative;
}

.feature-box:hover img {
  transform: rotateY(180deg);
}

.feature-icon::after {
  background: var(--bs-theme-blue1);
  width: 100%;
  height: 0;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  z-index: 0;
  transition: 0.7s all ease-in-out;
}

.top-box .feature-icon::after {
  top: 0;
}

.bottom-box .feature-icon::after {
  bottom: 0;
}

.feature-box:hover .feature-icon::after {
  height: 110px;
}

.feature-content {
  z-index: 1;
}

.top-box .feature-content {
  padding: 0 35px 35px;
}

.bottom-box .feature-content {
  padding: 35px 35px 0;
}

.feature-title {
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
  .health-box:nth-child(2) .feature-box {
    border-radius: 30px 30px 0 0;
  }

  .health-box:nth-child(5) .feature-box {
    border-radius: 0 0 30px 30px;
  }

  .top-box .feature-content {
    padding: 0 43px 35px;
  }
}

@media only screen and (min-width: 992px) {
  .top-box {
    border-radius: 30px 30px 0 0;
  }

  .bottom-box {
    border-radius: 0 0 30px 30px;
  }

  .top-box .feature-content {
    padding: 0 22px 35px;
  }

  .bottom-box .feature-content {
    padding: 35px 22px 0;
  }
}

@media only screen and (min-width: 1400px) {
  .top-box .feature-content {
    padding: 0 25px 35px;
  }

  .bottom-box .feature-content {
    padding: 35px 25px 0;
  }
}

/*  Banking & Finance Section
=================================*/
.fintech-row .col-xxl-4 {
  margin-bottom: 25px;
}

.fintech-box {
  padding: 30px 20px;
  box-shadow: 3px 15px 12px -14px #0b0b0b2e;
  background: linear-gradient(0, #0753ca 0, #0cabf9 100%);
  height: 100%;
  text-align: center;
  border-radius: 15px;
  transition: 0.5s all ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.fintech-box::after {
  background: var(--bs-theme-blue2);
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  content: "";
  z-index: -1;
  transition: 0.5s all ease-in-out;
}

.fintech-box:hover::after {
  height: 100%;
}

.fintech-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: var(--bg-gray);
  box-shadow: 0 0.5rem 1rem rgba(115, 115, 115, 0.15);
  border-radius: 50%;
  padding: 20px;
  transition: 0.5s all ease-in-out;
}

.fintech-box:hover .fintech-icon {
  transform: rotateY(180deg);
}

.fintech-title {
  margin: 15px 0 15px;
  color: var(--bs-white);
}

.fintech-content p {
  color: var(--bs-white);
}

/*  Key Feature Section */
.key-feature-row .col-xxl-3,
.key-feature-row .col-xxl-4 {
  margin-bottom: 60px;
}

.key-feature {
  border-radius: 10px;
  transition: 0.5s all ease-in-out;
  border: 1px solid #eaeaea;
  background: var(--bg-gray);
  height: 100%;
  padding: 0 15px 15px;
}

.key-feature:hover {
  background: var(--bs-white);
  transform: translateY(-10px);
  box-shadow: 0 7px 18px -10px #a2a0a0;
  border: 1px solid var(--bs-theme-blue2);
}

.key-icon {
  width: 80px;
  position: relative;
  z-index: 1;
  min-width: 100px;
  background: var(--bs-white);
  text-align: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 21px;
  margin-top: -35px;
  border: 2px solid #ddd;
  transition: 0.5s all ease-in-out;
  box-shadow: 0 11px 14px 0 #0000002e;
}

.key-feature:hover .key-icon {
  transform: translateY(0);
  padding: 17px;
  background: var(--bs-theme-blue2);
}

.key-feature:hover img {
  filter: brightness(0) invert(1);
}

.key-title {
  transition: 0.5s all ease-in-out;
}

.key-feature:hover .key-title {
  color: var(--bs-theme-blue2);
}

/*  Real Esatate Section
=================================*/
.industry-advantage {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bs-theme-blue8);
  transition: 0.5s all ease-in-out;
}

.industry-advantages-icon {
  text-align: center;
  padding: 20px;
  background: linear-gradient(0, var(--bs-blue) 0, var(--bs-theme-blue) 100%);
  transition: 0.5s all ease-in-out;
  position: relative;
}

.industry-advantages-icon::after {
  background: linear-gradient(90deg,
      var(--bs-theme-orange3) 0,
      var(--bs-theme-orange) 100%);
  width: 100%;
  height: 0;
  top: 0;
  content: "";
  width: 100%;
  left: 0;
  z-index: 0;
  position: absolute;
  transition: 0.5s all ease-in-out;
}

.industry-advantage:hover .industry-advantages-icon::after {
  height: 100%;
}

.industry-advantages-icon img {
  width: 60px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
  transition: 0.5s all ease-in-out;
}

.icon-shape {
  background: var(--bs-theme-blue4);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 29px;
  border-radius: 50%;
  border: 2px solid var(--bs-theme-blue5);
  transition: 0.5s all ease-in-out;
}

.icon-shape::before {
  width: 4px;
  height: 43px;
  position: absolute;
  top: 38px;
  content: "";
  background: var(--bs-link-hover-color);
  margin-left: -1px;
  transition: 0.5s all ease-in-out;
}

.industry-advantage:hover .icon-shape::before {
  background: #fd5a04;
}

.icon-shape::after {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 78px;
  content: "";
  margin-left: -9px;
  border-radius: 50%;
  background: var(--bg-gray);
  border: 3px solid var(--bs-theme-blue1);
  transition: 0.5s all ease-in-out;
}

.industry-advantage:hover .icon-shape::after {
  border: 3px solid var(--bs-black);
}

.industry-advantage:hover .icon-shape {
  background: #ea6507;
  border: 2px solid #dd5005;
  z-index: 1;
}

.industry-advantages-content {
  padding: 25px 24px 20px;
  text-align: center;
}

.industry-advantages-title {
  color: var(--bs-primary-blue);
  transition: 0.5s all ease-in-out;
}

.industry-advantage:hover .industry-advantages-title {
  color: var(--bs-theme-orange1);
}

@media only screen and (min-width: 420px) {
  .icon-shape::before {
    height: 67px;
  }

  .icon-shape::after {
    top: 100px;
  }
}

/*  Travel & Tourism  Section
=================================*/
.why-choose-box {
  padding: 15px 0;
  border: 1px solid var(--bs-theme-blue2);
  border-radius: 15px;
  height: 100%;
  transition: 0.5s;
}

.why-choose-box:hover {
  background: var(--bs-theme-blue1);
  transform: translateY(-5px);
}

.why-choose-industry {
  background: var(--bs-theme-blue1);
  padding: 15px;
  transition: 0.5s;
}

.why-choose-box:hover .why-choose-industry {
  background: var(--bs-orange);
}

.why-choose-industry img {
  background: var(--bs-white);
  padding: 10px;
  width: 90px;
  border-radius: 10px;
  transition: 0.5s all ease-in-out;
}

.why-choose-industry .php-development {
  background: var(--bs-white);
}

.why-choose-box:hover img {
  background: var(--bs-white);
  animation: icon-bounce 0.8s 1;
}

.why-choose-content {
  padding: 15px 20px;
}

.why-choose-title,
.why-choose-boxp {
  transition: 0.5s all ease-in-out;
}

.why-choose-box:hover .why-choose-title,
.why-choose-box:hover p {
  color: var(--bs-white);
}

/* ecommerce-solutions  */
.industry-common-blue {
  background: linear-gradient(-90deg, #0753ca 0, #00c3ff 100%);
}

.hover_White:hover img {
  filter: brightness(0) invert(1);
}

.ecommerce-tabs .technology-items {
  font-size: 18px;
}

@media only screen and (min-width: 576px) {
  .ecommerce-tabs .technology-tabs-links {
    display: flex;
  }

  .ecommerce-tabs .technology-icon {
    margin-right: 15px;
  }
}

/* New css  */
.ecommerce-aboutus-wrapper {
  border-radius: 50px 50px 0 0;
}

.ecommerce-service-column {
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 0px 10px 0 rgba(72, 73, 121, .15);
  border-bottom: 5px solid transparent;
  transition: 0.4s;
}

.ecommerce-service-column:hover {
  border-bottom: 5px solid var(--bs-theme-blue2);
}

.ecommerce-service-column:hover .heading-family {
  color: var(--bs-theme-blue2);
}

.ecommerce-service-column:hover .ecommerce-service-icon img {
  filter: brightness(1);
}

.ecommerce-service-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .1);
  padding: 25px;
  margin: 0px auto 15px;
}

.ecommerce-service-icon img {
  filter: brightness(0);
  transition: 0.4s;
}

/*=========================== Custom banner Form ==========================*/
.banner-form {
  margin-left: 99%;
  background: #ffffff52;
  padding: 20px 19px 18px;
  backdrop-filter: blur(5px);
  border: 2px solid #ffffff3d;
  border-radius: 5px;
  transition: 0.5s all ease-in-out;
  width: 99%;
  margin: 0 auto;
}

.request-call-form .banner-form {
  background: #ffffffc4;
  backdrop-filter: blur(15px);
  border: 2px solid #ffffff3d;
  box-shadow: 1px 2px 12px 2px #0000003d;
}

.banner-form-title {
  text-shadow: 1px 4px 1px var(--bs-white);
}

.custom-banner-form input,
.custom-banner-form select,
.custom-banner-form textarea {
  color: #353434;
  font-size: 17px;
  width: 100%;
  margin: 0 0 15px;
  background: var(--bs-white);
  outline: 0;
  border: 1px solid var(--bs-white);
  opacity: 1;
  transition: 0.5s all ease-in-out;
  padding: 9px 30px 15px 15px;
}

.custom-banner-form input::placeholder,
.custom-banner-form select::placeholder,
.custom-banner-form textarea::placeholder {
  color: #353434;
  font-size: 15px;
  font-weight: 500;
  opacity: 1;
}

.custom-banner-form input:focus,
.custom-banner-form select:focus,
.custom-banner-form textarea:focus {
  color: var(--bs-theme-blue1);
  border: 1px solid var(--bs-theme-blue4);
}

/*=================*/
.request-call-form {
  position: absolute;
  z-index: 99;
}

.call_btn {
  cursor: pointer;
  position: fixed;
  border-radius: 0 0 5px 5px;
  font-size: 13px;
  right: -65px;
  transition: all 0.15s ease-out 0s;
  background: var(--bs-theme-blue);
  color: var(--bs-white);
  text-align: center;
  padding: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 10;
  width: 164px;
}

.call_btn i {
  background: var(--bs-white);
  padding: 3px;
  border-radius: 50%;
  color: var(--bs-theme-blue3);
  font-size: 17px;
  margin-right: 4px;
}

.custom-callback.opened .call_btn .fa-globe {
  display: none;
}

.call_btn .fa-close {
  display: none;
}

.custom-callback.opened .call_btn .fa-close {
  display: inline-block;
  padding: 6px 10px;
}

.custom-callback.opened .call_btn {
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 90px;
  transform: rotateX(0);
  border-radius: 0 0 15px 15px;
  padding: 7px 15px;
}

.callback-form {
  position: fixed;
  top: 50%;
  right: 0;
  transition: all 0.15s ease-out 0s;
  transform: translateY(-50%);
}

.callback-form .banner-inquery-form {
  max-height: 70vh;
  overflow-y: auto;
  padding: 15px;
  overflow-x: hidden;
}

.custom-callback.closed .callback-form {
  right: 0;
  width: 0;
  max-width: 0;
}

@media only screen and (min-width: 480px) {
  .call_btn {
    border-radius: 0 0 15px 15px;
    font-size: 16px;
    right: -80px;
    padding: 14px;
    width: 220px;
  }

  .call_btn i {
    padding: 6px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .custom-callback.opened .call_btn {
    top: 0;
    background: #0b5edc;
    border-radius: 0;
    box-shadow: 0px 2px 8px 5px var(--bs-gray-500);
    width: 75px;
    left: auto;
    padding: 13px;
  }

  .custom-callback.opened .call_btn span {
    display: none;
  }
}

@media only screen and (min-width: 576px) {
  .custom-callback.opened .call_btn {
    right: 420px;
    border-radius: 0 0 15px 15px;
    padding: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    left: auto;
  }

  .custom-callback .banner-form {
    border-radius: 10px 0 0 10px;
    width: 500px;
    padding: 19px;
  }
}

/* Hire Web Developer Section 
=================================*/
.sticky-content {
  position: sticky;
  top: 250px;
}

.hire-web-details {
  padding-bottom: 30px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.hire-web-column {
  background: var(--bg-gray);
  border-radius: 10px 10px 0 0;
  border-top: 7px solid #00c3ff;
  box-shadow: 1px 4px 16px -4px #1313134f;
}

.hire-web-column .industry-img {
  margin: 0 auto;
  display: block;
  width: 372px;
}

.hire-web-content {
  background: linear-gradient(-90deg, #0753ca 0, #00c3ff 100%);
  padding: 20px 20px 30px;
}

.hire-web-content .industry-links,
.hire-web-content p {
  color: var(--bs-white);
}

/***
=============================================
    Hiring Section
=============================================
***/
.engagement-model-section {
  background: url(../image/contactus/contact_banner.jpg);
  padding: 70px 0 30px;
  background-size: cover;
}

.engagement-model-section::after {
  content: "";
  background: var(--bs-black);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 0;
}

.engagement-model-section .container {
  z-index: 1;
}

.engagement-col {
  margin-bottom: 20px;
}

.engagement-hiring-box {
  text-align: center;
  background: #ffffff29;
  padding: 25px 15px;
  backdrop-filter: blur(5px);
  border: 2px solid #ffffff2b;
  box-shadow: 0 8px 15px -1px var(--bs-black);
  height: 100%;
}

.hiring-icon {
  background: var(--bs-white);
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin: 0 auto;
  border-radius: 50%;
}

.hiring-icon img {
  width: 60px;
}

.hiring-text {
  color: var(--bs-white);
  font-family: var(--bs-font-resolve);
}

.hiring-title p {
  padding: 15px 15px 0;
  color: var(--bs-white);
}

/***
=============================================
    Proceed Section
=============================================
***/
.proceed-inner {
  display: grid;
  grid-template-columns: 100%;
  text-align: center;
  gap: 33px 49px;
  align-items: center;
  position: relative;
}

.singlep-proceed-steps {
  position: relative;
  height: 100%;
  min-height: 100%;
  transition: 0.5s all ease-in-out;
}

.singlep-proceed-steps:hover {
  transform: translateY(-10px);
  box-shadow: 0 7px 20px -7px #00000075;
  border-radius: 22px;
}

.proceed-arrow-shape {
  position: absolute;
  top: -33px;
  width: 60px;
  left: 13px;
  transform: rotate(90deg);
}

.proceed-step {
  border: 1px solid var(--bs-black);
  border-radius: 18px;
  padding: 25px 20px;
  height: 100%;
}

.proceed-title {
  font-family: var(--bs-font-resolve);
  font-size: 22px;
  margin: 25px auto 10px;
  transition: 0.5s all ease-in-out;
}

.singlep-proceed-steps:hover .proceed-title {
  color: var(--bs-theme-orange1);
}

.proceed-icon img {
  width: 60px;
}

.singlep-proceed-steps:hover .proceed-icon {
  animation: icon-bounce 0.8s 1;
}

@media only screen and (min-width: 576px) {
  .proceed-inner {
    grid-template-columns: 45% 45%;
    gap: 30px 35px;
    margin-left: 35px;
  }

  .singlep-proceed-steps:nth-child(1) {
    order: 1;
  }

  .singlep-proceed-steps:nth-child(2) {
    order: 2;
  }

  .singlep-proceed-steps:nth-child(3) {
    order: 4;
  }

  .singlep-proceed-steps:nth-child(4) {
    order: 3;
  }

  .singlep-proceed-steps:nth-child(5) {
    order: 5;
  }

  .proceed-arrow-shape {
    left: -35px;
    top: 83px;
    width: 60px;
    transform: rotate(0);
  }

  .singlep-proceed-steps:nth-child(3) .proceed-arrow-shape {
    transform: rotate(90deg);
    top: -30px;
    left: auto;
    right: 25px;
  }

  .singlep-proceed-steps:nth-child(4) .proceed-arrow-shape {
    transform: rotateY(180deg);
    right: -35px;
    left: auto;
    top: 91px;
  }

  .singlep-proceed-steps:nth-child(5) .proceed-arrow-shape {
    transform: rotateZ(90deg);
    left: 31px;
    top: -30px;
  }
}

@media only screen and (min-width: 768px) {
  .proceed-inner {
    grid-template-columns: 46% 46%;
    gap: 41px 40px;
    margin-left: 70px;
  }

  .singlep-proceed-steps:nth-child(1) {
    order: 1;
  }

  .singlep-proceed-steps:nth-child(2) {
    order: 2;
  }

  .singlep-proceed-steps:nth-child(3) {
    order: 4;
  }

  .singlep-proceed-steps:nth-child(4) {
    order: 3;
  }

  .singlep-proceed-steps:nth-child(5) {
    order: 5;
  }

  .proceed-arrow-shape {
    left: -40px;
    top: 58px;
    width: 75px;
  }

  .singlep-proceed-steps:nth-child(3) .proceed-arrow-shape {
    transform: rotate(90deg);
    top: -41px;
    left: auto;
    right: 25px;
  }

  .singlep-proceed-steps:nth-child(4) .proceed-arrow-shape {
    transform: rotateY(180deg);
    right: -40px;
    left: auto;
    top: 69px;
  }

  .singlep-proceed-steps:nth-child(5) .proceed-arrow-shape {
    transform: rotateZ(90deg);
    left: 31px;
    top: -41px;
  }
}

@media only screen and (min-width: 1200px) {
  .feature-dedicat-developer .container-fluid {
    margin-left: 40px;
  }

  .proceed-inner {
    gap: 41px 30px;
    grid-template-columns: 30% 30% 30%;
    margin-left: 14px;
  }

  .proceed-step {
    padding: 25px 15px;
  }

  .singlep-proceed-steps:first-child .proceed-arrow-shape {
    margin-left: -13px;
  }

  .proceed-arrow-shape {
    left: -30px;
    top: 77px;
  }

  .singlep-proceed-steps:nth-child(3) {
    order: 3;
  }

  .singlep-proceed-steps:nth-child(3) .proceed-arrow-shape {
    transform: rotate(0);
    top: 77px;
    left: -30px;
  }

  .inglep-proceed-steps:nth-child(4) {
    order: 5;
    margin-left: 53%;
    width: 100%;
  }

  .singlep-proceed-steps:nth-child(4) .proceed-arrow-shape {
    right: 50px;
    transform: rotateZ(90deg);
    top: -41px;
  }

  .singlep-proceed-steps:nth-child(5) {
    order: 4;
    margin-left: 50%;
    width: 100%;
  }

  .singlep-proceed-steps:nth-child(5) .proceed-arrow-shape {
    transform: rotateY(180deg);
    left: auto;
    top: 83px;
    right: -43px;
  }
}

@media only screen and (min-width: 1400px) {
  .feature-dedicat-developer .container-fluid {
    margin: 0 auto;
    left: 10px;
  }

  .singlep-proceed-steps:nth-child(3) {
    order: 3;
  }

  .singlep-proceed-steps:nth-child(4) {
    order: 4;
    margin-left: 0;
  }

  .proceed-inner {
    margin-left: 70px;
    grid-template-columns: 17.5% 17.5% 17.5% 17.5% 17.5%;
    gap: 20px 35px;
  }

  .singlep-proceed-steps:first-child .proceed-arrow-shape {
    margin-left: -10px;
  }

  .proceed-arrow-shape {
    left: -35px;
    top: 77px;
    width: 80px;
  }

  .singlep-proceed-steps:nth-child(3) .proceed-arrow-shape,
  .singlep-proceed-steps:nth-child(4) .proceed-arrow-shape,
  .singlep-proceed-steps:nth-child(5) .proceed-arrow-shape {
    right: auto;
    transform: rotateY(0);
    left: -35px;
    top: 77px;
  }

  .singlep-proceed-steps:nth-child(5) {
    order: 4;
    margin-left: 0;
  }

  .proceed-step {
    padding: 25px 20px;
  }

  .proceed-content.content-top-side {
    margin-top: -16px;
  }

  .proceed-title span {
    display: block;
  }
}

@media only screen and (min-width: 1600px) {
  .feature-dedicat-developer .container-fluid {
    max-width: 1500px;
  }

  .proceed-inner {
    margin-left: 16px;
    grid-template-columns: 18.5% 18.5% 18.5% 18.5% 18.5%;
    gap: 20px 35px;
  }
}

/* Hire app Developer Section 
=================================*/
.hire-app-section {
  background: var(--bg-gray);
}

.key-feature {
  background: var(--bs-white);
}

/* Hire Web Developer Section 
=================================*/
.hire-web-box {
  background-color: var(--bs-white);
  box-shadow: 0 0 10px 0 rgba(33, 30, 30, 0.15);
  border-radius: 6px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.developer-hire-image {
  overflow: hidden;
}

.developer-hire-image img {
  border-radius: 6px 6px 0 0;
  transform: scale(1) translateZ(0);
  transition: transform 3s cubic-bezier(0.2, 0.96, 0.34, 1);
  transition: all 0.3s ease-in-out;
}

.hire-web-contnet {
  padding: 24px 30px 22px;
  position: relative;
  z-index: 2;
  background: var(--bg-gray);
}

.hire-web-contnet::after {
  content: "";
  height: 3%;
  width: 100%;
  background-color: var(--bs-theme-blue1);
  border-radius: 0 0 6px 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  transition: all 0.3s ease-out;
}

.hire-web-link a {
  color: #111;
  font-weight: 600;
  transition: all 0.3s ease-out;
}

hire-web-box:hover {
  -webkit-box-shadow: 0 25px 50px 0 rgba(33, 30, 30, 0.2);
  box-shadow: 0 25px 50px 0 rgba(33, 30, 30, 0.2);
}

.hire-web-box:hover .developer-hire-image img {
  transform: scale(1.05) translateZ(0);
}

.hire-web-box:hover .hire-web-contnet:after {
  height: 100%;
}

.hire-web-link {
  color: var(--bs-black);
}

.hire-web-box:hover .hire-web-contnet .hire-web-link {
  animation: toBottomFromTop30 0.5s forwards;
  color: var(--bs-white);
}

.hire-web-box:hover .hire-web-link {
  color: var(--bs-white);
}

.hire-web-box:hover .hire-web-contnet p {
  animation: toBottomFromTop30 0.5s forwards;
  color: var(--bs-white);
}

.web-more-btn {
  color: var(--bs-black);
  font-size: 17px;
  font-weight: 600;
  transition: 0.5s all ease-in-out;
}

.hire-web-box:hover .web-more-btn {
  letter-spacing: 1px;
  color: var(--bs-white);
  text-transform: uppercase;
  animation: toBottomFromTop30 0.5s forwards;
}

@-webkit-keyframes toBottomFromTop30 {
  49% {
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
  }

  51% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }
}

@keyframes toBottomFromTop30 {
  49% {
    -webkit-transform: translateY(-30%);
    transform: translateY(-30%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
  }

  51% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }
}

/* Process section
  ======================== */
.process-wrap {
  padding: 14px;
  border: 2px dashed var(--bs-theme-blue5);
  border-radius: 20px;
  position: relative;
  width: 100%;
  margin: 0 auto 40px;
}

.process-wrap::before {
  background: var(--bs-theme-blue5);
  width: 10px;
  height: 10px;
  position: absolute;
  margin: 0 auto;
  content: "";
  border-radius: 50%;
  right: -6px;
  top: 47%;
  z-index: 1;
}

.process-wrap::after {
  background: var(--bs-white);
  width: 54%;
  height: 55%;
  position: absolute;
  content: "";
  z-index: 0;
  bottom: -3px;
  right: -5px;
}

.process-shape {
  background: var(--bs-theme-blue5);
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -7px;
}

.process-shape i {
  font-size: 29px;
  margin-left: 4px;
  color: var(--bs-theme-blue5);
  top: 7px;
  position: relative;
  transform: rotate(90deg);
  left: -13px;
}

.inner-process-blog {
  background: var(--bs-white);
  padding: 15px 12px;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 19px 21px -25px #020202;
  transition: 0.5s all ease-in-out;
}

.inner-process-blog:hover {
  transform: translateY(-10px);
  box-shadow: none;
}

.pricess-title {
  font-weight: 600;
  font-size: 18px;
  font-family: var(--bs-font-resolve);
  margin-top: 16px;
}

.process-list {
  padding-left: 17px;
}

.process-list li {
  list-style: square;
}

@media only screen and (min-width: 768px) {
  .col-process1 {
    order: 1;
  }

  .col-process2 {
    order: 2;
  }

  .col-process3 {
    order: 4;
  }

  .col-process4 {
    order: 3;
  }

  .col-process5 {
    order: 5;
  }

  .col-process6 {
    order: 6;
  }

  .col-process7 {
    order: 7;
  }

  .process-wrap {
    padding: 14px;
    border: 2px dashed var(--bs-theme-blue5);
    border-radius: 20px;
    position: relative;
    width: 95%;
    margin: 0 auto 40px;
  }

  .process-wrap.process-box1::before {
    top: -6px;
    left: 0;
  }

  .process-wrap.process-box2::before {
    top: 47%;
    left: -6px;
    right: auto;
  }

  .process-wrap.process-box3::before,
  .process-wrap.process-box5::before {
    top: -7px;
    left: 0;
  }

  .process-wrap.process-box4::before {
    top: 50%;
    right: -5px;
  }

  .process-wrap.process-box6::before {
    top: 50%;
    left: -6px;
    right: auto;
  }

  .process-wrap.process-box7::before {
    top: -5px;
    right: 1px;
  }

  .process-wrap::after {
    background: var(--bs-white);
    width: 54%;
    height: 50%;
    position: absolute;
    content: "";
    z-index: 0;
  }

  .process-wrap.process-box1::after {
    top: -4px;
    bottom: 0;
  }

  .process-wrap.process-box2::after {
    bottom: -3px;
    left: -3px;
    height: 55%;
  }

  .process-wrap.process-box3::after {
    left: -3px;
    top: -2px;
    height: 52%;
  }

  .process-wrap.process-box5::after {
    top: -2px;
    height: 57%;
  }

  .process-wrap.process-box6::after {
    left: -3px;
  }

  .process-wrap.process-box1 .process-shape {
    left: auto;
    right: -6px;
    margin: 0;
    top: 47%;
  }

  .process-box3 .process-shape {
    left: -6px;
    top: 50%;
    right: auto;
  }

  .process-box5 .process-shape {
    left: auto;
    right: -6px;
    top: 50%;
  }

  .process-box7::after {
    display: none;
  }

  .process-wrap.process-box1 .process-shape i,
  .process-wrap.process-box5 .process-shape i {
    transform: rotate(0);
    top: -10px;
    left: 0;
  }

  .process-wrap.process-box3 .process-shape i {
    transform: rotateZ(180deg);
    left: -27px;
    top: -9px;
  }

  .process-wrap.process-box6 .process-shape i {
    top: 2px;
    transform: rotate(127deg);
    left: -23px;
  }
}

@media only screen and (min-width: 992px) {
  .col-process3 {
    order: 3;
  }

  .col-process4 {
    order: 6;
  }

  .col-process5 {
    order: 5;
  }

  .col-process6 {
    order: 4;
  }

  .col-process7 {
    order: 7;
  }

  .process-wrap {
    padding: 14px;
    border: 2px dashed var(--bs-theme-blue5);
    border-radius: 20px;
    position: relative;
    width: 95%;
    margin: 0 auto 40px;
  }

  .process-wrap.process-box1::before {
    bottom: -6px;
    left: 0;
    top: auto;
  }

  .process-wrap.process-box2::before,
  .process-wrap.process-box3::before {
    top: 47%;
    left: -6px;
    right: auto;
  }

  .process-wrap.process-box4::before {
    top: -7px;
    right: -5px;
    left: 0;
  }

  .process-wrap.process-box5::before,
  .process-wrap.process-box6::before {
    top: 50%;
    left: auto;
  }

  .process-wrap.process-box6::before {
    right: -6px;
  }

  .process-wrap.process-box7::before {
    top: -5px;
    left: 1px;
    right: auto;
  }

  .process-wrap::after {
    background: var(--bs-white);
    width: 54%;
    height: 50%;
    position: absolute;
    content: "";
    z-index: 0;
  }

  .process-wrap.process-box1::after {
    top: auto;
    bottom: -3px;
  }

  .process-wrap.process-box2::after {
    top: -3px;
    left: -3px;
    height: 55%;
    width: 103%;
  }

  .process-wrap.process-box3::after {
    left: -3px;
    bottom: -2px;
    height: 54%;
    top: auto;
  }

  .process-wrap.process-box4::after {
    top: -2px;
    height: 57%;
    left: -2px;
  }

  .process-wrap.process-box5::after {
    bottom: -2px;
    height: 52%;
    width: 106%;
    top: auto;
  }

  .process-wrap.process-box6::after {
    left: auto;
    right: -3px;
    bottom: 0;
  }

  .process-wrap.process-box1 .process-shape,
  .process-wrap.process-box2 .process-shape {
    left: auto;
    right: -6px;
    margin: 0;
    top: 47%;
  }

  .process-box3 .process-shape {
    left: 0;
    bottom: -6px;
    right: 0;
    top: auto;
  }

  .process-box4 .process-shape,
  .process-box5 .process-shape {
    left: -7px;
    right: auto;
    top: 50%;
  }

  .process-box6 .process-shape {
    right: 0;
    left: auto;
  }

  .process-box7::after {
    display: none;
  }

  .process-wrap.process-box1 .process-shape i,
  .process-wrap.process-box2 .process-shape i {
    transform: rotate(0);
    top: -10px;
    left: 0;
  }

  .process-wrap.process-box3 .process-shape i {
    transform: rotateZ(90deg);
    left: -13px;
    top: 5px;
  }

  .process-wrap.process-box4 .process-shape i,
  .process-wrap.process-box5 .process-shape i {
    transform: rotatez(180deg);
    top: -10px;
    left: -28px;
  }

  .process-wrap.process-box6 .process-shape i {
    top: 2px;
    transform: rotate(45deg);
    left: -5px;
  }

  .inner-process-blog {
    height: 270px;
  }
}

@media only screen and (min-width: 1200px) {
  .col-process4 {
    order: 4;
  }

  .col-process5 {
    order: 7;
  }

  .col-process6 {
    order: 6;
  }

  .col-process7 {
    order: 5;
  }

  .process-wrap {
    padding: 14px;
    border: 2px dashed var(--bs-theme-blue5);
    border-radius: 20px;
    position: relative;
    width: 95%;
    margin: 0 auto 40px;
  }

  .process-wrap.process-box1::before {
    top: -6px;
  }

  .process-wrap.process-box2::before,
  .process-wrap.process-box3::before,
  .process-wrap.process-box4::before {
    top: 50%;
    right: auto;
    left: -6px;
  }

  .process-wrap.process-box5::before {
    top: -3px;
    left: auto;
    right: 5px;
  }

  .process-wrap.process-box6::before,
  .process-wrap.process-box7::before {
    top: 50%;
    left: auto;
    right: -6px;
  }

  .process-wrap::after {
    background: var(--bs-white);
    width: 54%;
    height: 50%;
    position: absolute;
    content: "";
    z-index: 0;
  }

  .process-wrap.process-box1::after {
    top: -2px;
    height: 55%;
  }

  .process-wrap.process-box2::after {
    bottom: -3px;
    left: -3px;
    height: 51%;
    width: 103%;
    top: auto;
  }

  .process-wrap.process-box3::after {
    left: -3px;
    height: 54%;
    top: -2px;
    width: 102%;
  }

  .process-wrap.process-box4::after {
    top: auto;
    height: 50%;
    left: -2px;
    bottom: -2px;
  }

  .process-wrap.process-box5::after {
    height: 52%;
    width: 97%;
    top: -3px;
    right: 13px;
  }

  .process-wrap.process-box6::after {
    left: auto;
    right: -3px;
    bottom: -2px;
    width: 104%;
  }

  .process-wrap.process-box1 .process-shape,
  .process-wrap.process-box2 .process-shape {
    left: auto;
    right: -6px;
    margin: 0;
    top: 50%;
  }

  .process-box3 .process-shape {
    left: auto;
    right: -7px;
    top: 50%;
  }

  .process-box4 .process-shape {
    left: -7px;
    right: 0;
    top: auto;
  }

  .process-box5 .process-shape {
    right: auto;
    top: 50%;
  }

  .process-box5 .process-shape {
    left: -7px;
  }

  .process-box6 .process-shape {
    left: -6px;
    right: auto;
    top: 50%;
  }

  .process-box7::after {
    display: none;
  }

  .process-wrap.process-box1 .process-shape i,
  .process-wrap.process-box2 .process-shape i {
    transform: rotate(0);
    top: -10px;
    left: 0;
  }

  .process-wrap.process-box3 .process-shape i {
    transform: rotateZ(0);
    left: 0;
    top: -9px;
  }

  .process-wrap.process-box4 .process-shape i {
    transform: rotatez(131deg);
    top: 3px;
    left: -25px;
  }

  .process-wrap.process-box5 .process-shape i {
    transform: rotatez(180deg);
    top: -10px;
    left: -28px;
  }

  .process-wrap.process-box6 .process-shape i {
    top: -9px;
    transform: rotatez(180deg);
    left: -28px;
  }

  .inner-process-blog {
    height: 310px;
  }
}

@media only screen and (min-width: 1400px) {
  .inner-process-blog {
    height: 270px;
  }
}

/* Achievement Works */
.achievement-works-wrapper {
  border-radius: 56px;
  background: #fff3ea;
}

.orange-heading {
  color: var(--bs-theme-orange);
}

/* Form  */
@media only screen and (min-width: 768px) {
  .custom-callback.opened .call_btn {
    right: 460px;
  }

  .custom-callback .banner-form {
    width: 540px;
  }
}