body {
  color: #444444;
    margin: 0;
    padding: 0;
}

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


.container{
overflow: hidden;
}


h2{ 
  font-size: 32px !important;
  font-weight: bold !important;
  text-transform: uppercase !important; 
  position: relative !important;
}


.headingUnderline {
  margin-bottom: 45px;
}


.form-container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 350px;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-container label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.form-container input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.form-container .submit-btn {
  background-color: #98ab47;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  margin-top: 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.form-container .submit-btn:hover {
  background-color: #a0ad62;
}


/* container */


.container {
    max-width: 1320px; 
    width: 100%; 
    margin: 0 auto; 
    padding: 0 15px; 
    overflow-x: hidden;
}




@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
        padding: 0 30px !important;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%; 
        padding: 0 10px;
    }
}



/*  */


#header {
    background: #1b1b1b;
    transition: all 0.5s;
    z-index: 997;
    padding: 8px 0;
  }
  
  #header.header-scrolled {
    padding: 12px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  #header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-weight: 600;
  }
  
  #header .logo a {
    color: #111111;
  }
  
  #header .logo a span {
    color: #98ab47;
  }
  

  .header-logo-img {
      height: 75px !important;
      width: 200px !important;
      max-height: 100% !important;
  }

  .mobile-nav-toggle {
    color: white !important;
}
  
  
  /*--------------------------------------------------------------
  # Get Startet Button
  --------------------------------------------------------------*/
  .get-started-btn {
    margin-left: 30px;
    background: #98ab47;
    color: #fff;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
  }
  
  .get-started-btn:hover {
    background: #fff;
    color: #98ab47;
  }
  
  @media (max-width: 992px) {
    .get-started-btn {
      margin: 0 15px 0 0;
      padding: 6px 18px;
    }

    .services-box-full-img {
      padding-top: 20px;
  }
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #98ab47;
  }
  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    color: #000;
  }
  
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: #98ab47;
  }
  
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #111111;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #111111;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: #98ab47;
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #98ab47;
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }




  /* services-home-banner */

  .double-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.double-box .services-box-full:nth-child(1) .services-box-full-content {
  padding: 0px 40px;
  padding-right: 20px;
}

.double-box .services-box-full:nth-child(2) .services-box-full-content {
  padding: 0px 40px;
}

.services-home-banner  {
 background-image: url("/front-assets/services/img/173276231686307567.jpg");
 background-position: center;
 background-size: 100%;
 padding: 117px 0 80px;
background-size: cover;
align-items: center;
position: relative;
display: flex;
display: -webkit-flex;
background-repeat: no-repeat;
background-color: rgba(4, 12, 23, .7);
min-height: 100vh;
}

.services-home-banner .container .left-box {
    flex-basis: 60%;
}

.services-home-banner .container .right-box {
    flex-basis: 33%;
    position: relative;
}

.services-home-banner:before {
    content: "";
    background: rgba(4, 12, 23, .7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-home-banner .container {
    position: relative;
    z-index: 9;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-home-banner .container h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #98ab47;
}

.services-home-banner .container p {
    color: #fff;
    margin: 19px 0 37px 0;
    font-size: 20px;
    line-height: 1.6;
}

.breadcrumbs {
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    text-align: left;
    z-index: 2;
    font-weight: 500;
    margin-bottom: 30px;
}


.breadcrumbs a {
    margin-right: 16px;
    color: white;
}

.breadcrumbs a:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 10px;
    background: url(/front-assets/services/img/breadcrumbs-arrow.png) top center no-repeat;
    background-size: 100%;
    margin-left: 7px;
    margin-top: 7px;
    color: white;
}


.services-home-button {
    display: flex;
    align-items: center;
    position: relative;
}

.services-home-button .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 18px;
    color: #fff;
    border: 1px solid #fff;
    padding: 19px 80px 19px 30px;
    border-radius: 7px;
    font-weight: 500;
    position: relative;
    border-radius: 50px !important ;
    transition: all 0.3sease;
    cursor: pointer;
    line-height: 26px;
}

.services-home-button .btn.rounded::before {
    border-radius: 50px;
    width: 57px;
    height: 57px;
    background: #fff url(/front-assets/services/img/btn-icon.svg) 0 0 no-repeat;
    background-size: 18px;
    background-position: center right 20px;
}
.services-home-button .btn::before {
    transition: all 0.85s cubic-bezier(.68,-.55,.265,1.55);
    transition: all 0.3s ease;
    content: "";
    width: 50%;
    height: 100%;
    background: #000;
    position: absolute;
    top: 3px;
    right: 3px;
}

.services-home-button .btn.rounded:hover::before {
    background: #98ab47 url(/front-assets/services/img/btn-icon.svg) 0 0 no-repeat;
    background-position: center right 20px;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}

.services-home-button .btn.rounded .text-white {
    color: #fff;
    position: relative;
}

.services-home-button .btn:hover {
    border-color: #98ab47;
    background: #98ab47;
}

.services-home-button .btn:hover .text-white {
    color: #05164d;
}


.services-home-banner .container .right-box:before {
    content: "";
    width: 111px;
    height: 96px;
    background: url(/front-assets/services/img/line-shape.png) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    left: -72px;
    top: -58px;
    display: none;
}

.services-home-button {
  margin-bottom: 35px;
}

.services-home-banner .container .right-box {
    flex-basis: 33%;
    position: relative
}

.services-home-banner .container .right-box:before {
    content: "";
    width: 111px;
    height: 96px;
    background: url(/front-assets/services/img/line-shape.png) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    left: -72px;
    top: -58px;
}

.services-home-banner .container .right-box .card-box:before {
    content: "";
    width: 55px;
    height: 55px;
    background: url(img/serspe-01.svg) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    left: -23px;
    top: 20px;
}

.services-home-banner .container .right-box .card-box:after {
    content: "";
    width: 60px;
    height: 60px;
    background: url(img/serspe-02.svg) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    right: -30px;
    bottom: 30px;
}


p.form-title.h5 {
  text-align: center;
  font-size: 24px;
  color: #98ab47;
  margin: 0;
}

form#quote-form input {
  padding: 8px;
}

.services-home-banner .container .right-box .card-box {
    width: 100%;
    text-align: center;
    position: relative;
    border: 1px solid #e0edff;
    border-radius: 10px;
    background: #fff;
    border-top: 4px solid #ffad00
}

.services-home-banner .container .right-box .card-box .card-top {
    padding: 20px 25px
}

.services-home-banner .container .right-box .card-box .card-top img {
    margin-top: -100px
}

.services-home-banner .container .right-box .card-box .card-top p {
    font-size: 14px;
    line-height: 21px;
    color: #414141;
    margin: 15px 0 0
}

.services-home-banner .container .right-box .card-box .card-top strong {
    font-weight: 500;
    color: #ffad00;
    font-style: italic
}

.services-home-banner .container .right-box .card-box .ratings {
    display: flex;
    flex-direction: row;
    border-radius: 0 0 10px 10px;
    justify-content: space-between;
    padding: 20px 25px;
    border-top: 1px solid rgba(0,0,0,.1);
    background: #f9f7f7
}

