@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial&display=swap');


body,
html {
  font-family: 'Poppins', sans-serif;
  float: left;
  width: 100%;
  background: #fff;
  color: #1D1D1D;
}


a {
  text-decoration: none !important;
}

.full {
  width: 100%;
  float: left;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  max-width: 100% !important;
}

p {
  font-size: 14px;
  line-height: 26px;
  color: #222;
  font-weight: normal;
}

h2 {
  font-size: 30px;
  color: #232323;
  font-weight: 600;
  line-height: 40px;
}

.ptb-50 {
  padding: 50px 0;
}

.pt-50 {
  padding-top: 50px;
}

.pt-10 {
  padding-top: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-30 {
  padding-top: 30px;
}

.pb-50 {
  padding-bottom: 50px;
}

:root {
  --d-flex: flex;
  --justify-content: center;
  --align-item: center;
  --marign-auto: 0 auto;
  --border-radius-20: 20px;
  --f-size-22: 22px;
  --f-size-20: 20px;
}




.btn-dark {
  background: #1D1D1D;
  border-radius: 10px;
  font-size: 14.5px;
  padding: 10px 21px;
  transition: background-image 0.5s linear;
  border: 0;
}

.btn-dark:hover {
      background-image: linear-gradient(to right, #C9A263, #af7a2d);
}


.mini-head {
  position: relative;
  color: #64943e;
  font-size: 16px;
  font-weight: normal;
  z-index: 1;
  padding: 32px 0 10px 0;
}

.mini-head:after {
  position: absolute;
  left: -36px;
  top: -5px;
  background: url(../images/mini-head-after.svg)no-repeat left top;
  height: 100%;
  width: 100%;
  content: '';
  z-index: -1;
}

/*header-css*/

.start-header {
  opacity: 1;
  transform: translateY(0);
  padding: 20px 0;
  /*box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);*/
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  padding: 10px 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: #fff;
}

.start-header.scroll-on .navbar-brand img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navigation-wrap {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar {
  padding: 0;
}

.navbar-brand img {
  height: 55px;
  width: auto;
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}

.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid #000;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
  transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.nav-link {
  color: #1D1D1D !important;
  font-weight: normal;
  transition: all 200ms linear;
}

.nav-link.active {
  color: #64943e !important;
}

.nav-link.active:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #64943e;
  opacity: 1;
  transition: all 200ms linear;
}

.nav-item:hover .nav-link {
  color: #64943e !important;
}

.nav-link:hover .arrow {
    border-color: #64943e !important;
}

.nav-item.active .nav-link {
  color: #777 !important;
}

.nav-link {
  position: relative;
  padding: 5px 5px !important;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
}



.nav-item {
  position: relative;
  transition: all 200ms linear;
}

.nav-item .dropdown-menu {
  transform: translate3d(0, 10px, 0);
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  display: block;
  padding: 0 !important;
  margin: 0;
  transition: all 200ms linear;
}

.nav-item.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 999px;
  padding: 14px 0 !important;
  transform: translate3d(0, 0px, 0);
}

.dropdown-menu {
  padding: 10px !important;
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: #212121;
  background-color: #fff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.25);
  transition: all 200ms linear;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-item {
  padding: 8px 15px;
  color: #212121;
  border-radius: 2px;
  transition: all 200ms linear;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  background-color: rgb(92 146 67);
}

.btn-light {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  transition: .3s;
  color: #1D1D1D;
}

.btn-light:hover {
      background-image: linear-gradient(to right, #C9A263, #af7a2d);
  color: #fff;
}



/*hero-section-css*/
.hero-section-inner {
  padding: 160px 0 0;
}

.hero-section h1 {
  color: #1D1D1D;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
}

.hero-section h1 span {
  color: #64943e;
}

.hero-section-btn .btn-primary i {
  font-size: 29px;
}

.hero-section-btn .btn-primary {
  display: inline-flex;
  align-items: center;
}

.btn-primary {
      background-image: linear-gradient(to right, #64943e, #51832a);
  border: 0;
  border-radius: 10px;
  padding: 8px 16px;
  transition: transform 0.3s ease-out;
  font-size: 14.5px;
  box-shadow: 0 8px 9px 0 rgb(0 0 0 / 20%);
}

.btn-primary span {
  margin-left: 8px;
  transition: transform 0.3s ease-out;
}

.btn-primary:hover span {
  transform: translateX(4px);
}

.btn-primary:hover {
  background-position: 100% 0;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.hero-section .btn-dark {
  padding: 12px 28px;
  margin-left: 15px;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  background-color: #64943e;
  border: 0;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow: none;
}

.hero-section-btn {
  margin-top: 30px;
}

.hero-section-one {
  position: relative;
  z-index: 1;
}

.overlay-text {
  color: #1D1D1D;
  font-weight: 500;
  font-size: 160px;
  opacity: .05;
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: -155px;
  z-index: -1;
}

.hero-section {
  position: relative;
}


.hero-section-inner {
  position: relative;
}

.hero-section-inner:after {
  position: absolute;
  bottom: -150px;
  right: 0;
  background: url(../images/here-home-right.svg)no-repeat bottom right;
  content: '';
  height: 100%;
  width: 100%;
}

.hero-home-fixed {
  position: absolute;
  right: 9%;
  bottom: -60px;
  z-index: 9;
}

/*company-about-box css*/

.company-about-box {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 23px 50px 18px;
  box-shadow: 0 0px 30px rgb(0 0 0 / 6%);
}

.company-about ul {
  display: flex;
  justify-content: space-between;
}

.company-about {
  padding: 70px 0;
}

.company-about p {
  margin: 0;
}

.company-about h3 {
  margin-bottom: 2px;
  font-weight: 500;
}

.counters {
  display: flex;
  align-items: center;
  color: #64943e;
  font-size: 42px;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
}

.operator {
  font-size: 36px;
}

.operator-k {
  font-size: 27px;
}

.company-about-box ul li {
  position: relative;
}

.company-about-box ul li:after {
  position: absolute;
  content: '';
  right: -50px;
  top: 0;
  height: 60px;
  width: 1px;
  background: linear-gradient(130deg, #ffffff, #64943e 50.07%, #ffffff);
}

.company-about-box ul li:last-child:after {
  display: none;
}

.shopify-we-left {
  padding-right: 30px;
}


.video-btn i {
  display: inline-block;
  height: 65px;
  width: 65px;
  text-align: center;
  line-height: 65px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  margin-right: 20px;
  color: #64943e;
  box-shadow: 0 0px 20px rgb(0 0 0 / 8%);
  font-size: 28px;
  z-index: 1;
}

.video-btn i::before {
  left: 2px;
  position: relative;
}

.video-btn i::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 65px;
  height: 65px;
  background: rgba(149, 191, 71, 0.2);
  repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}

.popup-youtube span {
  color: #000;
  font-size: 18px;
  font-weight: normal;
}

.shopify-we-right {
  position: relative;
  z-index: 1;
}

.shopify-we-right:after {
  position: absolute;
  content: '';
  width: 250px;
  height: 130px;
  left: 0;
  top: 50%;
  background: #000000;
  filter: blur(274px);
  z-index: -1;
}

.popup-youtube {
  cursor: pointer;
}

.whoweare button {
  position: absolute;
  right: 0;
  top: -32px;
}

.whoweare button.close {
  text-shadow: none;
  font-weight: 400;
  color: #fff;
  font-size: 32px;
  opacity: .8;
}

.whoweare .modal-body {
  padding: 0;
}

.whoweare button.close:hover {
  opacity: 1;
}

/*shopify-Services*/

.shopify-services {
  background: #FCFCFC;
}

.shopify-services-box {
  padding: 10px;
  border-radius: 15px;
  margin: 0px 0;
          background: linear-gradient(182deg, #b2d398 30%, #539f254d 70%);
}

.shopify-services-box:hover {
  background: #64943e;
}

.shopify-services-box:hover .shopify-services-icon {
  background: rgb(255 255 255 / 30%);
  margin-top: 20px;
}

.shopify-services-box {
  margin: 0px 0 15px;
}

.shopify-services-text {
  text-align: left !important;
}

.shopify-services-text h3 {
  font-size: 18px;
}


.shopify-services-icon {
  background: rgba(149, 191, 71, 0.3);
  height: 73px;
  width: 73px;
  border-radius: 50%;
  display: var(--d-flex);
  align-items: var(--align-item);
  justify-content: var(--justify-content);
  margin: var(--marign-auto);
}

.shopify-services-text {
  background: rgba(255, 255, 255, 0.5);
  border: solid 1px #fff;
  border-radius: 10px;
  padding: 25px 20px;
  margin-top: 0px;
}

.shopify-services-text h3 a {
  font-size: var(--f-size-22);
  color: #232323;
  font-weight: 600;
  transition-duration: .3s;
}

.shopify-services-text h3 a:hover {
  color: #64943e;
}

.shopify-services-text p {
  font-size: 14px;
  line-height: 28px;
}

.shopify-services-main {
  margin-top: 30px;
}

.shopify-services-main .row {
  justify-content: var(--justify-content);
}

.shopify-services {
  /* padding-bottom: 30px; */
}

.shopify-shadow {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.shopify-shadow:after {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/hero-section-after.png)no-repeat left top;
  content: '';
  height: 100%;
  width: 100%;
  z-index: -1;
}

.shopify-shadow:before {
  position: absolute;
  background: url(../images/shopify-shadow-before.png)no-repeat right bottom;
  content: '';
  height: 100%;
  width: 100%;
  z-index: -1;
  bottom: -100px;
  right: 0;
}

.shopify-shadow-change:before { bottom: unset !important;top: 0; }

.faq-section .shopify-services-text{padding: 0;  }

.shopify-line {
  position: relative;
  z-index: 1;
  /* margin-top: 30px; */
}


/*end-shopify-Services*/


/*shopify-choose*/
.shopify-choose {
  background: url(../images/shopify-choose-bg-img.jpg)no-repeat;
  background-size: cover;
}

.shopify-choose h5 {
  color: #fff;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
}

.shopify-choose h2 {
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.shopify-choose-box {
  background: #fff;
  border-radius: var(--border-radius-20);
  padding: 30px 24px 50px;
  position: relative;
  height: 100%;
}

.shopify-choose-shape {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: var(--d-flex);
  background: #fff;
  align-items: var(--align-item);
  justify-content: var(--justify-content);
  box-shadow: 0 0px 36px rgb(0 0 0 / 10%);
  margin-top: -110px;
  display: none;
}

.shopify-choose-box h3 {
  font-size: var(--f-size-20);
  color: #232323;
  font-weight: 600;
  transition-duration: .3s;
  margin: 20px 0 10px;
  line-height: 32px;
}

.shopify-choose-box h3 br {
  display: none;
}

.shopify-choose p {
  color: #000;
  font-size: 14px;
  margin: 0;
}

.shopify-choose-box {
  position: relative;
}

.shopify-choose-number {
  position: absolute;
  color: rgb(185 151 108 / 10%);
  font-size: 235px;
  font-weight: 600;
  top: -40px;
  right: -5px;
}

.shopify-choose-main {
  margin-top: 40px;
}

/*end-shopify-choose*/

/*shopify-blog*/
.shopify-blog-box {
  border: solid 1px #D3D3D3;
  border-radius: var(--border-radius-20);
  transition-duration: .5s;
}

.shopify-blog-box:hover {
  box-shadow: 0 4px 98px 0 rgb(0 0 0 / 20%);
}

.shopify-blog-img {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  max-height: 210px;
  height: 210px;
}

.shopify-blog-head h3 {
  margin: 0;
}

.shopify-blog-head h3 a {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  transition-duration: .5s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.shopify-blog-head h3 a:hover {
  color: #64943e;
}

.shopify-blog-head {
  padding: 15px 20px;
}

.social-hidden-icon {
  position: absolute;
  bottom: -28px;
  width: auto;
  right: 20px;
  background-color: #fff;
  padding: 0;
  z-index: 99;
  display: inline-block;
  vertical-align: top;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 60px rgb(14 42 71 / 25%);
}

.shopify-blog-img img {
  width: 100%;
  height: 100%;
}

.social-hidden-icon ul .shared-counts-wrap.shortcode.style-icon {
  display: flex;
}

.social-hidden-icon ul .shared-counts-wrap.shortcode.style-icon a span.shared-counts-label {
  display: none;
}

.social-hidden-icon ul .shared-counts-wrap.shortcode.style-icon a span.shared-counts-icon svg {
  width: 20px;
  height: 20px;
}

.social-hidden-icon ul .shared-counts-wrap.shortcode.style-icon a {
  padding: 10px 15px 5px;
  font-size: 14px;
}

.blog-letest .social-hidden-icon ul .shared-counts-wrap.shortcode.style-icon a {
  padding: 5px 0 5px;
}

.shopify-blog .social-hidden-icon ul .shared-counts-wrap.shortcode.style-icon a {
  padding: 5px 0 5px;
}

.post-inner ul li {
  padding: 10px;
  list-style: circle;
  font-size: 18px;
  font-weight: 500 !important;
  color: #000;
  margin-left: 40px;
}

.post-inner p {
  font-size: 18px;
  color: #333
}

.post-inner h2 {
  font-size: 30px;
  color: #000;
  font-weight: 600;
  margin: 30px 0;
}

.post-inner h3 {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  margin: 30px 0;
}

.post-inner h4 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  margin: 30px 0;
}

.post-inner ul li span {
  font-weight: 500 !important;
}

.post-inner ol li {
  padding: 10px;
  list-style: auto;
  font-weight: 500 !important;
  margin-left: 0;
}

.social-hidden-icon ul {
  display: flex;
}

.social-hidden-icon ul li {
  padding: 0;
  background: 0 0;
  margin: 0 0 px 0 0 !important;
  display: block;
  border-radius: 8px;
  align-items: center;
}

.social-hidden-icon .shared-counts-wrap {
  margin: 0;
}

.social-hidden-icon ul li a {
  padding: 0 6px;
  height: 32px;
  width: 32px;
  text-align: center;
  vertical-align: top;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: .5s;
}

.social-hidden-icon ul li a.social-fb-icon:hover {
  background: #3b5998;
}

.social-hidden-icon ul li a.insta-fb-icon:hover {
  background: #c32aa3;
}

.social-hidden-icon ul li a.twitter-fb-icon:hover {
  background: #55acee;
}

.social-hidden-icon ul li a.pinterest-fb-icon:hover {
  background: #bd081c;
}


.shopify-blog-about {
  justify-content: space-between;
}

.shopify-blog-about {
  padding: 9px 20px;
  border-top: solid 1px #E0E0E0;
}

.shopify-blog-comments {
  color: #B8B8B8;
  font-size: 14px;
}

.shopify-blog-share a {
  display: flex;
}

.social-hidden-icon ul li a i {
  font-size: 18px;
}

.social-hidden-icon ul li a.social-fb-icon i {
  color: #1877f2;
}

.social-hidden-icon ul li a.insta-fb-icon i {
  color: #c32aa3;
}

.social-hidden-icon ul li a.twitter-fb-icon i {
  color: #1da1f2;
}

.social-hidden-icon ul li a.pinterest-fb-icon i {
  color: #bd081c;
}

.social-hidden-icon ul li a:hover i {
  color: #fff;
}

.shopify-blog-main {
  margin-top: 40px;
}

.shopify-blog-main .row {
  row-gap: 20px;
}

.shopify-blog {
  padding-bottom: 20px;
}

h2.blog-hedding {
  background: #f4ffe0;
  margin: 15px -15px;
  padding: 70px 0;
  border-radius: 13px;
}

/*end-shopify-blog*/


/*shopify-portfolio*/
.shopify-portfolio {
  box-shadow: 0 0px 40px rgb(0 0 0 / 10%);
}

.shopify-portfolio .mini-head {
  display: inline-block;
}

.gallery-top .swiper-slide {
  max-height: 565px;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-top .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.shopify-line .swiper-container-wrapper {
  margin-top: 40px;
}

.scrollable::-webkit-scrollbar {
  width: 10px;
}

.scrollable::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.scrollable::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #6d6d6d;
}


.swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 480px) {
  .swiper-container {
    max-height: 470px;
  }
}

.swiper-container-wrapper {
  display: flex;
  flex-flow: column nowrap;
  /*height: 100vh;*/
  /*width: 100vw;*/
}

@media (min-width: 480px) {
  .swiper-container-wrapper {
    flex-flow: row nowrap;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

.swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Slide content */
}

.gallery-top {
  position: relative;
  width: 100%;
  height: 75vh;
}

@media (min-width: 480px) {
  .gallery-top {
    width: 75%;
    /*height: 100vh;*/
    margin-right: 10px;
  }
}

.gallery-thumbs {
  width: 100%;
  height: 75vh;
  padding-top: 10px;
}

@media (min-width: 480px) {
  .gallery-thumbs {
    width: 25%;
    overflow-y: scroll;
    max-height: 470px;
    padding: 0 20px;
  }
}

.gallery-thumbs .swiper-wrapper {
  flex-direction: row;

}

@media (min-width: 480px) {
  .gallery-thumbs .swiper-wrapper {
    flex-direction: column;
  }
}

.gallery-thumbs .swiper-slide {
  width: 25%;
  flex-flow: row nowrap;
  height: 100%;
  cursor: pointer;
  margin-bottom: 40px;
}

@media (min-width: 480px) {
  .gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
  }
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.shopify-portfolio .swiper-container-wrapper {
  position: relative;
}

.shopify-portfolio .hero-section-btn .btn-primary span {
  margin-left: 0;
}

.shopify-portfolio .hero-section-btn .btn-primary {
  position: absolute;
  bottom: 0px;
  right: 30px;
  z-index: 1;
  box-shadow: none;
  border-radius: 10px 0 0 0;
}

.shopify-portfolio.shopify-shadow {
  position: relative;
  z-index: 1;
}

.shopify-portfolio.shopify-shadow:before {
  background-position: top right;
  bottom: auto;
  top: -60px;
  z-index: -1;
}

.shopify-portfolio.shopify-shadow:after {
  background-position: bottom left;
  top: auto;
  bottom: 0;
  z-index: -1;
  background: url(../images/shopify-portfolio-shadow.png) no-repeat;
}

.shopify-portfolio .shopify-line {
  position: relative;
  z-index: 1;
}

.shopify-portfolio .shopify-line:before {
  background: url(../images/portfolio-line-before.png)no-repeat bottom left;
  top: auto;
  bottom: 0;
  z-index: -1;
}

.shopify-portfolio .shopify-line:after {
  background: url(../images/portfolio-line-after.png)no-repeat top right;
  top: 0;
  bottom: auto;
  z-index: -1;
}

.shopify-portfolio {
  padding-bottom: 20px;
}


/*Testimonals*/


.shopify-testimonals .row .tabs {
  /*all: unset;*/
  margin-right: 0px;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}

.shopify-testimonals .row .tabs li {
  all: unset;
  display: block;
  position: relative;
}


.shopify-testimonals .row .tabs li figure {
  position: relative;
  height: 110px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wpcf7-spinner {
  position: absolute !important;
}

.wpcf7-not-valid-tip {
  text-align: left;
  font-size: 12px !important;
}

.shopify-testimonals .row .tabs li:nth-child(1) {
  align-self: flex-end;
}

.shopify-testimonals .row .tabs li:nth-child(1)::before {
  left: 64%;
  bottom: -50px;
}

.shopify-testimonals .row .tabs li:nth-child(1)::after {
  left: 97%;
  bottom: -81px;
}

.shopify-testimonals .row .tabs li:nth-child(1) figure img {
  margin-left: auto;
}

.shopify-testimonals .row .tabs li:nth-child(2) {
  align-self: flex-start;
}

.shopify-testimonals .row .tabs li:nth-child(2)::before {
  right: -65px;
  top: 50%;
}

.shopify-testimonals .row .tabs li:nth-child(2)::after {
  bottom: 101px;
  border-radius: 50%;
  right: -120px;
}

.shopify-testimonals .row .tabs li:nth-child(1) figure {
  height: 120px;
  width: 120px;
}

.shopify-testimonals .row .tabs li:nth-child(2) figure {
  height: 80px;
  width: 80px;
  margin-top: -100px;
  margin-left: 75px;
}

.shopify-testimonals .row .tabs li:nth-child(2) figure img {
  margin-right: auto;
  max-width: 300px;
  width: 100%;
  margin-top: 0px;
}


.shopify-testimonals .row .tabs li:nth-child(3) figure {
  height: 80px;
  width: 80px;
}

.shopify-testimonals .row .tabs li:nth-child(3) {
  align-self: flex-end;
  top: 180px;
  position: relative;
  z-index: 3;
}

.shopify-testimonals .row .tabs li:nth-child(3)::before {
  right: -10px;
  top: -66%;
}

.shopify-testimonals .row .tabs li:nth-child(3)::after {
  top: -130px;
  border-radius: 50%;
  right: -46px;
}

.shopify-testimonals .row .tabs li:nth-child(3) figure img {
  margin-left: auto;
  margin-top: 0px;
}

.shopify-testimonals .row .tabs li:nth-child(3):focus {
  border: 10px solid red;
}

.shopify-testimonals .row .tabs li:nth-child(4) figure {
  height: 95px;
  width: 95px;
  position: relative;
  left: 35%;
  right: 0;
  top: -50px;
}

.shopify-testimonals .row .tabs li:nth-child(5) figure {
  height: 90px;
  width: 90px;
  position: relative;
  left: 13%;
  top: -30px;
}

.shopify-testimonals .row .tabs li figure img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.shopify-testimonals .row .tabs li figure:hover::after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.shopify-testimonals .row .carousel>h3 {
  font-size: 20px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  margin-bottom: 0;
}

.shopify-testimonals .row .carousel h1 {
  font-size: 40px;
  line-height: 1.225;
  margin-top: 23px;
  font-weight: 500;
  margin-bottom: 0;
}

.shopify-testimonals .row .carousel .carousel-indicators {
  all: unset;
  padding-top: 43px;
  display: flex;
  list-style: none;
}

.shopify-testimonals .row .carousel .carousel-indicators li {
  background: #000;
  background-clip: padding-box;
  height: 2px;
  cursor: pointer;
  opacity: .2;
}

.shopify-testimonals .row .carousel .carousel-indicators li.active {
  background-color: #64943e;
  opacity: 1;
}

.quote-img {
  margin: 42px 0px 5px 0;
}

.shopify-testimonals .row .carousel .carousel-inner .carousel-item .quote-wrapper p {
  font-size: 17px;

  font-weight: normal;

}

.shopify-testimonals .row .carousel .carousel-inner .carousel-item .quote-wrapper h3 {
  color: #000;
  font-weight: 500;
  margin-top: 37px;
  font-size: 20px;
  line-height: 1.45;
  text-transform: uppercase;
}

.shopify-choose .shopify-choose-main .row {
  row-gap: 20px;
}

/* deepak css start */

/* portfolio list  css */

.portfolio_list {
  margin: 100px 0 50px 0;
}

.portfolio_list .row {
  row-gap: 20px;
}

.list_box .image_box {
  overflow: hidden;
  border-radius: 16px;
}

.list_box:hover .image_box .image_text {
  top: 0;
  opacity: 1;
}

.list_box .image_text {
  top: 100%;
  height: 100%;
  width: 100%;
  transition: 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
}

.list_box .image_text .image_text-width {
  width: 85%;
}

.list_box .image_text h5 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.list_box .image_text p {
  color: #fff;
  line-height: normal;
  margin: 12px 0 24px 0;
}

.list_box .image_text a {
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: normal;
  display: inline-flex;
      background-image: linear-gradient(to right, #C9A263, #af7a2d);
}

.list_box .list_text h5 {
  font-size: 20px;
  font-weight: 500;
  margin: 14px 0 6px 0;
}

.list_box .list_text p {
  line-height: normal;
  margin-bottom: 0;
}


/* portfolio detail css  */

.hippo_banner {
  margin: 120px 0 50px 0;
}

.hippo_banner .banner_image {
  margin: 40px 0px;
}

.hippo_banner .heading_text h1 {
  font-size: 60px;
  font-weight: bold;
}

.hippo_banner .overview p {
  max-width: 800px;
  margin: auto;
} 

.blog-det-inner p img {
  border: solid 1px #eee; 
}
.blog-det-inner table {
  border: solid 1px #eee;
  width: 100%;
}

.blog-det-inner table tr {
  border: solid 1px #eee;
}

.blog-det-inner table tr td {
  padding: 16px 10px 0;
}





/* deepak css End */





@media only screen and (max-width: 1200px) {
  .shopify-testimonals .row .tabs {
    margin-right: 25px;
  }

  .nav-item {
    margin-left: 16px !important;
  }

  .portfolio-box {
    max-height: 395px !important;
  }

  .shopify-choose-number {
    font-size: 180px;
  }

  .company-about-box ul li:after {
    right: -30px;
  }

  .hippo_banner .heading_text h1 {
    font-size: 36px;
  }

}


.shopify-testimonals {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 70px;
}

.shopify-testimonals .tabs {
  position: relative;
  z-index: 1;
}

.shopify-testimonals .tabs:after {
  position: absolute;
  bottom: 50px;
  left: 0;
  background: url(../images/shopify-testimonals-after.png)no-repeat bottom center;
  content: '';
  height: 100%;
  width: 100%;
  background-size: contain;
  z-index: -1;
}


.shopify-testimonals {
  overflow: hidden;
}

.shopify-testimonals .row {
  position: relative;
}

.shopify-testimonals .row:before {
  position: absolute;
  position: absolute;
  top: 0px;
  right: -25%;
  background: url(../images/shopify-testimonals-before.png)no-repeat top right;
  content: '';
  height: 100%;
  width: 100%;
  z-index: -1;
  background-size: contain;

}



.shopify-testimonals .mini-head {
  padding-top: 0;
  margin-top: -20px;
}

.shopify-testimonals .mini-head:after {
  display: none;
}

.testimonals-left {
  margin-top: 150px;
}

.testimonial .row .tabs li {
  position: relative;
}


.testimonial .row .tabs.carousel-indicators li.active {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.testimonial .row .tabs.carousel-indicators li.active figure {
  border: solid 3px #dff9d9;
}

.testimonial .carousel-inner {
  min-height: 150px;
}

/*end-Testimonals*/



/*footer-contact*/

.footer-contact-box {
  background: #fff;
  border-radius: var(--border-radius-20);
  box-shadow: 0 0px 40px rgb(0 0 0 / 8%);
  padding: 40px 40px;
}

.footer-contact .mini-head:after {
  display: none;
}

.form-control {
  background: #F5F5F5;
  border-radius: var(--border-radius-20);
  height: 55px;
  border: 0;
  padding-left: 20px;
}

.form-control:focus {
  color: #000;
  background-color: #F5F5F5;
  border-color: unset;
  outline: 0;
  box-shadow: none;
}

.form-control::placeholder {
  color: #BFBFBF;
}

.footer-contact form {
  margin-top: 40px;
}

.footer-contact-box .form-group textarea {
  height: 110px;
}

.contact-btn .btn-primary {
  padding: 10px 25px;
}

.footer-contact.shopify-shadow:after {
  background: url(../images/shopify-portfolio-shadow.png) no-repeat;
  background-position: bottom left;
}

.contact-form-line {
  position: absolute;
  width: 100%;
  height: 120px;
  left: 0;
  right: 0;
  background: #64943e;
  opacity: .15;
  z-index: -1;
  top: 45%;
}

.footer-contact.shopify-shadow:before {
  bottom: -30px;
}

footer {
  background: #000;
  padding-top: 50px !important;
}

.footer-about-text {
  margin: 15px 0;
}
.footer-about h3 { font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px; }

.footer-about-text p {
  color: #eee;
  max-width: 300px;
  font-size: 14px;
  line-height: 26px;
}

.follow-us h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 30px;
}

.follow-us ul {
  display: flex;
}

.follow-us ul li a {
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin: 10px 15px 5px 0;
  background: #4a523c;
  border-radius: 5px;
  color: #fff;
}

.follow-us ul li a:hover {
  background: #64943e;
}

.footer-links h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
}

.contact-details a {
  display: block;
  color: #fff;
  margin-bottom: 20px;
  font-size: 15px;
}

.contact-details a i {
  color: #64943e;
  font-size: 18px;
  margin-right: 20px;
  position: relative;
  top: 3px;
}

.footer-links ul li a {
  color: #fff;
  font-size: 15px;
  padding: 10px 0;
  position: relative;
}

.footer-links ul li {
  margin-bottom: 20px;
}

.footer-links ul li a:after {
  content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  height: 1em;
  width: 100%;
  border-bottom: 1px solid #64943e;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.45s, transform 0.45s;
  transform: scale(0, 1);
}

.footer-links ul li a:hover:after {
  opacity: 1;
  transform: scale(1);
}

.footer-links ul li a:hover {
  color: #64943e;
}

/*end-footer-contact*/


/*About Us page*/

.about-history-img {
  flex: 1 1 0;
}

.about-history-text {
  flex: 1 1 0;
  padding: 100px 60px 30px;
}

.about-history {
  background: #fff;
  max-width: 1420px;
  margin: 30px auto 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0px 40px rgb(0 0 0 / 8%);
}

/*End About Us page*/


/*Services page*/

.hero-service {
  padding: 60px 0 80px;
  z-index: 11;
}

.services-list .mini-head {
  display: inline-block;
}

.services-list-img {
  max-width: 70%;
  margin: 30px auto;
  position: relative;
}

.services-list-box .row {
  align-items: center;
}

.services-list-text h3 {
  font-weight: 500;
  font-size: 24px;
  position: relative;
  padding: 10px 0;
}

.services-list-box {
  padding: 50px 0;
}

.services-list-text h3:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: -15px;
  top: 1px;
  background: url(../images/hedding-shap.png) no-repeat;
}

.services-list-shap {
  position: absolute;
  top: -91px;
  left: -90px;
  z-index: -1;
}

.services-list-shap-right {
  position: absolute;
  bottom: -80px;
  right: -70px;
  z-index: -1;
}

.services-list .shopify-line:before {
  top: -15%;
  background: url(../images/portfolio-line-before.png)no-repeat left center;
}

.services-list .text-center h2 {
  margin-bottom: 40px;
}

.text-l {
  margin: 0;
}

.services-list.shopify-shadow:after {
  background: url(../images/shopify-portfolio-shadow.png) no-repeat left center;
}

.services-list .shopify-line:after {
  bottom: 24%;
}

.services-list.shopify-shadow:before {
  bottom: 170px;
}

.shp3 {
  position: absolute;
  z-index: -1;
  top: -60px;
  right: -160px;
}

.shp3 img {
  max-width: 60% !important;
}

.shp3.shp-bottom {
  left: -80px;
  bottom: -80px;
  top: unset;
}

.mt-remove {
  margin: 0 auto;
}



/*Services page*/


/*blog page design*/
.blog-list {
  position: relative;
  z-index: 111;
  padding: 60px 0 40px;
}

.blog-list .search-form label {
  width: 100%;
}

.search-box {
  width: 100%;
  background: #F5F5F5;
  padding: 10px;
  border-radius: 10px;
  align-items: center;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-spacing: 0;
  outline: none;
  padding: 6px;
}

.search-btn .ser-btn {
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  color: #D9D9D9;
}

.search-box .search-btn .search-submit {
  background: transparent;
  border: 0;
}

.blog-left-card ul li {
  position: relative;
  padding: 10px;
  list-style: none;
  margin-left: 0;
  font-size: 15px;
}

.blog-left-card ul li:before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
      background-image: linear-gradient(90deg, rgb(218, 218, 218, .2) 10%, rgb(203 163 104) 50%, rgb(218, 218, 218, .2) 80%);
}

.blog-left-card ul li a {
  display: block;
  padding: 10px 0;
  color: #353535;
  font-weight: 600;
}

.blog-left-card {
  background: #FFFFFF;
  box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 15px 20px;
  margin-top: 20px;
}

.blog-left-card ul li:last-child:before {
  display: none;
}

.blog-left-card ul li a:hover {
  color: #64943e;
}

.blog-left-card h3 {
  font-weight: 500;
  margin: 10px 0;
}

.blog-det-inner label {
  width: 100%;
}

.blog-det-inner {
  margin-top: 30px;
}

.blog-left-card ul li p {
  margin-bottom: 5px;
  font-size: 12px;
  color: #B8B8B8;
}

span.bot-b {
  padding: 0 10px;
  font-size: 30px;
  font-weight: 600;
}

.num-l {
  margin-right: 10px;
}

.top-post {
  position: sticky;
  top: 100px;
}

.blog-box-list .row {
  row-gap: 20px;
}





/*End blog page design*/


/*Blog Details*/
.b-img {
  margin: 25px 0;
}

.b-img img {
  border-radius: 15px;
}

.img-left {
  width: 35%;
}

.blog-sub-right {
  width: 65%;
}

.blog-part {
  margin: 30px 0;
}

.blog-hedding span {
  color: #64943e;
}

.blog-details.shopify-shadow:after {
  background: url(../images/shopify-portfolio-shadow.png) no-repeat left center;
}

.blog-details .shopify-line:before {
  top: -15%;
  background: url(../images/portfolio-line-before.png)no-repeat left center;
}

.blog-details h4,
.blog-details h3 {
  font-weight: 600;
}

.sub-hedding h3 {
  position: relative;
  margin: 0;
  padding: 10px 5px 10px 20px;
}

.sub-hedding h3:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  border-radius: 100px;
  left: 0;
  background: #64943e;
  top: 0;
}

.owl-item .item {
  transform: translate3d(0, 0, 0);
  /* DO NOT REMEMBER WHERE TU PUT THIS, SEARCH FOR 3D ACCELERATION */
  margin: 30px 0;
  /* OVERWRITE PLUGIN MARGIN */
}

.screenshot_slider .owl-item .item .shopify-blog-box {
  -webkit-transition: 0.3s;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  -o-transition: 0.3s;
  transition: 0.4s;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.screenshot_slider .owl-item.center .item .shopify-blog-box {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.screenshot_slider .owl-nav {
  text-align: center;
}

.screenshot_slider .owl-nav button {
  font-size: 28px !important;
  margin: 10px;
  outline: none;
  color: #64943e !important;
}

.blog-letest {
  overflow: hidden;
  border-top: 2px solid #dde7c9;
  padding-top: 50px;
}

.blog-letest .owl-carousel .owl-stage-outer {
  overflow: unset;
}

.blog-letest .owl-carousel.owl-drag .owl-item {
  opacity: 0.4;
}

.blog-letest .owl-carousel.owl-drag .owl-item.active {
  opacity: 1;
}

.blog-letest-hedding {
  margin-bottom: 30px;
}

/*EndBlog Details*/


/*Contact Page*/
.contact-top {
  padding-bottom: 120px;
}

.left-contact {

  padding-right: 15px;
}

.contact-card {
  display: flex;
  margin-bottom: 25px;
}

.con-text {
  padding-left: 20px;
}

.con-text a {
  color: #000 !important;
}

.con-text h4 {
  font-size: 18px;
  font-weight: 500;
  color: #232323;
  margin-bottom: 0;
}

.con-text h4 p a {
  color: #000;
}

.right-contact-map {
  margin-bottom: -6px;
}

.contact-page .footer-contact-box .col-md-4 {
  border-right: 1px solid #D4D4D4;
}

/*End Contact Page*/



/*Start-shopify-portfolio*/
.portfolio-box {
  position: relative;
  max-height: 470px;
  overflow: hidden;
  width: 100%;
  height: 470px;
  border-radius: 20px;
}

.port-boxOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  transition: all .75s;
  background: rgba(255, 255, 255, .70);
  overflow: hidden;
  padding: 20px 0;

}

.portfolio-box:hover .port-boxOverlay {
  height: 150px;
}

.port-boxOverlay .btn-primary span {
  margin-left: -6px;
}

.port-boxOverlay h4 {
  font-weight: 500;
  color: #000;
  font-size: 20px;
}

.portfolio-list {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.portfolio-list .row {
  row-gap: 20px;
}

.portfolio-bottom .services-list-img .text-right {
  display: inline-block;
}

.portfolio-bottom .services-list-img {
  margin: 30px 0;
}

.text-only {
  display: flex;
  align-items: center;
  color: #64943e;
  text-decoration: underline !important;
  font-weight: 600;
}

.text-only svg {
  width: 30px;
  height: 30px;
  margin-left: 15px;
}

.text-only:hover {
  color: #000;
}

.portfolio-bottom .services-list-box {
  padding: 20px 0;
}


/*end-shopify-portfolio*/



/*Development */
.shopify-de-pro .mini-head {
  display: inline-block;
}

.process-list {
  margin-top: 30px;
}

.services-list-box .text-l {
  margin-right: 0;
  margin-left: auto;
}

.box-pro {
  background: #fff;
  position: relative;
  padding: 60px 40px 40px;
  box-shadow: 11px 0px 34px rgb(0 0 0 / 15%);
}

.box-pro:nth-child(1) {
  z-index: 9;
}

.box-pro:nth-child(2) {
  z-index: 8;
}

.box-pro:nth-child(3) {
  z-index: 7;
}

.box-pro:nth-child(4) {
  z-index: 6;
}

.box-pro:nth-child(5) {
  z-index: 5;
}

.box-pro:after {
  content: "";
  position: absolute;
  right: -16px;
  top: 43%;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 16px solid #FFf;
}

.box-pro:before {
  content: "";
  position: absolute;
  right: -24px;
  top: 40.4%;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 24px solid #64943e;
}

.process-icon {
  background: #E2E9D6;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  margin-bottom: 18px;
}

.box-pro h4 {
  font-weight: 500;
  font-size: 18px;
}

.box-pro:hover {
  background: #f2f7ea;
}

.shopify-dev-count .mini-head {
  display: inline-block;
}

.dev-cont-box.d-flex {
  background: #fff;
  padding: 15px 15px 8px;
  box-shadow: 0px 4px 74px rgb(0 0 0 / 11%);
  border-radius: 10px;
  align-items: center;
  margin-top: 30px;
}

.dev-co-icon svg {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

.dev-cont-box h4 {
  font-weight: 500;
  font-size: 20px;
}

.portfolio-bottom .services-list-img img {
  max-height: 100%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}


.appportfolio {
  padding: 40px 0 50px;
}

figcaption .portfolionumber {
  letter-spacing: 5px;
  font-size: 55px;
  margin-top: -40px;
  -webkit-text-stroke: 1px #64943e;
  color: rgba(255, 255, 255, 0.01);
  position: relative;
  z-index: 1;
}

.appportfolioMain figcaption h4 {
  color: #232323;
  font-size: 22px;
  font-weight: 600;
}

.appportfolioMain figcaption p {
  color: #222;
  font-size: 14px;
  line-height: 28px;
}

.appportfolioMain figcaption {
  padding: 0 30px;
}

.appportfolioMain figure img {
  -webkit-box-shadow: 0px 4px 154px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 4px 154px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 154px 0px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.appportfolio figure {
  padding: 30px 0 10px;
}

.appportfolioMain figure:hover img {
  transform: translateY(-3px);
}


.shopify-list-wish ul li {
    list-style: circle;
    margin-left: 20px;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 500;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider-app-list {
padding-bottom: 50px;
  margin: auto;
  overflow: hidden;
  position: relative;
  /*width: 960px;*/
}
/*.slider-app-list::before, .slider-app-list::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider-app-list::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider-app-list::before {
  left: 0;
  top: 0;
}*/
.slider-app-list .slide-track-app-list {
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
  display: flex;
  width: calc(450px * 14);
}
.slider-app-list .slide {
  height: 100%;
  width: 100%;
  margin: 15px 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 40px rgba(0, 0, 0, .09);
}








/*End Development */

@media(max-width:1024px) {

  .overlay-text {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .company-about-box {
    padding: 23px 10px 18px;
  }

  .hero-section h1 {
    font-size: 32px;
    line-height: unset;
  }

  h2 {
    font-size: 24px;
    line-height: unset;
  }

  .shopify-choose-number {
    font-size: 80px;
    top: -10px;
    right: 15px;
  }

  .shopify-choose-box {
    padding: 50px 20px 30px;
  }

  .shopify-blog-img img {
    object-fit: cover;
  }

  .shopify-blog-head h3 a {
    font-size: 15px;
  }

  .shopify-line:before,
  .shopify-line:after,
  .shopify-testimonals .row:before {
    display: none;
  }

  .hero-section-inner {
    padding: 120px 0 0;
  }

  .appportfolioMain figcaption h4 {
    font-size: 20px;
  }

  figcaption .portfolionumber {
    font-size: 50px;
  }

  .appportfolioMain figcaption p {
    font-size: 14px;
    line-height: 28px;
  }

  .appportfolio {
    padding: 40px 0 20px;
  }


}

@media(max-width:991px) {

  .nav-item {
    margin-left: 8px !important;
  }

  .nav-link {
    font-size: 14px;
  }

  .hero-section-inner:before {
    display: none;
  }

  .hero-section-inner:after {
    display: none;
  }

  .company-about ul {
    display: unset;
    text-align: center;
  }

  .company-about-box ul li {
    width: 32%;
    margin: 10px 0;
    display: inline-block;
  }

  .company-about-box ul li:after {
    display: none;
  }

  :root {

    --f-size-22: 18px;
    --f-size-20: 16px;


  }

  figcaption .portfolionumber {
    font-size: 43px;
    margin-top: -33px;
  }

  .appportfolioMain figcaption h4 {
    font-size: 17px;
  }

  .appportfolioMain figcaption {
    padding: 0 15px;
  }

  .btn-primary {
    font-size: 13px;
    padding: 6px 16px;
  }

  .appportfolio h2 br {
    display: none;
  }

  .shopify-we-right {
    display: flex;
  }

  .shopify-we-right img {
    margin: auto;
  }

  .shopify-choose-shape {
    margin-top: 0;
  }

  .shopify-choose-box {
    padding: 30px 20px 20px;
  }

  .shopify-choose-main {
    margin-top: 26px;
  }

  .shopify-choose .shopify-choose-main .row {
    row-gap: 20px;
  }

  .shopify-choose-shape {
    height: 80px;
    width: 80px;
  }

  .shopify-choose-shape svg {
    width: 40px;
  }

  /* .hero-section-inner {
    padding: 70px 0 50px;
  } */

  .company-about {
    padding: 70px 0 30px;
  }

  .shopify-services {
    padding-bottom: 0;
  }

  .shopify-blog {
    padding-bottom: 0;
  }

  .shopify-blog-main {
    margin-top: 20px;
  }

  .shopify-blog-img {
    max-height: 150px;
    height: 150px;
  }

  .shopify-portfolio {
    padding-bottom: 0;
  }

  .testimonals-left {
    margin-top: 70px;
  }

  .quote-img {
    margin: 15px 0px 0px 0;
  }

  .shopify-portfolio.shopify-shadow:after {
    bottom: 0;
  }

  .shopify-shadow:before {
    bottom: 0px;
  }

  .mini-head {
    padding: 0px 0 10px 0;
  }

  .shopify-testimonals .row .carousel .carousel-inner .carousel-item .quote-wrapper h3 {
    margin-top: 20px
  }

  .shopify-testimonals .row .carousel .carousel-indicators {
    padding-top: 10px;
  }

  .shopify-line .swiper-container-wrapper {
    margin-top: 30px;
  }

  .footer-about {
    margin-bottom: 24px;
  }

  .footer-about-text p {
    max-width: unset;
  }

  .follow-us h3 {
    margin-top: 16px;
  }

  .full.footer-link {
    padding: 40px 0 26px !important;
  }

  .services-list-img {
    max-width: 100%;
  }

  .search-btn {
    position: absolute;
    right: 20px;
  }

  .blog-left-card {
    padding: 10px 16px;
  }

  .blog-left-card h3 {
    font-size: 20px;
  }

  .blog-left-card ul li {
    padding: 0;
  }

  .blog-left-card ul li a {
    font-size: 14px;
  }

  .blog-left-card ul li p {
    line-height: 20px;
    padding-bottom: 10px;
  }

  .blog-left-card ul li p span {
    display: inline-block;
  }

  .blog-box-list .row {
    row-gap: 16px;
  }

  .shopify-line {
    padding-bottom: 40px;
  }


  .hero-section-one h3 {
    font-size: 22px;
  }

  .shopify-we {
    padding-bottom: 30px;
  }

  .company-about-box ul li:after {
    right: -40px;
  }

  .shopify-choose.mt-4 {
    margin-top: 0 !important;
  }

  .hippo_banner .heading_text h1 {
    font-size: 32px;
  }

  .hippo_banner .banner_image {
    margin: 20px 0px;
  }

}

@media(max-width:767px) {
  .collapse.show {
    background: #fff;
    box-shadow: 0 0px 30px rgb(0 0 0 / 9%);
  }

  .scroll-on .collapse.show {
    background: transparent;
    box-shadow: none;
  }

  .shopify-choose-shape {
    display: none;
  }

  .shopify-choose-box {
    padding: 5px 20px 24px;
    height: auto;
  }

  .shopify-choose-main {
    margin-top: 20px;
  }

  .ptb-50 {
    padding: 30px 0;
  }

  .hero-section-btn {
    display: none;
  }


  .shopify-blog-img img {
    width: 100%;
  }

  .shopify-blog {
    padding-bottom: 0px;
  }

  .testimonals-left {
    margin-top: 40px;
  }

  .quote-img {
    margin: 11px 0px 0px 0;
  }

  .quote-img svg {
    width: 36px;
  }

  .shopify-testimonals .row .carousel .carousel-inner .carousel-item .quote-wrapper p {
    font-size: 14px;
  }

  .shopify-testimonals .row .carousel .carousel-inner .carousel-item .quote-wrapper h3 {
    margin-top: 15px;
    font-size: 16px;
  }

  .shopify-testimonals .row .carousel .carousel-indicators {
    padding-top: 10px;
  }

  .shopify-testimonals {
    padding-bottom: 20px;
  }

  .mini-head {
    padding-top: 0;
  }

  .footer-contact-box {
    padding: 30px 30px 10px;
  }

  .company-about {
    padding: 30px 0;
  }

  /* .hero-home-fixed,
  .hero-home-img {
    display: none;
  } */
  .hero-home-fixed {
    display: none;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
    line-height: 24px;
  }

  .hero-section-one h3 {
    font-size: 18px;
  }

  .operator {
    font-size: 20px;
  }

  .shopify-services {
    padding-bottom: 30px;
  }

  .shopify-services .shopify-line,
  .shopify-portfolio .shopify-line,
  .shopify-blog .shopify-line {
    margin-top: 0;
  }

  .shopify-blog .shopify-line {
    padding-bottom: 30px !important;
  }

  .shopify-services-text h3 {
    font-size: 16px;
  }

  .shopify-portfolio {
    padding-bottom: 10px;
  }

  .shopify-testimonals .mini-head {
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 0;
  }

  footer {
    padding-top: 40px !important;
  }

  .footer-about {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #525252;
  }

  .operator-k {
    font-size: 14px;
  }

  .services-list-box {
    padding: 20px 0 0;
  }

  .services-list-text h3 {
    padding: 15px 0;
    font-size: 18px;
  }

  .hero-service {
    padding: 0 0 50px;
  }

  .hero-section-inner {
    padding: 100px 0 0;
  }

  .hero-section h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  .about-history-img {
    display: none;
  }

  .about-history-text {
    flex: 1 1 0;
    padding: 30px 30px 20px;
  }

  .start-header {
    padding: 5px 0;
  }

  .start-header.scroll-on {
    padding: 5px 0;
  }

  label {
    width: 100%;
  }

  figcaption .portfolionumber {
    font-size: 37px;
    margin-top: -27px;
  }

  .appportfolioMain figcaption h4 {
    font-size: 16px;
  }

  .appportfolioMain figcaption p {
    font-size: 13.5px;
  }

  .appportfolio figure {
    padding: 20px 0 0px;
  }

  .shopify-blog-main {
    margin-top: 10px;
  }

  .appportfolio {
    padding: 30px 0 20px;
  }

  .shopify-blog-img {
    max-height: 300px;
    height: 300px;
  }

  .shopify-portfolio .swiper-container-wrapper {
    flex-wrap: wrap;
  }

  .gallery-top {
    width: 100%;
    height: unset;
  }

  .gallery-thumbs .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .gallery-thumbs {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 0;
    margin-top: 20px;
    height: 100px;
  }

  .gallery-thumbs .swiper-wrapper {
    flex-direction: row;
    column-gap: 14px;
  }

  .gallery-thumbs .swiper-slide {
    width: 150px;
    height: 100% !important;
    border-radius: 10px;
  }

  .portfolio-box img {
    width: 100%;
  }

  .portfolio-bottom .services-list-img {
    margin: 0 0 30px;
  }

  .shopify-line .services-list-box:nth-of-type(even) .row {
    flex-direction: column-reverse;
  }

  .portfolio-bottom .services-list-box {
    padding: 10px 0px;
  }

  .blog-box-list {
    margin-top: 26px;
  }

  .blog-list {
    padding: 30px 0 0px;
  }

  .blog-box-list .row {
    row-gap: 20px;
  }

  .portfolio-list {
    margin-top: 0;
    padding: 20px 0;
  }

  .hero-home-img img {
    width: 100%;
  }

  .shopify-line {
    padding-bottom: 0 !important;
  }

  .shopify-we {
    padding-bottom: 20px;
  }

  .shopify-choose-box h3 {
    line-height: unset;
  }

  .shopify-services-text {
    padding: 18px 12px;
  }

  .contact-bannerr .hero-home-img {
    display: none;
  }

  .contact-bannerr {
    padding-bottom: 40px;
  }

  .portfolio_list {
    margin: 30px 0 10px !important;
  }

  .list_box .list_text h5 {
    font-size: 18px;
  }

  .hippo_banner .heading_text h1 {
    font-size: 26px;
  }

  .hippo_banner {
    margin: 90px 0 10px 0;
  }


}



@media(max-width:576px) {
  figcaption .portfolionumber {
    font-size: 23px;
    margin-top: 0px;
  }

  .appportfolioMain figcaption {
    padding: 18px 0 0;
  }

  .appportfolioMain figcaption h4 {
    font-size: 15px;
    margin: 8px 0 5px;
  }

  .appportfolioMain figcaption p {
    font-size: 12.8px;
    line-height: 24px;
  }

  .appportfolio figure {
    padding: 10px 0 0px;
  }

  .appportfolioMain figure img {
    box-shadow: 0px 0px 7px 14px rgba(0, 0, 0, 0.04);
  }

  .services-list-text h3 {
    padding-left: 16px;
  }

  .services-list-text h3:after {
    left: 0;
  }

  .list_box .list_text h5 {
    font-size: 16px;
  }


}

@media (max-width:480px) {

  .gallery-thumbs .swiper-slide {
    width: 150px !important;
    height: 100% !important;
    border-radius: 10px;
    margin: 0 !important;
    overflow: hidden;
  }

  .company-about-box ul li {
    width: 49%;
  }

}


@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}