.services-home-banner .container .right-box .card-box .ratings .rating {
    flex-basis: 45%;
    position: relative;
    padding-right: 20px
}

.services-home-banner .container .right-box .card-box .ratings .rating:after {
    content: "";
    background: #bcbcbc;
    position: absolute;
    top: 0;
    right: -5px;
    width: 1px;
    height: 100%
}

.services-home-banner .container .right-box .card-box .ratings .rating img {
    margin: 0 0 5px;
    display: block
}

.services-home-banner .container .right-box .card-box .ratings .rating span {
    color: #131e29;
    display: block;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-align: left
}

.services-home-banner .container .right-box .card-box .ratings .rating strong {
    font-weight: 600;
    color: #131e29
}

.services-home-banner .container .right-box .card-box .ratings .rating:last-child {
    padding-right: 0
}

.services-home-banner .container .right-box .card-box .ratings .rating:last-child:after {
    display: none
}

.services-home-banner .container .right-box .card-box:before {
    content: "";
    width: 55px;
    height: 55px;
    background: url(/front-assets/services/img/serspe-01.svg) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    left: -23px;
    top: 20px
}

.services-home-banner .container .right-box .card-box:after {
    content: "";
    width: 60px;
    height: 60px;
    background: url(/front-assets/services/img/serspe-02.svg) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    right: -30px;
    bottom: 30px
}

.services-home-banner .container .right-box:before {
    content: "";
    width: 111px;
    height: 96px;
    background: url(/front-assets/services/img/line-shape.png) 0 0 no-repeat;
    background-size: 100%;
    position: absolute;
    left: -72px;
    top: -58px
}

.services-home-banner .container .right-box .se-logo-box {
    margin: 20px 0 0;
    gap: 10px
}

.services-home-banner .container .right-box .se-logo-box .logo-box {
    width: 96px;
    height: 54px;
    display: inline-block;
    background-size: 100%
}

.services-home-banner .container .right-box .se-logo-box .logo-box.logo1 {
    background: url(/front-assets/services/img/bdge-01.svg) 0 0 no-repeat
}

.services-home-banner .container .right-box .se-logo-box .logo-box.logo2 {
    background: url(/front-assets/services/img/bdge-02.svg) 0 0 no-repeat
}

.services-home-banner .container .right-box .se-logo-box .logo-box.logo3 {
    background: url(/front-assets/services/img/bdge-03.svg) 0 0 no-repeat
}

.services-home-banner .container .right-box .se-logo-box .logo-box.logo4 {
    background: url(/front-assets/services/img/bdge-04.svg) 0 0 no-repeat
}




/* services box*/

.services {
    padding-bottom: 100px;
}
.services-box-full {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(150, 168, 204, 0.12) 0px 4px 8px, rgba(154, 188, 255, 0.21) 0px 4px 20px;
}

.services .container h2 {
    padding: 80px 0 80px 0;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase
}

.services-box-full-content {
    padding: 0px 80px;
}

.services-box-full-content h4 {
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    font-size: 26px;
    margin-top: 8px;
    min-height: 52px;
    display: flex;
    align-items: center;
    height: 100%;
}

.services-box-full-content p a {
    color: #98ab47;
}

.services-main{
display: flex;
flex-direction: column;
gap: 40px;
}

.services-box-full2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    box-shadow: rgba(150, 168, 204, 0.12) 0px 4px 8px, rgba(154, 188, 255, 0.21) 0px 4px 20px;
}










/* customer */

.customers {
padding:70px 0;
background: linear-gradient(180deg, #91a344 0%, #727d46 100%);
}

.customers h2 {
    color: white;
    font-weight: 700;
    font-size: 46px;
    line-height: 50px;
}

.customers p {
    color: white;
}

.customers .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  overflow: hidden;
}

.customers .container .content {
  width: 50%;
}

.customers .container .round-slide {
  width: 50%;
}

.customers .container .round-slide .cir-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.customers .container .round-slide .cir-sec .cir-box {
  display: flex;
  width: 30%;
  justify-content: center;
}

.customers .container .round-slide .cir-sec .cir-box .text-wrap {
  width: 100%;
  padding: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  position: relative;
  aspect-ratio: 1 / 1;
}

.customers .container .round-slide .cir-sec .cir-box .text-wrap .display {
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
}

.customers .container .round-slide .cir-sec .cir-box .text-wrap .paragraph {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
  text-align: center;
  line-height: 22px;
}

.customers .container .round-slide .cir-sec .cir-box .text-wrap .wheel-sc {
  position: absolute;
  line-height: 1.5rem;
  padding: 15px;
  overflow: visible;
  letter-spacing: 6px;
}

.animate-spin-slow {
  animation: counterclockwise 22slinear infinite;
}

.customers .container .round-slide .cir-sec .cir-box .text-wrap .fill-text {
  fill: rgb(255 255 255 / 29%);
  font-size: 10px;
}

@keyframes counterclockwise {
  0% {
      transform: rotate(0deg)
  }

  to {
      transform: rotate(-1turn)
  }
}

.animate-spin-slow {
  animation: counterclockwise 22s linear infinite
}






/* ecom-devloers */

.sectionPadding, .section-padding {
  padding: 80px 0;
}

p.lead-text {
  text-align: center;
}

.parent-template.child-template.hire-python h1.tech-h2, .parent-template h2.tech-h2 {
  font-size: 47px;
  color: #1e232a;
  font-weight: 700;
  margin-bottom: 73px;
}

 .lead-text {
  font-size: 20px;
  color: #1e232a;
  font-weight: 500;
}

.laravel-tech-stack {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
  box-shadow: 0 0 0.9375rem rgba(34, 34, 34, .1);
}

.laravel-tch-name {
  flex: 0 0 25%;
  background-color: #232830;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laravel-tch-list {
  flex: 1;
  padding: 20px;
  background-color: #fff;
}

.laravel-tch-list span {
  background-color: #f1f7d6;
  padding: 5px 10px;
  display: inline-block;
  margin: 6px;
  border-radius: 5px;
}




/* our - process */

.development-phase .col-box-outer {
  justify-content: center;
}
.margin-t-100 {
  margin-top: 100px;
}
.dis-flex {
  display: flex;
  flex-wrap: wrap;
}

.development-phase .flex-6 {
  flex-basis: 16%;
  padding-right: 30px;
  position: relative;
}

.development-phase .flex-6:before {
  content: "";
  position: absolute;
  left: 87px;
  top: -34px;
  background: url(/front-assets/services/img/dash-shape.png) no-repeat;
  width: 226px;
  height: 52px;
  background-size: 100%;
}

.flex-6.before-none:before {
  display: none;
}

.development-phase .flex-6:nth-child(6n) {
  padding-right: 0;
}
.development-phase .flex-6 {
  flex-basis: 16%;
  padding-right: 30px;
  position: relative;
}

.development-phase .flex-6 .box {
  background: #fff;
}
.development-phase .flex-6 .box {
  padding: 10px 10px 50px;
  border-radius: 35px;
  border: 1.963px solid rgba(0, 0, 0, .04);
  background: white;
  height: 100%;
  transition: all 0.3s ease-in-out;
  text-align: center;
  position: relative;
}

.development-phase .flex-6 .box:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: -15px;
  background: url(/front-assets/services/img/yellow-shape.png) no-repeat;
  width: 37px;
  height: 37px;
}

.development-phase .flex-6 .box h4 {
  padding: 20px 10px;
  border-radius: 20px;
  background: rgb(241 247 214);
  color: #212121;
}

.development-phase .flex-6 .box p {
  font-size: 14px;
  line-height: 160%;
  margin: 15px 0 0;
}



/* our-approach */

 .our-approach {background-color: #1e232a;}
 .our-approach h2 {color: #fff!important;}
 .our-approach .lead-text {color: #fff;}
 .our-approach .section-body {margin-top: 60px;}
 .our-approach-wrapper {display: flex;}
 .approach-card {flex: 0 0 20%; padding: 15px; position: relative;}
 .number-img {position: absolute; left: 91px; top: -35px;}
 img.arrow-img {position: absolute; left: 150px; top: 54px;}
 .approach-header {position: relative;}
 .approach-header .icon {width: 85px; height: 85px; background: #faffe2 url('/front-assets/services/img/our-approach.png') no-repeat 50% 0; border-radius: 6px;}
 .approach-header .title {font-size: 18px; font-weight: 700; font-family: 'Poppins',sans-serif; color: #fff; margin-top: 20px;}
 .approach-body {margin-top: 20px;}
 .approach-body p {color: #fff;}

 .approach-card:nth-child(2) .approach-header .icon {background-position-y: -92px;}
 .approach-card:nth-child(3) .approach-header .icon {background-position-y: -182px;}
 .approach-card:nth-child(4) .approach-header .icon {background-position-y: -272px;}
 .approach-card:nth-child(5) .approach-header .icon {background-position-y: -362px;}


 .approach-header .icon {background-image: url('/front-assets/services/img/our-approach.png');}

 .our-approach {background-color: #1e232a;}
 .our-approach h2 {color: #fff!important;}
 .our-approach .lead-text {color: #fff;}
 .our-approach .section-body {margin-top: 60px;}
 .our-approach-wrapper {display: flex;}


 .approach-header {position: relative;}
 .approach-header .title {font-size: 18px; font-weight: 700; font-family: 'Poppins',sans-serif; color: #fff; margin-top: 20px;}
 .approach-body {margin-top: 20px;}
 .approach-body p {color: #fff;}

 .approach-header .icon {width: 85px; height: 85px; background: #faffe2 url('/front-assets/services/img/our-approach.png') no-repeat 50% 0; border-radius: 6px;background-position-y: 16px;}
 .approach-card:nth-child(2) .approach-header .icon {background-position-y: -74px;}
 .approach-card:nth-child(3) .approach-header .icon {background-position-y: -154px;}
 .approach-card:nth-child(4) .approach-header .icon {background-position-y: -234px;}
 .approach-card:nth-child(5) .approach-header .icon {background-position-y: -314px;}





/* cta-button */


section.cta-strip {
  padding: 50px;
  background: linear-gradient(180deg, #91a344 0%, #727d46 100%);
}

section.cta-strip p.title {
  color: white;
  font-size: 33px;
  font-weight: 700;
}

section.cta-strip .col-md-12 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.cta-strip p.title {
  color: white;
  font-size: 33px;
  margin: 0;
  width: 80%;
}

section.cta-strip p {
  margin: 0;
}
section.cta-strip a.cta-button {
  border-radius: 5px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid white;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 600;
  height: 51px;
  overflow: hidden;
}








/* hiring - model */

.margin-t-50 {
  margin-top: 50px;
}


.hire-model-tab .hire-tabs-section .tab-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hire-model-tab .hire-tabs-section .tab-nav {
  list-style-type: none;
  flex-basis: 100%;
  width: 100%;
  position: relative;
}

.hire-model-tab .hire-tabs-section .tab-nav .tab-scroll {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0 70px;
  justify-content: center;
}

.hire-model-tab .hire-tabs-section .tab-nav .tab-scroll .tablist {
  padding: 0;
  margin: 0 5px;
}

.hire-model-tab .hire-tabs-section .tab-nav .tab-scroll .tablist a {
  height: 100%;
  font-size: 18px;
  color: #414141;
  font-weight: 500;
  padding: 10px 35px;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  cursor: pointer;
}

.hire-model-tab .hire-tabs-section .bcontents {
  flex-basis: 100%;
  padding: 40px 50px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #05164D1A;
  background: linear-gradient(to bottom, #FFFDF6, #fff);
}

.hire-model-tab .hire-tabs-section .bcontents .tab-contents {
  display: none;
  text-align: center;
}

.hire-model-tab .hire-tabs-section .bcontents .tab-contents .dis-flex {
  align-items: center;
  justify-content: space-between;
}
.dis-flex {
  display: flex;
  flex-wrap: wrap;
}

.hire-model-tab .hire-tabs-section .bcontents .tab-contents .dis-flex .content-box {
  flex-basis: 40%;
  text-align: left;
}

.hire-model-tab .hire-tabs-section .bcontents .tab-contents .dis-flex .image-box {
  flex-basis: 40%;
}

.hire-model-tab .hire-tabs-section .bcontents .tab-contents.active {
  display: block;
}

.hire-model-tab .hire-tabs-section .bcontents .tab-contents .dis-flex {
  align-items: center;
  justify-content: space-between;
}

section#hire-model {
  padding: 100px 0;
}

.hire-model-tab .hire-tabs-section .tab-nav .tab-scroll .tablist.active a {
  background: #e8e8e8;
}
.hire-model-tab .hire-tabs-section .tab-nav .tab-scroll .tablist a {
  height: 100%;
  font-size: 18px;
  color: #414141;
  font-weight: 500;
  padding: 10px 35px;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  cursor: pointer;
}

.hire-model-tab .tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hire-model-tab .tab-scroll {
  display: flex;
  gap: 20px;
}

.hire-model-tab .tablist {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}



.bcontents .tab-contents {
  display: none;
}

.bcontents .tab-contents.active {
  display: block;
}




/* topics */















p.lead-text.aos-init.aos-animate {
  margin-bottom: 40px;
}



section {
  position: relative;
}

.head-txt {
  max-width: 1060px;
  margin: auto;
}

.tab-scroll-section h2 {
  font-size: 42px;
  line-height: 60px;
  font-weight: 700;
  color: #110302;
  margin: 0 0 15px;
}

.margin-t-100 {
  margin-top: 100px;
}

.dis-flex {
  display: flex;
  flex-wrap: wrap;
}

.tab-scroll-section .left-tabs {
  flex-basis: 30%;
}

.tab-scroll-section .right-tabs {
  flex-basis: 70%;
  padding-left: 55px;
}

.tab-scroll-section .sticky-tab {
  position: sticky;
  top: 100px;
}

.tab-scroll-section .tab-head {
  font-size: 24px;
  margin-bottom: 35px;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  color: #212121;
  margin-left: 0px;
}

.tab-scroll-section .tab-nav {
  max-height: 400px;
  padding-right: 30px;
}

.tab-scroll-section .tab-nav .tab-link.is-active, .tab-scroll-section .tab-nav .tab-link:hover {
  color: #212121;
  font-weight: 500;
  background: rgb(241 247 214);
  position: relative;
}

.tab-scroll-section .tab-nav .tab-link {
  display: block;
  color: #656565;
  margin: 0 0 10px;
  text-decoration: none;
  line-height: 26px;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  border-right: 4px transparent solid;
  transition: all 0.2sease-in-out;
}

div#scroll-box {
  display: flex;
  flex-direction: row;
  
}

.tab-scroll-section .tab-content {
  padding-top: 40px;
}

.tab-scroll-section h3 {
  color: #212121;
  margin-bottom: 22px;
}

.our-process {
  background: #f8f8f8;
  padding: 80px 0;
}



/* faq */

  /* General Styling */
  .faqSection {
    background-color: #f4f4f4;
    padding: 50px 0;
  }

  .headingUnderline h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #222;
  }

  .underline {
    width: 50px;
    height: 3px;
    background-color: #8c9d41;
    margin: 10px auto;
  }

  /* Accordion Styling */
  .accordion_container {
    width: 100%;
    margin: auto;
  }

  .accordion_head {
    background: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .accordion_head:hover {
    background: #eaeaea;
  }

  .accordion_body {
    max-height: 0;
    overflow: hidden;
    border-radius: 0 0 5px 5px;
    margin-bottom: 10px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0px;
  }

  .plusminus i {
    font-size: 20px;
    color: #000;
    transition: 0.3s;
  }

  .accordion_head.active {
    color: blue;
  }

  .accordion_head.active .plusminus i {
    color: red;
  }





  section#has-ug {
    padding: 80px 0;
    padding-bottom: 40px;
  }


  .our-approach p.para a {
    color: #8fa143;
}


/* footer */

#footer {
  color: #fff;
  font-size: 14px;
  background: #111111;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1b1b1b;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #98ab47;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer a {
  color: white;
  text-decoration: none;
}

.accordion_head h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.accordion_body {
  padding-top: 10px !important;
}



/* ============ */

.button2{
margin: 0 !important;
justify-content: flex-start !important;
}

.bcontents .content-box h3 {
  font-weight: 600;
}

.awards .right-box h4 {
  font-weight: 600;
  font-size: 20px !important;
  color: #98ab47 !important;
}

 .cta-strip a span {
  background: url(/front-assets/services/img/btn-cer-arrow.png) no-repeat 100% 50%;
  padding-top: 14px;
  padding-bottom: 15px;
  padding-right: 40px;
  display: block;
}

.awards .container {
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 0;
    gap: 40px;
}

.awards .container .left-box {
  width: 50%;
}

.awards .container .right-box {
  width: 50%;
}

.award-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 0px;
  padding-bottom: 30px;
}

.award-boxes span.aw-icon {
  height: 100px;
  width: auto;
}

.award-col {
  height: 100px;
    width: -webkit-fill-available;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.award-boxes span.aw-icon img{
width: 100px;
    height: 100px;
}



.awards .right-box h4 {
  margin-top: 30px;
}


/* Responsive  */



@media (max-width: 1399px){

  .services-home-banner .container {
    padding-top: 100px;
  }

  section.cta-strip p.title {
    width: 60%;
}

  .tab-scroll-section .right-tabs {
     padding-left: 0px; 
}

  .image-box img {
    width: 500px;
    object-fit: contain;
}


div#scroll-box {
  display: flex;
  flex-direction: column;
}

.tab-scroll-section .left-tabs {
  display: flex;
  justify-content: center;
}

div#right-scroll img.aligncenter.wp-image-16789.size-full {
  width: -webkit-fill-available;
  object-fit: contain;
}

img.aligncenter.wp-image-16799.size-full {
  width: -webkit-fill-available;
  object-fit: contain;
}

.tab-scroll-section h3 {
  text-align: center;
}

.se-logo-box.dis-flex {
  flex-wrap: nowrap;
}

}



@media (max-width: 1299px) {

  .development-phase .flex-6:before{
display: none;
  }

  .services-box-full-content {
    padding: 0px 30px;
}

  .development-phase .col-box-outer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 0;
}

.services-home-banner .container {
  padding-top: 40px;
}

.services-home-button {
  justify-content: center;
  margin-bottom: 100px;
}

.se-logo-box.dis-flex {
  justify-content: center;
}

}


@media (max-width: 1199px){
  .awards .container {
    display: flex;
    flex-direction: column;
}

.services .container h2 {
  padding: 70px 0 50px 0;
}

.awards {
  padding: 70px 0;
}
.image-box img {
  width: 450px;
  object-fit: contain;
}

}


@media (max-width: 1200px) {
  .services-home-banner .container {
    flex-direction: column;
    text-align: center;
  }
  .services-home-banner .container .left-box,
  .services-home-banner .container .right-box {
    flex-basis: 100%;
  }
  .services-home-banner .container .right-box {
    margin-top: 30px;
  }
  .our-approach-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.hire-model-tab .hire-tabs-section .bcontents .tab-contents .dis-flex {
  align-items: center;
  justify-content: space-between;
}
.dis-flex.col-box-outer.margin-t-100 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 0;
}

.development-phase .flex-6:before {
 display: none;
}

}

@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .services-main,
  .awards .container,
  .customers .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-box img {
    width: 240px;
    object-fit: contain;
    height: 323px;
}

  .services-box-full,
  .services-box-full2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .services-box-full-content {
    padding: 20px;
  }
  
  .awards .left-box {
    padding-right: 0;
  }

  .services-box-full-content h4 {
     justify-content: center !important; 
}

.awards .left-box ul {
  list-style-type: none;
}

.button2 {
  margin: 0 !important;
  justify-content: center !important;
}
.customers .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

}

@media (max-width: 768px) {
  .services-home-banner .container h1 {
    font-size: 32px;
  }
  .services-home-banner .container p {
    font-size: 16px;
  }

  .right-box {
    margin-right: 0;
}

  .dis-flex.col-box-outer.margin-t-100 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 0;
  }
  .services-home-button .btn {
    font-size: 16px;
    padding: 15px 40px;
  }
  
  .award-boxes {
    grid-template-columns: 1fr;
  }
  
  .tab-scroll-section .left-tabs,
  .tab-scroll-section .right-tabs {
    flex-basis: 100%;
    padding-left: 0;
    text-align: center;
  }
  
  .faqSection .accordion_head {
    font-size: 16px;
  }
  
  .customers .container .content,
  .customers .container .round-slide {
    width: 100%;
  }

  .services-home-button .btn {
    width: 50%;
}

section.cta-strip .col-md-12 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section.cta-strip p.title {
  width: 100% !important;
  text-align: center !important;
  padding-bottom: 35px !important;
}




.services-home-button .btn.rounded::before {
  border-radius: 50px;
  width: 50px;
  height: 50px;
}

div#right-scroll p {
  text-align: left;
}

div#right-scroll ul {
  text-align: left;
}

.development-phase .flex-6 .box p {
  text-align: center;
}

section#our-process p {
  text-align: center;
}

.customers .content {
  padding: 0 20px;
  text-align: center;
}

.customers p{
text-align: center;
}

.services-box-full-content p {
  text-align: center;
}

.services-home-banner p {
  text-align: center;
}

.award-boxes {
  padding: 0 30px;
}

}

@media (max-width: 576px) {
  .get-started-btn {
    font-size: 14px;
    padding: 6px 15px;
  }
  
  .faqSection .accordion_container {
    max-width: 100%;
    padding: 0 10px;
  }

  section.cta-strip p.title {
    width: 100% !important;
    text-align: center !important;
    padding-bottom: 30px !important;
    font-size: 28px;
    line-height: 35px;
}

.cta-strip a span {
  font-size: 16px;
}

section.cta-strip {
  padding: 40px 25px;
}
  
  .customers h2 {
    font-size: 28px;
  }
  
  .customers .container {
    gap: 40px;
  }
  
  .customers .container .round-slide .cir-sec {
    flex-direction: column;
  }



.services-home-button .btn {
  padding: 19px 37px;
  width: 80%;
}

.services-home-button .btn.rounded::before {
  width: 58px;
  height: 58px;
}

.services-home-button .btn {
  justify-content: flex-start;
}

.services-box-full-img img {
  width: 300px;
}

.logo-slider-container {
  width: 75%;
}

.award-col {
  width: 50%;
}

.award-slider {
  display: none;
}

.double-box {
  flex-direction: column;
}

.image-size img{
height: auto !important;
}

.awards .left-box h2 {
  line-height: 44px;
}

.award-col {
  width: 100%;
}
.button2 a.btn.rounded {
  width: 90%;
}

.customers .container .round-slide .cir-sec {
  gap: 10px;
}

.customers .container .round-slide .cir-sec .cir-box {
  width: 45%;
}

.laravel-tech-stack {
  flex-direction: column;
  margin-bottom: 25px;
}

.dis-flex.col-box-outer.margin-t-100 {
  grid-template-columns: 1fr;
}
.development-phase .flex-6 {
  padding-right: 0;
}

.bcontents .dis-flex {
  flex-direction: column;
}

.hire-model-tab .hire-tabs-section .bcontents {
  flex-basis: 100%;
  padding: 30px 30px;

}

div#right-scroll img.aligncenter.wp-image-16789.size-full {
  width: auto;
  object-fit: contain !important;
  height: auto;
}

div#right-scroll img {
  text-align: center !important;
}

img.aligncenter.wp-image-16799.size-full {
  width: auto;
  object-fit: contain !important;
  height: auto;
}
}
















/* service-page */

/*  */
.portfolio-slider button.slick-next.slick-arrow:hover {
  background: #98ab47;
}

.slick-prev {
  left: -15px !important;
}

.serve-card-box-container .card:hover li {
  color: white !important;
}



.service-inner-home-banner .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  padding: 100px 40px;
}

.service-inner-home-banner {
  margin-top: 91px;
  background-image: url("/front-assets/services/img/innner-banner-bg.png");
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: bottom;
    background-size: cover;
    padding-top: 150px;
    padding-bottom: 120px;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 145px;
    padding-top: 170px;

}

.service-inner-home-banner .left-box {
  width: 55%;
}

.inner-home-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 40px;
} 

.service-inner-home-banner .left-box h1 {
  font-weight: 700;
  color: white;
  padding-bottom: 10px;
}

.service-inner-home-banner .left-box p {
  color: white;
}

.inner-home-counter .counter-box span {
  color: white;
  font-size: 45px;
  font-weight: 600;
}

.counter-box:nth-child(1) {
  /* border-right: 2px solid white; */
  padding: 0 20px;
  color: #98ab47;
}

.counter-box:nth-child(2) {
  /* border-right: 2px solid white; */
  padding: 0 20px;
}

.counter-box:nth-child(3) {
  padding: 0 20px;
}


.breadcrumb-container .container {
  padding: 0;
}


.counter-container .label {
  font-size: 16px;
  font-weight: 600;
}





/* cta-2 */
.contact-banner-secound-background {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(274.23deg, #8aa615 -5%, #3e4b06 76.76%);
  border-radius: 20px;
  padding: 55px 25px;
  position: relative;
  overflow: hidden;
}

.contact-banner-secound-background {
  padding: 55px 40px;
}

.contact-banner-secound-background:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 60%;
  background-image: url(/front-assets/services/img/talk-exp-back-icon-1.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: 100%;
  background-position-y: top;
}


.contact-banner-secound-section .line-background {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
}

.contact-banner-secound-content {
  z-index: 1;
  position: relative;
  text-align: center;
}


.contact-banner-secound-background:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 45%;
  background-image: url(/front-assets/services/img/talk-exp-back-icon-2.svg);
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: 100%;
  background-position-y: bottom;
}

.contact-banner-secound-content .title {
  margin-bottom: 25px;
}

.title span {
  color: #98ab47;
  font-weight: 700;
  font-size: 30px;
}
.contact-banner-secound-content > *:not(.button) {
  color: white;
  margin-bottom: 35px;
}

.contact-banner-secound-section.section-spacing {
  padding-bottom: 65px;
  padding-top: 20px;
}

.contact-banner-secound-section h3.h4.title {
  font-size: 30px;
}

.contact-banner-secound-content .button {
  margin-left: auto;
  margin-right: auto;
  background: white;
  color: #98ab47;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 17px;
}

.contact-banner-secound-content .button:hover {
  background: #98ab47;
  color: white;
}





/* inner-logo-slider */
.inner-logo-slider {
  overflow: hidden;
  width: 100%;
  background: #fff;
  margin-top: -20px;
}

.slider {
  position: relative;
  width: 100%;
  height: 150px; /* Adjust as needed */
}

.slide-track {
  display: flex;
  width: calc(300px * 20); /* If each image is ~250px and you want seamless loop */
  animation: scroll 40s linear infinite;
}



.slide {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}







/* inner-second */

.image-with-full-size-content-part:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0px;
  width: 37%;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: top;
  background-image: url(/front-assets/services/img/image-with-full-size-text-back-01-01.svg);
}

.correct-icon-with-border-list li {
  list-style: none;
  margin-bottom: 20px;
  position: relative;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 15px;
}

.correct-icon-with-border-list li:before {
  content: "";
  position: absolute;
  left: -40px;
  top: 3px;
  background-image: url(/front-assets/services/img/list-correct-01.svg);
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  background-size: 25px;
}


.migrate h2.section-head-title {
  color: #98ab47;
}

.section-head-part .section-head-title:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  width: 90px;
  height: 4px;
  background-color: #98ab47;
  bottom: -8px;
  border-radius: 5px;
}

.image-with-full-size-content-part .section-head-part .section-head-title:before {
  left: 0;
  transform: translate(0);
}

.section-head-part p {
  padding-top: 12px;
}

.image-part {
  z-index: 99;
  position: relative;
}

.migrate .align-items-center {
  align-items: center !important;
  margin-bottom: 90px;
}

ul.correct-icon-with-border-list h3.h5.title {
  font-weight: 600;
  color: #98ab47;
  font-size: 25px;
}









/* support-service */


.supports-boxs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.support-service {
  padding: 100px 0 40px 0;
}

.support-service h2 {
  text-align: center;
}

.support-service h2:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #98ab47;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.support-service .support-p {
  padding-top: 50px;
  text-align: center;
}



.supports-boxs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}


.supports-boxs .card {
  height: 400px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.36s ease-in-out;
  border-top: 7px solid #97aa47;
    border-radius: 0;
}



.supports-boxs .icon img {
  width: 120px;
}

.supports-boxs .card-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  transition: opacity 0.36s ease-in-out;
}

.supports-boxs .card:hover .card-content {
  opacity: 0;
}

.supports-boxs .card-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #faffe5;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.48s ease-in-out, opacity 0.36s ease-in-out;
}

.card-hover .title {
  padding: 0 !important;
}

.card-hover  .description {
  text-align: left !important;
}





.supports-boxs .card:hover .card-hover {
  opacity: 1;
  transform: translateY(0);
}

.supports-boxs .icon {
  width: 80px;
  height: 80px;
  background: #f4f4f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}



.supports-boxs .title {
  font-size: 22px;
    font-weight: bold;
    color: #97aa47;
    padding: 10px;
    padding-top: 25px;
}

.supports-boxs .description {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}






/* maintannace */


.maintanance {
  background-image: url(/front-assets/services/img/ecom-wd-bg.jpg);
  background-position: center;
  background-size: cover;
  padding: 100px 0;
  background-repeat: no-repeat;
}

.maintanance h2 {
  text-align: center;
}

.maintanance h2:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #98ab47;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.maintenance-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  border-bottom: 1px solid #e6e6e6;
  padding: 30px 0;
}

.maintenance-box .number {
  width: 20%;
}

.maintenance-box .name-title {
  width: 30%;
}

.maintenance-box .content {
  width: 50%;
}


.maintenance-box h3 {
  font-weight: 600;
  font-size: 22px;
}

.number-container {
  position: relative;
  width: 100px;
  height: 100px;
}

/* Static gray border */
.circle-bg {
  fill: none;
  stroke: #ccc; /* Gray color */
  stroke-width: 5;
}

/* Animated red border */
.circle {
  transition: stroke-dashoffset 2s ease-out;
  transform: rotate(-90deg);
  transform-origin: center;
  stroke-width: 5px;
  stroke: #98ab47;
  fill: transparent;
}

/* Start animation when page loads */
.animate .circle {
  stroke-dashoffset: 0;
}

.number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: #222;
}

.maintanance h2 {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 50px;
}






/* highlight */

.highlight {
  padding: 40px 0;
}

.highlight h2 {
  text-align: center;
}

.highlight h2:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #98ab47;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.highlight-box {
  text-align: center;
  margin-top: 70px;
}

section#counter-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* .counter-container {
  padding: 30px 20px;
  background: aliceblue;
  border-radius: 12px;
} */


.counter-box:nth-child(1) {
  /* border-right: 2px solid white; */
  padding: 0 20px;
  font-size: 40px;
  font-weight: 700;
}

.counter-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.counter-container {
  text-align: center;
  flex: 1 1 200px;
}

.counter-box {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  transition: all 0.3s ease;
}

.label {
  font-size: 1rem;
  margin-top: 10px;
  color: #666;
}




/* serve */

.serve-card-box-container .card {
  position: relative;
  background-color: white;
  color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.4s ease;
}

/* Background fill animation */

.serve-card-box-container .card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, #abc246, #88a218); /* Hover gradient */
  bottom: 0;
  left: 0;
  transition: height 0.5s ease-in-out;
  z-index: 0;
}

/* Number Style */
.serve-card-box-container .card .number {
  font-size: 55px;
  font-style: italic;
  font-weight: bold;
  color: rgb(220 220 220 / 80%);
  position: absolute;
  top: 40px;
  transition: color 0.4s ease;
  z-index: 2;
  left: 80%;
  font-family: "playball-regular";
}

.serve h2 {
  text-align: center;
  margin-bottom: 40px;
}

.serve p {
  text-align: center;
}

.serve-card-box-container .content li {
  color: gray;
}

/* Icon */
.serve-card-box-container .icon {
  width: 70px;
  height: 70px;
  background: rgb(152 171 71);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: background 0.4s ease;
  position: relative;
  z-index: 2;
}

.serve-card-box-container .icon img {
  width: 40px;
  height: 40px;
  z-index: 2;
}

/* Title */
.serve-card-box-container .title {
  font-size: 22px;
  font-weight: 600;
  margin: 15px 0 10px;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
  color: #98ab47;
  height: 70px;
}

/* Content */
.serve-card-box-container .content {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 2;
}

/* Hover Effects */
.serve-card-box-container .card:hover {
  transform: translateY(-10px);
}

.serve-card-box-container .card:hover::after {
  height: 100%; /* Animate fill effect */
}

.serve-card-box-container .card:hover .number {
  color: rgba(255, 255, 255, 1);
}

.serve-card-box-container .card:hover .icon {
  background: rgba(255, 255, 255, 0.3);
}

.serve-card-box-container .card:hover .title {
  color: white;
}

.serve-card-box-container .card:hover .content {
  opacity: 1;
}


.serve-card-box-container .card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(/front-assets/services/img/workflow-back-line.png);
  background-repeat: no-repeat;
  z-index: 1;
}



.serve-card-box-container {
display: flex;
justify-content: space-between;
gap: 20px;
align-items: baseline;
padding: 50px 0;
}

.serve-card-box-container .card:hover .icon{
border-radius: 50%;
}













/* custome-css*/

.award-slider {
  background: #fff;
  padding: 20px 0;
  overflow: hidden;
}

.logo-slider-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.logo-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.logo-slider {
  display: flex;
  gap: 50px;
  animation-timing-function: linear;
}

.logo-slider img {
  height: 60px;
  width: auto;
  flex-shrink: 0;
}

/* Duplicate content using pseudo element if JS not preferred */
.logo-slider::after {
  content: attr(data-clone);
  display: flex;
}

/* Right to Left */
.scroll-right {
  animation: scrollRight 20s linear infinite;
}

@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Left to Right */
.scroll-left {
  animation: scrollLeft 20s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.inner-cta-banner button:hover a {
  color: white;
}

td.req-a-quote {
  padding: 20px;
}

.page-main-banner-content:not(.slick-initialized) .page-main-banner-content-list:not(:first-child) {
  display: none;
}

.brand-slider:not(.slick-initialized) .brand-list:not(:first-child) {
  display: none;
}

.page-main-banner-contact-form .submit-button:hover {
  background: transparent;
  color: #98ab47;
  border: 2px solid #98ab47;
}




.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-field {
  font-size: 14px;
  border: 1px solid gray;
  padding: 12px 20px;
  width: 100%;
}

.form-field::placeholder {
  color: #808080;
}

.form-field:focus::placeholder {
  color: var(--primary-color);
}

.select-location {
  position: relative;
}

/* .select-location.loaded .form-field{padding-left: 75px;} */
.select-location .form-field {
  width: 100%;
  margin-left: auto;
  display: block;
  padding-left: 89px;
}

.select-location select.form-field {
  min-height: 48px;
  cursor: pointer;
  padding: 12px 26px 12px 6px;
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url(../images/select-arrow-icon.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: center;
}

.iti {
  width: 100%;
}

.hide {
  display: none;
}

label.error {
  color: red;
  font-size: 12px;
  margin-bottom: 0;
  position: absolute;
  bottom: -14px;
  left: 0;
}

.successmsg {
  color: green;
  font-size: 14px;
  margin-bottom: 5px;
}

.errormsg {
  color: red;
  font-size: 14px;
  margin-bottom: 5px;
}

















/* end select country css */

/* breadcrumb css start */
.breadcrumb-container {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 0;
  margin-bottom: 40px;
}

.breadcrumb-container .breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.breadcrumb-container .breadcrumb li {
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0;
}

.breadcrumb-container .breadcrumb li+li:before {
  content: "";
  background-image: url(/front-assets/services/img/breadcrump-arrow.svg);
  background-repeat: no-repeat;
  width: 5px;
  height: 10px;
  background-size: contain;
  display: inline-block;
  padding: 0 10px;
  background-position: center;
}

.breadcrumb-container .breadcrumb li a {
  display: inline-block;
   color: white; 
}

.breadcrumb-container .breadcrumb li span {
   color: white; 
}

@media screen and (max-width: 767px) {
  .breadcrumb-container .breadcrumb {
      justify-content: center;
  }
}

/* breadcrumb css end */

/* page main banner */
.page-main-banner {
  /* background-image: linear-gradient(135deg, #3b1082, #9c34c5); */
  background-color: transparent;
  background-image: url(/front-assets/services/img/innner-banner-bg.png);
  background-color: var(--primary-color);
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: bottom;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 120px;
  margin-top: 0;
  margin-bottom: 0;
}

.page-main-banner-content {
  margin-bottom: 50px;
}

.page-main-banner-content-list .title {
      color: white;
  font-weight: 700;
}

.page-main-banner-content .large-text.content p.text {
color: white;
}

.page-main-banner-content-list .content {
  color: var(--banner-top-content-color);
}

.page-main-banner-content-list .content .text a {
  color: var(--banner-top-content-color);
  transition: all 0.3s linear;
}

.page-main-banner-content-list .content .text a:hover {
  color: var(--Secoundry-color);
}

.page-main-banner-company-count {
  max-width: 570px;
  margin: 0 auto 25px auto;
}

.page-main-banner-company-count-list {
  text-align: center;
  padding: 0 15px;
  position: relative;
  width: 33.333%;
}

.page-main-banner-company-count-list:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.page-main-banner-company-count-list:last-child:before {
  display: none;
}

.page-main-banner-company-count-list .count {
 color: white; 
  width: 100%;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.page-main-banner-company-count-list .count-label {
   color: white; 
}

.page-main-banner-certified-icon {
  max-width: 274px;
  margin-left: auto;
}

.page-main-banner-contact-form {
  padding: 25px;
  background-color: #fff;
  border-radius: 20px;
  max-width: 370px;
  margin: 0 auto;
}

.page-main-banner-contact-form .form-title {
  text-align: center;
    font-size: 24px;
    color: #98ab47;
}

.page-main-banner-contact-form textarea {
  max-height: 125px;
  height: 125px;
  max-width: 100%;
}

.page-main-banner-contact-form .form-group:last-child {
  margin-bottom: 0;
}

.page-main-banner-contact-form .submit-button {
  margin: 0 auto;
  min-width: 160px;
  background: #98ab47;
  color: white;
  padding: 8px 0;
  border: none;
  border-radius: 2px;
  font-weight: 600;
  border: 2px solid #98ab47;
}

.page-main-banner-colm.col-lg-5.col-md-5 input {
  padding: 8px;
}

.page-main-banner-content .slick-dots {
  justify-content: flex-start;
}

.page-main-banner-list {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0px 15px 0px;
}

.page-main-banner-list li:not(.full-width) {
  width: 50%;
}

.page-main-banner-contact-form .select-location .iti__country-list {
  max-width: 320px;
}

@media screen and (min-width: 501px) {
  .page-main-banner {
      padding-top: 140px;
  }
}

@media screen and (min-width: 768px) {
  .page-main-banner {
      padding-bottom: 110px;
      padding-top: 150px;
  }
}

@media screen and (min-width: 992px) {
  .page-main-banner {
      padding-top: 160px;
  }
}

@media screen and (min-width: 1200px) {
  .page-main-banner {
      padding-top: 170px;
  }
}

@media screen and (min-width: 1400px) {
  .page-main-banner {
      padding-bottom: 145px;
  }
}

@media screen and (min-width: 851px) and (max-width: 991px) {
  .page-main-banner-company-count-list .count-label {
      font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .page-main-banner {
      /* background-image: linear-gradient(135deg, #3b1082, #9c34c5); */
      background-color: transparent;
      padding-bottom: 100px;
      margin-bottom: 0px;
      /* box-shadow: 0px 0px 73px -15px rgba(0, 0, 0, 0.25); */
  }
}

@media screen and (max-width: 850px) {
    .page-main-banner .page-main-banner-colm {
        width: 100%;
        padding: 0;
    }

  .page-main-banner-certified-icon {
      margin-right: auto;
      margin-bottom: 30px;
  }

  .page-main-banner-content .slick-dots {
      justify-content: center;
  }

  .page-main-banner-content-list {
      text-align: center;
  }

  .page-main-banner-contact-form {
      max-width: 450px;
  }

  .page-main-banner-content {
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
  }

  .page-main-banner-list {
      flex-direction: column;
      align-items: center;
  }

  .page-main-banner-list li {
      width: auto !important;
  }
}


.form-group {
  display: flex;
  flex-direction: column;
}



/* innner-cta */



.package td.req-a-quote a.buynow-btn:hover {
  background: transparent;
  color: #98ab47;
  border: 2px solid #98ab47;
}

.inner-cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  text-align: center;
}

.inner-cta-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background-image: url(/front-assets/services/img/contact-thard-banner-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: center;
}

.inner-cta-banner {
  overflow: hidden;
  max-width: 950px;
  border-radius: 20px;
  background-image: url(/front-assets/services/img/banner-background.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0 auto 0px auto;
  padding: 40px;
  text-align: center;
  color: var(--banner-top-content-color);
  position: relative;
}


.inner-cta-banner h2 {
  color: white;
  margin-bottom: 25px;
}

.inner-cta-banner p {
  color: white;
  position: relative;
  padding-bottom: 10px;
  font-size: 18px;
}

.inner-cta-banner button {
  
  border: none;
  padding: 7px 15px;
  position: relative;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  background: white;
  color: #94a645;
}

.inner-cta-banner button:hover {
  background: #94a645;
  color: white;
}

section#content_section {
  padding-bottom: 70px;
  margin-top: 30px;
}

.serve .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.serve p {
  text-align: center;
  width: 60%;
  padding-top: 18px;
  font-size: 17px;
}


/* portfolio-slider */

.portfolio-slider .responsive img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.portfolio-slider .slick-prev, .slick-next {
  z-index: 1000;
}


.portfolio-slider .slick-slide img {
  display: block;
  width: -webkit-fill-available;
  margin: 0 15px;
  border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-slider .slick-list {
  margin: 0 -15px; /* Negative margin should match .slick-slide spacing */
}

.portfolio-slider .slick-prev, .slick-next {
  z-index: 1000;
  background: #98ab47;
  padding: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.portfolio-slider .slick-prev:before, .slick-next:before {
  font-family: 'slick';
  font-size: 33px;
}


.portfolio-slider button.slick-prev.slick-arrow.slick-disabled {
  left: -13px;
}

.portfolio-slider button.slick-next.slick-arrow {
  right: -10px;
}


.portfolio-slider {
  padding: 30px 0 60px 0;
}

.portfolio-slider .slick-initialized .slick-slide {
  padding: 20px 0px;
}

.portfolio-slider h2 {
  text-align: center;
  margin-bottom: 42px;
}


.serve h2:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #98ab47;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.package h2:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #98ab47;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.portfolio-slider h2:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #98ab47;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}



/* package */

.package .responsive-table {
  overflow-x: auto;
}

.package .pricing-table {
  border-collapse: collapse;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.package table tr:nth-child(odd) {
  color: #949494;
}
.package table tr:nth-child(odd) {
  background-color: #f9f9f9;
}


.package .pricing-table th {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center !important;
}

.package table tr th {
  background-color: #97aa46;
}

.package .pricing-table th, .package .pricing-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  color: #000;
  width: 25%;
  vertical-align: middle;
}

.package .pricing-table th {
  color: #fff !important;
  font-size: 30px;
  font-weight: 700;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center !important;
}

.package .pricing-table tr>*:first-child {
  text-align: left;
}

.package td.req-a-quote a.buynow-btn {
  padding: 10px 50px;
  background: #98ab47;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
}

.package {
  padding: 100px 0;
  text-align: center;
}

.package h2 {
  margin-bottom: 55px;
}






/* services-name */

.services-name {
  padding: 60px 0;
  text-align: center;
  padding-top: 0;
}

.services-name h2 {
  padding-bottom: 14px;
}

.services-name h2:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #98ab47;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.name-box-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
  margin-top: 40px;
}

.name-box-main .name-box p {
  margin: 0;
  padding: 35px 10px;
  text-align: center;
  background: #8c9d41;
  border-radius: 9px;
  color: white;
  font-size: 18px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;

}







/* inner-responsive */


@media (max-width: 1299px){
  .serve-card-box-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
}







@media (max-width: 991px){

  .breadcrumb-container .breadcrumb {
    justify-content: center;
    flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
}

.page-main-banner-contact-form {
  margin-top: 40px;
}

.image-with-full-size-content-part:before{
display: none;
}

.migrate h2.section-head-title {
  text-align: center;
  padding-top: 20px;
}

.image-with-full-size-content-part .section-head-part .section-head-title:before {
  left: 38%;
  bottom: -18px !important;
}

.section-head-part p {
  padding-top: 12px;
  text-align: center;
  padding-top: 30px;
}

.image-part {
  justify-content: center;
  display: flex;
  align-items: center;
}

.inner-cta-banner {
  margin: 0 30px;
}

.supports-boxs {
  grid-template-columns: 1fr 1fr;
}

}



@media (max-width: 768px){
  .maintenance-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.maintenance-box .content p {
  text-align: center;
}

.number-container {
  width: auto;
}

.maintenance-box .name-title {
  width: auto;
}

.maintenance-box .content {
  width: auto;
}
}





@media (max-width: 699px){
  .name-box-main {
    grid-template-columns: 1fr 1fr;
}
section#counter-section {
  grid-template-columns: 1fr;
}

.page-main-banner {
  padding-bottom: 120px;
}

.inner-logo-slider {
  margin-top: -55px;
}

.serve p {
  width: 100%;
}

.page-main-banner-contact-form textarea {
  outline: auto;
}

form#quote-form input {
  padding: 10px;
}
}






@media (max-width: 599px){
  .inner-cta-banner h2 {
    font-size: 24px !important;
  }

  .inner-cta-banner .container{
padding: 0 !important;
  }

  .supports-boxs {
    grid-template-columns: 1fr;
}

.image-part img {
  width: -webkit-fill-available;
  height: auto;
}
}

@media (max-width: 499px){
  .name-box-main {
    grid-template-columns: 1fr;
}
}

.name-box-main .name-box p {
    height: 180px !important;
}


@media (max-width: 699px){
.breadcrumb-container .breadcrumb li span {
    margin-left: 10px;
}
section#content_section {
     margin-top: 30px; 
}
  .inner-cta-banner {
        padding: 30px 20px;
    }
h2 {
    font-size: 24px !important;
}

.support-service {
    padding: 70px 0 40px 0;
}

.name-box-main .name-box p {
    font-size: 16px;
}
.highlight {
    padding: 20px 0;
}

.header-logo-img {
    height: 50px !important;
    width: 130px !important;
    object-fit: contain;
}

#header .container {
    padding: 0 10px !important;
}
}
.portfolio-slider .slick-track {
    height: fit-content !important;
}
.supports-boxs .card {
    height: 300px;
}
/*  

// 3 = Service Name = Services (https://www.icecubedigital.com/shopify-maintenance-services/,   )
// 4 = Expert Shopify Maintenance for a Range of Industries (https://www.icecubedigital.com/shopify-maintenance-services/)
// 5 = Clients, Optimized Websites, Satisfaction, Years Of Services (https://www.icecubedigital.com/shopify-maintenance-services/) = https://virtina.com/hire-shopify-developer/
// 6 = Industries We Serve (https://www.icecubedigital.com/shopify-maintenance-services/)
// 7 = FAQ
// 8 = Client Logo Slider (https://www.icecubedigital.com/shopify-maintenance-services/)
// 9 = Footer


1 = https://cartcoders.com/shopify-migration.php
2 = https://cartcoders.com/shopify-migration.php
3 = https://cartcoders.com/shopify-migration.php
6 = https://cartcoders.com/shopify-migration.php

cta = https://cartcoders.com/shopify-migration.php

  */