@charset "UTF-8";
/*-------------------------------------------------
  Fonts Family & Style CSS
---------------------------------------------------*/
/*--  Manrope font  --*/
@font-face {
  font-family: "Manrope", sans-serif;
  src: url("./../fonts/manrope/Manrope-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Manrope", sans-serif;
  src: url("./../fonts/manrope/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Manrope", sans-serif;
  src: url("./../fonts/manrope/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Manrope", sans-serif;
  src: url("./../fonts/manrope/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Manrope", sans-serif;
  src: url("./../fonts/manrope/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Manrope", sans-serif;
  src: url("./../fonts/manrope/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Manrope", sans-serif;
  src: url("./../fonts/manrope/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
/*--  Poppins font  --*/
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Light.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/*===== Commen css =====*/
body {
  width: 100%;
  height: 100%;
  position: relative;
  font-family: "Poppins, sans-serif";
  font-weight: 400;
  -webkit-user-select: none;
  -gi-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01rem;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: 0.01rem;
}

p,
li,
span {
  letter-spacing: 0.02rem;
}

p {
  font-size: 15px;
  line-height: 28px;
  font-weight: 300;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.gi-flash:after {
  content: "";
  width: 2000px;
  height: 2000px;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: gi-flash 3s ease-in-out infinite;
          animation: gi-flash 3s ease-in-out infinite;
  z-index: 99;
}

@-webkit-keyframes gi-flash {
  0% {
    -webkit-transform: translateX(-100%) rotate(45deg);
            transform: translateX(-100%) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(100%) rotate(45deg);
            transform: translateX(100%) rotate(45deg);
  }
}
/* Spaccing */
.m-r-5px {
  margin-right: 5px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-t-40 {
  margin-top: 40px;
}

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

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

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

.mt-m-10 {
  margin-top: -10px;
}

.m-t-30px {
  margin-top: 30px;
}

.m-b-30px, .m-b-30 {
  margin-bottom: 30px;
}

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

.ml-15 {
  margin-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.m-b-40 {
  margin-bottom: 40px;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.padding-tb-80 {
  padding: 80px 0;
}

.padding-tb-40 {
  padding: 40px 0;
}

.padding-tb-80 {
  padding: 80px 0;
}

.padding-t-40 {
  padding-top: 40px;
}

.padding-b-40 {
  padding-bottom: 40px;
}

.p-b-0 {
  padding-bottom: 0 !important;
}

.p-b-5 {
  padding-bottom: 5px;
}
.p-b-10 {
  padding-bottom: 10px;
}

.p-t-15 {
  padding-top: 15px;
}
.p-tb-15 {
  padding: 15px 0;
}

.p-t-40 {
  padding-top: 40px;
}

.p-t-60 {
  padding-top: 60px;
}

.p-t-80 {
  padding-top: 80px;
}

.p-tb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-tb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.m-tb-40 {
  margin: 40px 0;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-t-40 {
  margin-top: 40px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}


.m-b-minus-24px {
  margin-bottom: -24px;
}

.mb-minus-24px {
  margin-bottom: -24px;
}

.m-b-minus-15px {
  margin-bottom: -15px;
}

.m-tb-minus-12 {
  margin-top: -12px;
  margin-bottom: -12px;
}

.m-minus-15 {
  margin: -15px;
}

.m-minus-12 {
  margin: -12px;
}

.m-minus-lr-12 {
  margin-left: -12px;
  margin-right: -12px;
}

.p-tp-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.m-tp-12 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.tab-content > .active {
  display: block !important;
}

/* Buttons */
button {
  background: transparent;
  border: 0;
}

.custom-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 130px;
  height: 40px;
  color: #fff;
  padding: 10px 15px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 5px;
}

.gi-btn,
.gi-btn-1 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none;
  color: #fff;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #00a260;
  border: 1px solid #00a260;
  position: relative;
  border-radius: 5px;
}

.btn-disabled {
  pointer-events: none;
  background-color: #555 !important;
}

.gi-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #00a260;
  color: #fff;
}
.gi-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.gi-btn-1 {
  padding: 10px 15px;
  background-color: #00a260;
  color: #fff;
  border: 0;
}
.gi-btn-1:hover {
  background-color: #00a260;
  color: #fff;
}

.gi-btn-2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  background-color: #00a260;
  color: #fff;
  text-align: center;
  border-radius: 5px;
}
.gi-btn-2:hover {
  background-color: #00a260;
  color: #fff;
}

.gi-btn-3 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 400;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
}
.gi-btn-3:hover {
  background-color: #fff;
  color: #777;
  border: 1px solid #fff;
}

.gi-btn:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shiny-btn1 3s ease-in-out infinite;
          animation: shiny-btn1 3s ease-in-out infinite;
}

.gi-box {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  padding: 30px;
  border-radius: 0px;
  background: #fff;
}

.gi-btn:active {
  -webkit-box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.3), -4px -4px 6px 0 rgba(116, 125, 136, 0.2), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2), inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.3), -4px -4px 6px 0 rgba(116, 125, 136, 0.2), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2), inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.img-responsive {
  max-width: 100%;
  display: block;
}

input {
  height: 50px;
  outline: none;
}

.border-r {
  border-right: 10px dashed #fff;
}

.main-bg {
  height: 100%;
  background: #00a260;
}

.gi-row {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-bg {
  background-color: #fff;
}

.section-title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 5;
}
.section-title .section-detail h2 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 38px;
  font-weight: 600;
  color: #00a260;
  position: relative;
  display: inline;
  padding: 0;
  
  line-height: 1;
  font-family: "Manrope", sans-serif;
}
.section-title .section-detail h2 span {
  color: #00a260;
}
.section-title .section-detail p {
  max-width: 400px;
  margin: 10px 0 0 0;
  font-size: 14px;
  color: #777;
  line-height: 18px;
}
.section-title .title-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.section-title .title-link a {
  color: #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-title .title-link a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 18px;
  margin-left: 10px;
  color: #777;
}
.section-title .title-link a:hover {
  color: #00a260;
}
.section-title .title-link a:hover i {
  color: #00a260;
}

.section-title-2 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}
.section-title-2 h2 {
  margin-bottom: 0;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  line-height: 38px;
  font-weight: 600;
  color: #00a260;
  position: relative;
  display: inline;
  padding: 0;
  
  line-height: 1;
}
.section-title-2 h2 span {
  color: #00a260;
}
.section-title-2 p {
  max-width: 400px;
  margin: 15px 0 0 0;
  font-size: 14px;
  color: #777;
  text-align: center;
  line-height: 23px;
}

.section-title-3 {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}
.section-title-3 h2 {
  margin-bottom: 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 38px;
  font-weight: 600;
  color: #00a260;
  position: relative;
  display: inline;
  padding: 0;
  
  line-height: 1;
}
.section-title-3 h2 span {
  color: #00a260;
}
.section-title-3 p {
  max-width: 400px;
  margin: 15px 0 0 0;
  font-size: 14px;
  color: #777;
  text-align: center;
  line-height: 23px;
}

section {
  position: relative;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.show-section {
  display: block !important;
}

.hide-section {
  z-index: 7;
  -webkit-transform: translate3d(0px, -100%, 0px);
          transform: translate3d(0px, -100%, 0px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#overlay_shine {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: fixed;
  z-index: 1;
  display: block;
  background: rgba(0, 0, 0, 0.2);
  top: 0px;
  left: -50%;
  width: 200%;
  height: 100%;
  -webkit-transform: rotate(-30deg) translateY(-150%);
          transform: rotate(-30deg) translateY(-150%);
}

#gi-overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#gi-overlay .loader {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
#gi-overlay .loader:after {
  content: "";
  width: 10em;
  height: 10em;
  position: absolute;
  top: -6px;
  left: -6px;
  border-radius: 50%;
  border: 6px solid rgba(92, 175, 144, 0.19);
}
#gi-overlay .loader {
  margin: 45px auto;
  font-size: 6px;
  position: relative;
  text-indent: -9999em;
  border-top: 6px dotted transparent;
  border-right: 6px dotted transparent;
  border-bottom: 6px dotted transparent;
  border-left: 6px dotted #00a260;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
          animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.gi-cursor {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #00a260;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 15px), -50%);
          transform: translate(calc(-50% + 15px), -50%);
  -webkit-animation: morphing-image 10s linear infinite forwards;
          animation: morphing-image 10s linear infinite forwards;
  z-index: 9999;
}

.gi-cursor-2 {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #00a260;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 9999;
}

.gi-hover-cursor {
  width: 50px;
  height: 50px;
  background-color: #00a260;
  border: 0;
  opacity: 0.5;
  z-index: 9999;
}

.gi-cursorinnerhover {
  width: 30px;
  height: 30px;
  opacity: 0.5;
  z-index: 9999;
}

@-webkit-keyframes morphing-image {
  0% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  10% {
    border-radius: 39% 61% 38% 62%/53% 54% 46% 47%;
  }
  20% {
    border-radius: 56% 44% 52% 48%/57% 35% 65% 43%;
  }
  30% {
    border-radius: 41% 59% 45% 55%/43% 56% 44% 57%;
  }
  40% {
    border-radius: 46% 54% 60% 40%/55% 65% 26% 45%;
  }
  50% {
    border-radius: 44% 56% 42% 65%/41% 65% 46% 69%;
  }
  60% {
    border-radius: 41% 69% 42% 68%/41% 71% 29% 69%;
  }
  70% {
    border-radius: 44% 56% 60% 40%/63% 46% 64% 37%;
  }
  80% {
    border-radius: 46% 54% 38% 62%/44% 48% 52% 56%;
  }
  90% {
    border-radius: 66% 45% 57% 43%/49% 51% 49% 51%;
  }
  100% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
}

@keyframes morphing-image {
  0% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  10% {
    border-radius: 39% 61% 38% 62%/53% 54% 46% 47%;
  }
  20% {
    border-radius: 56% 44% 52% 48%/57% 35% 65% 43%;
  }
  30% {
    border-radius: 41% 59% 45% 55%/43% 56% 44% 57%;
  }
  40% {
    border-radius: 46% 54% 60% 40%/55% 65% 26% 45%;
  }
  50% {
    border-radius: 44% 56% 42% 65%/41% 65% 46% 69%;
  }
  60% {
    border-radius: 41% 69% 42% 68%/41% 71% 29% 69%;
  }
  70% {
    border-radius: 44% 56% 60% 40%/63% 46% 64% 37%;
  }
  80% {
    border-radius: 46% 54% 38% 62%/44% 48% 52% 56%;
  }
  90% {
    border-radius: 66% 45% 57% 43%/49% 51% 49% 51%;
  }
  100% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
}
.gicon {
  color: #00a260;
}

i.gicon.gi-star.fill {
  color: #f27d0c;
}

.modal-dialog {
  height: 100%;
  margin: 0% auto;
  max-width: 960px;
  width: 960px;
  padding: 35px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.gi-wish-notify,
.gi-compare-notify,
.gi-cart-notify {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 99;
}
.gi-wish-notify p,
.gi-compare-notify p,
.gi-cart-notify p {
  padding: 15px 20px;
  background-color: #fff;
  font-size: 14px;
  color: #00a260;
  border-bottom: 5px solid #00a260;
  border-radius: 5px;
  display: block;
  -webkit-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
}
.gi-wish-notify p i,
.gi-compare-notify p i,
.gi-cart-notify p i {
  margin-right: 5px;
}
.gi-wish-notify a,
.gi-compare-notify a,
.gi-cart-notify a {
  color: #00a260;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gi-wish-notify a:hover,
.gi-compare-notify a:hover,
.gi-cart-notify a:hover {
  color: #00a260;
}

/**  Pagination  **/
.gi-pro-pagination {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #eee;
}
.gi-pro-pagination span {
  font-size: 14px;
  color: #777;
}
.gi-pro-pagination ul li {
  display: inline-block;
  float: left;
}
.gi-pro-pagination ul li:not(:last-child) {
  margin-right: 5px;
}
.gi-pro-pagination ul li span {
  width: 20px;
  color: #777;
  display: block;
  text-align: center;
}
.gi-pro-pagination ul li a {
  width: 32px;
  height: 32px;
  padding: 0;
  font-weight: 300;
  color: #777;
  line-height: 32px;
  background: #eee;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  vertical-align: top;
  font-size: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
.gi-pro-pagination ul li a:hover {
  color: #fff;
  background-color: #00a260;
}
.gi-pro-pagination ul li a:hover i {
  color: #fff;
}
.gi-pro-pagination ul li a.next {
  width: auto;
  padding: 0 13px;
  color: #fff;
  background-color: #00a260;
  line-height: 30px;
}
.gi-pro-pagination ul li a.next i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  color: #fff;
}
.gi-pro-pagination ul li a.next:hover i {
  color: #fff;
}
.gi-pro-pagination ul li a.active {
  color: #fff;
  background-color: #00a260;
}

/** Back to top button **/
.gi-back-to-top {
  display: inline-block;
  background-color: #00a260;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 16;
  border: 1px solid #fff;
}
.gi-back-to-top:after {
  content: "\f062";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  line-height: 40px;
  color: #fff;
}
.gi-back-to-top:hover {
  cursor: pointer;
  background-color: #000;
  opacity: 1;
}
.gi-back-to-top:active {
  background-color: #555;
}

.gi-back-to-top.show {
  opacity: 0.8;
  visibility: visible;
}

/**  Responsive  **/
@media only screen and (max-width: 991px) {
  .m-b-991 {
    margin-bottom: 30px;
  }
  .modal-dialog {
    height: auto;
  }
}
/*===== Cart sideabr css =====*/
.gi-open-cart {
  overflow: hidden;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  opacity: 1 !important;
}
.gi-open-cart:before {
  height: 100%;
  width: 100;
  background: #000;
  opacity: 0.7;
  position: absolute;
  z-index: 998;
  content: "";
}

.gi-side-cart-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 17;
}

.gi-side-cart {
  width: 350px;
  height: 100%;
  padding: 15px 20px 0 20px;
  font-size: 14px;
  font-weight: 400;
  position: fixed;
  z-index: 17;
  top: 0;
  right: 0;
  left: auto;
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: auto;
  opacity: 0;
}
.gi-side-cart::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.gi-side-cart::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #00a260 !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.gi-side-cart::-webkit-scrollbar-thumb {
  background-color: #00a260 !important;
  border-radius: 10px !important;
  border: 3px solid #fff !important;
}
.gi-side-cart::-webkit-scrollbar-thumb:hover {
  background-color: #00a260 !important;
}
.gi-side-cart .text-right {
  font-weight: 700;
}
.gi-side-cart .gi-cart-inner {
  position: relative;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gi-side-cart .gi-cart-inner .gi-cart-title {
  width: 100;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gi-side-cart .gi-cart-inner .gi-cart-title .cart_title {
  font-size: 15px;
  color: #00a260;
  font-family: "Poppins, sans-serif";
  font-weight: 600;
}
.gi-side-cart .gi-cart-inner .gi-cart-title .gi-cart-close {
  position: relative;
  border: 0;
  font-size: 30px;
  line-height: 20px;
  color: #00a260;
}
.gi-side-cart .gi-cart-inner .gi-cart-title .gi-cart-close i {
  font-size: 20px;
  line-height: 0;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li {
  margin-bottom: 15px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 5px;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li .gi-pro-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li .gi-pro-img img {
  width: 100%;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li .gi-pro-content {
  position: relative;
  -webkit-box-flex: 1;
  -gi-flex: 1 0 70%;
  -ms-flex: 1 0 70%;
      flex: 1 0 70%;
  padding-left: 15px;
  overflow: hidden;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li .gi-pro-content .cart-pro-title {
  width: 100%;
  padding-right: 30px;
  text-decoration: none;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li .gi-pro-content .cart-price {
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li .gi-pro-content .cart-price span {
  color: #777;
  font-weight: 600;
  font-size: 16px;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li .gi-pro-content .remove {
  line-height: 15px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 0 0 10px;
  color: red;
  font-size: 22px;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li .gi-pro-content .qty-plus-minus {
  border: 1px solid #eeeeee;
  display: inline-block;
  height: 35px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 7px 0;
  margin-top: 7px;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li .gi-pro-content .qty-plus-minus .dec.ms_qtybtn {
  border-right: 1px solid #eeeeee;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li .gi-pro-content .qty-plus-minus .gi-qtybtn {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  cursor: pointer;
  font-size: 20px;
  color: #777;
}
.gi-side-cart .gi-cart-inner .gi-cart-pro-items li .gi-pro-content input.qty-input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #777;
  float: left;
  font-size: 14px;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 32px;
  outline: none;
  font-weight: 400;
  line-height: 35px;
}
.gi-side-cart .gi-cart-inner .gi-cart-bottom .cart_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.gi-side-cart .gi-cart-inner .gi-cart-bottom .cart_btn a {
  width: 48%;
  height: 40px;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 15px;
  line-height: 22px;
}
.gi-side-cart .gi-cart-inner .gi-cart-bottom .cart-sub-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0;
  padding-bottom: 8px;
  border-top: 1px solid #eeeeee;
  margin: 20px 0 0 0px;
}
.gi-side-cart .gi-cart-inner .gi-cart-bottom .cart-sub-total table {
  margin: 10px 0 0 0;
}
.gi-side-cart .gi-cart-inner .gi-cart-bottom .cart-sub-total table tr td {
  border: none;
  color: #777;
}
.gi-side-cart .gi-cart-inner .gi-cart-bottom .cart-sub-total table tr td.text-left {
  font-weight: 500;
}
.gi-side-cart .gi-cart-inner .gi-cart-bottom .cart-sub-total table tr td.text-right {
  text-align: right;
}

/* Responsive css */
@media (max-width: 480px) {
  .gi-side-cart {
    width: 300px;
  }
}
/*=======  Quick View ========*/
.quickview-modal {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.quickview-modal .qty_close {
  width: 5px;
  height: 5px;
  background: url(../img/icons/close.svg);
  background-size: 100%;
}
.quickview-modal .modal-body {
  padding: 30px;
}
.quickview-modal .modal-content .single-pro-img {
  height: 100%;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
}
.quickview-modal .modal-content .single-pro-img .single-product-scroll {
  height: 100%;
}
.quickview-modal .modal-content .single-pro-img .single-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.qty-nav-thumb {
  margin-bottom: -5px;
  padding: 0 40px;
}
.qty-nav-thumb .slick-slider:hover .slick-prev, .qty-nav-thumb .slick-slider:hover .slide-arrow.prev-arrow {
  opacity: 1 !important;
}

.quickview-pro-content .gi-quick-title a {
  margin: 0 0 15px 0;
  display: block;
  color: #00a260;
  font-size: 22px;
  text-decoration: none;
  line-height: 1.5;
  font-weight: 500;
}
.quickview-pro-content p {
  font-size: 14px;
  color: #777;
  margin: 0 0 12px;
  font-weight: 600;
}
.quickview-pro-content p span {
  font-weight: 400;
}
.quickview-pro-content .quickview-para {
  font-weight: 400;
  color: #777;
  line-height: 26px;
}
.quickview-pro-content .gi-quickview-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.quickview-pro-content .gi-quickview-rating i {
  margin-right: 5px !important;
}
.quickview-pro-content .gi-quickview-desc {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 24px;
  color: #777;
  font-weight: 300;
}
.quickview-pro-content .gi-quickview-price {
  padding: 5px 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.quickview-pro-content .gi-quickview-price span.old-price {
  font-size: 18px;
  margin-left: 10px;
  text-decoration: line-through;
  color: #777;
}
.quickview-pro-content .gi-quickview-price span.new-price {
  color: #00a260;
  font-weight: 700;
  font-size: 22px;
}
.quickview-pro-content .gi-pro-variation .gi-pro-variation-content ul li {
  height: 22px;
  padding: 2px 8px;
  cursor: pointer;
  border: 1px solid #eeeeee;
  color: #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  line-height: 22px;
  border-radius: 3px;
  font-weight: 400;
}
.quickview-pro-content .gi-pro-variation .gi-pro-variation-content ul li a {
  color: #777;
}
.quickview-pro-content .gi-pro-variation .gi-pro-variation-content ul li:hover a {
  color: #fff;
}
.quickview-pro-content .gi-pro-variation .gi-pro-variation-content ul li.active {
  background-color: #00a260 !important;
  color: #fff !important;
  border-color: #00a260 !important;
}
.quickview-pro-content .gi-pro-variation .gi-pro-variation-content ul li.active a {
  color: #fff;
}
.quickview-pro-content .pro-details-list {
  padding: 0 0 30px 0;
  margin: 0 0 15px 0;
  border-bottom: 1px solid #17181c;
  display: inline-block;
  width: 100;
  color: #777;
}
.quickview-pro-content .pro-details-list .gi-quickview-desc {
  font-weight: 400;
  color: #777;
  line-height: 24px;
  margin: 0;
}
.quickview-pro-content .pro-details-list li {
  display: block;
  width: 100;
  line-height: 24px;
}
.quickview-pro-content .gi-quickview-qty {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 15px 0 0 0;
  width: 100;
}
.quickview-pro-content .gi-quickview-qty .qty-plus-minus {
  width: 100px;
  height: 43px;
  padding: 0;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 3px;
}
.quickview-pro-content .gi-quickview-qty .qty-plus-minus .gi-qtybtn {
  width: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  color: #777;
}
.quickview-pro-content .gi-quickview-qty .qty-plus-minus input.qty-input {
  width: 40px;
  height: 50px;
  margin: 0;
  padding: 0;
  background: transparent none repeat scroll 0 0;
  color: #777;
  font-size: 14px;
  border: medium none;
  text-align: center;
  outline: none;
}
.quickview-pro-content .gi-quickview-qty .gi-quickview-cart .gi-btn-1 {
  margin: 0 0 0 15px;
  padding: 10px 15px;
  border-radius: 3px;
}
.quickview-pro-content .gi-quickview-qty .gi-quickview-cart .gi-btn-1 svg {
  margin-right: 8px;
}
.quickview-pro-content .gi-quickview-qty .gi-quickview-cart .gi-btn-1 .svg_img.pro_svg {
  display: none;
}

@media only screen and (max-width: 991px) {
  .quickview-pro-content .gi-quick-title a {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .modal-dialog {
    max-width: 720px;
    width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .modal-dialog {
    width: 80%;
    height: auto;
    max-width: 100%;
    padding: 35px 0;
    margin: 0 auto;
  }
  .modal-dialog .qty-product-cover {
    max-width: 420px;
    margin: 0 auto;
    margin-bottom: 15px;
  }
  .modal-dialog .qty-nav-thumb {
    max-width: 420px;
    margin: 0 auto;
  }
  .quickview-pro-content {
    margin-top: 5px;
  }
  .quickview-pro-content .gi-quick-title a {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .modal-dialog {
    width: 90%;
  }
  .quickview-pro-content {
    margin-top: 5px;
  }
  .quickview-pro-content .gi-quick-title a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 360px) {
  .quickview-modal .modal-body {
    padding: 15px;
  }
  .quickview-modal button.btn-close.qty_close {
    right: 5px;
    top: 5px;
  }
}
/*===== New Popup for home page =====*/
#gi-popnews-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 25;
}

#gi-popnews-box {
  width: 100%;
  max-width: 600px;
  padding: 24px;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  color: #00a260;
  display: none;
  z-index: 25;
  text-align: center;
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
#gi-popnews-box #gi-popnews-box-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#gi-popnews-box img {
  width: 100%;
  border-radius: 5px;
}
#gi-popnews-box h2 {
  text-decoration: none;
  color: #00a260;
  display: block;
  font-size: 22px;
  line-height: 33px;
  font-weight: 600;
  margin: 0 auto 10px;
  letter-spacing: 0;
  
}
#gi-popnews-box p {
  color: #777;
}
#gi-popnews-box form {
  margin-bottom: 0px;
}
#gi-popnews-box input {
  background-color: transparent;
  border: 1px solid #eeeeee;
  color: #00a260;
  font-size: 14px;
  margin-bottom: 27px;
  padding: 0 15px;
  width: 100%;
  outline: none;
  border-radius: 5px;
}

#gi-popnews-close {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  color: red;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  line-height: 1;
  opacity: 0.5;
}
#gi-popnews-close:hover {
  opacity: 1;
}

/* ======================================
Tools sidebar
========================================= */
.gi-tools-sidebar-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 16;
}

.gi-tools-sidebar {
  background-color: red;
  width: 300px;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 17;
  -webkit-transform: translateX(300px);
          transform: translateX(300px);
}
.gi-tools-sidebar .gi-tools-sidebar-toggle {
  position: absolute;
  top: 45%;
  right: 302px;
  width: 40px;
  height: 40px;
  background-color: rgba(29, 37, 49, 0.6);
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 25px;
  z-index: -1;
  text-decoration: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.gi-tools-sidebar .gi-tools-sidebar-toggle i {
  color: #fff;
  -webkit-animation: rotation 3s infinite linear;
          animation: rotation 3s infinite linear;
  font-family: uicons-regular-rounded !important;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
.gi-tools-sidebar .gi-bar-title {
  margin-bottom: 15px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #17181c;
}
.gi-tools-sidebar .gi-bar-title h6 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #00a260;
}
.gi-tools-sidebar .gi-bar-title .close-tools {
  color: #ff4f7f;
  font-size: 17px;
}
.gi-tools-sidebar .gi-tools-detail {
  height: calc(100vh - 72px);
  padding: 0 15px 15px 15px;
  overflow: auto;
}
.gi-tools-sidebar .gi-tools-detail::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.gi-tools-sidebar .gi-tools-detail::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #00a260 !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.gi-tools-sidebar .gi-tools-detail::-webkit-scrollbar-thumb {
  background-color: #00a260 !important;
  border-radius: 10px !important;
  border: 3px solid #fff !important;
}
.gi-tools-sidebar .gi-tools-detail::-webkit-scrollbar-thumb:hover {
  background-color: #00a260 !important;
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block h3 {
  margin: 15px 0;
  font-size: 14px;
  font-weight: 500;
  color: #00a260;
  font-family: "Poppins, sans-serif";
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block p {
  margin: 0;
  
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-color {
  margin: 0;
  padding: 0;
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-color li {
  display: inline-block;
  height: 35px;
  width: 35px;
  border-radius: 5px;
  cursor: pointer;
  vertical-align: middle;
  margin: 6px;
  position: relative;
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-rtl, .gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-dark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-rtl .gi-tools-item, .gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-dark .gi-tools-item {
  width: 125px;
  margin-bottom: 10px;
  text-align: center;
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-rtl .gi-tools-item img, .gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-dark .gi-tools-item img {
  width: 100%;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid #17181c;
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-rtl .gi-tools-item img:hover, .gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-dark .gi-tools-item img:hover {
  border: 1px solid #00a260;
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-rtl .active-mode img, .gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-dark .active-mode img {
  border-color: #00a260;
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-rtl .gi-tools-item.active, .gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-dark .gi-tools-item.active {
  position: relative;
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-rtl .gi-tools-item.active:after, .gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-dark .gi-tools-item.active:after {
  content: "\f211";
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-family: uicons-regular-rounded !important;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 10px;
  background-color: rgba(95, 106, 245, 0.7);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-rtl .gi-tools-item.active img, .gi-tools-sidebar .gi-tools-detail .gi-tools-block .gi-tools-dark .gi-tools-item.active img {
  border-color: #00a260;
}

.active-variant {
  position: relative;
}
.active-variant:after {
  font-family: uicons-regular-rounded !important;
  content: "\f211";
  height: 35px;
  width: 35px;
  font-size: 18px;
  position: absolute;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

a {
  color: #00a260;
}

.text-primary {
  color: #00a260 !important;
}

.color-primary {
  background: #00a260;
}

.color-1 {
  background: #8118d5;
}

.color-2 {
  background: #5f6af5;
}

.color-3 {
  background: #f5885f;
}

.color-4 {
  background: #32dbe2;
}

.color-5 {
  background: #3f51b5;
}

.color-6 {
  background: #f44336;
}

.color-7 {
  background: #e91e63;
}

.color-8 {
  background: #607d8b;
}

.color-9 {
  background: #03492f;
}

.open-tools {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*-------------------------------------------------
    Site Header Section
---------------------------------------------------*/
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  max-width: 150px;
  font-size: 14px;
  line-height: 28px;
  color: #777;
}
.bootstrap-select .form-control {
  min-height: 35px !important;
  height: 35px !important;
}
.bootstrap-select .btn-light {
  background-color: transparent;
  border-color: transparent;
}
.bootstrap-select .btn-light:focus, .bootstrap-select .btn-light:active {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.bootstrap-select .dropdown-menu {
  border: 1px solid #eee;
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
}
.bootstrap-select .dropdown-menu li a span.text {
  margin-right: 34px;
  font-size: 13px;
  color: #777;
}
.bootstrap-select .dropdown-menu .dropdown-item.active,
.bootstrap-select .dropdown-menu .dropdown-item:active {
  background-color: #516ebf;
}
.bootstrap-select .dropdown-menu .dropdown-item.active span,
.bootstrap-select .dropdown-menu .dropdown-item:active span {
  color: #fff;
}
.bootstrap-select .bs-actionsbox {
  padding: 8px;
}
.bootstrap-select .bs-actionsbox .btn-group button {
  width: 50%;
  font-size: 12px;
  color: #516ebf;
  font-weight: 500;
  border: 1px solid #eee;
}
.bootstrap-select .bs-actionsbox .btn-group button:hover {
  color: #00a260;
}
.bootstrap-select .bs-ok-default:after {
  content: "✔";
  display: inline-block;
  color: #777;
  border: none;
  -webkit-transform: none;
          transform: none;
}

.gi-header {
  background-color: #fff;
  z-index: 14;
  position: relative;
}

.header-top {
  padding: 10px 0;
  color: #fff;
  background-color: #00a260;
}
.header-top .header-top-message {
  font-size: 13px;
}

.header-top-right-inner > div {
  padding-left: 20px;
}
.header-top-right-inner > div:last-child {
  padding-right: 0;
  border: none;
}
.header-top-right-inner > div a {
  color: #fff;
}
.header-top-right-inner > div a:hover {
  color: #516ebf;
}

.header-top-social ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-top-social ul li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  line-height: 20px;
}
.header-top-social ul li a {
  margin: 0 5px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
}
.header-top-social ul li a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.header-top-social ul li:hover i {
  color: #fff;
}
.header-top-social ul li.list-inline-item:not(:last-child) {
  margin-right: 15px;
}

.gi-help {
  padding-left: 20px;
  font-size: 13px;
  color: #777;
  letter-spacing: 0.7px;
  font-weight: 400;
}
.gi-help:hover {
  color: #516ebf;
}

.header-top-lan-curr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header-top-lan-curr .dropdown .dropdown-toggle {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff;
  border: none;
  letter-spacing: 0.7px;
}
.header-top-lan-curr .dropdown .dropdown-toggle i {
  font-size: 14px;
  margin-left: 2px;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-top-lan-curr .dropdown .dropdown-toggle::after {
  display: none;
}
.header-top-lan-curr .dropdown .dropdown-toggle:hover {
  color: #516ebf;
}
.header-top-lan-curr .dropdown .dropdown-toggle:hover i {
  color: #516ebf;
}
.header-top-lan-curr .dropdown .dropdown-menu {
  margin: 0;
  top: 32px !important;
  left: auto !important;
  right: 0 !important;
  min-width: 130px;
  overflow: hidden;
  padding: 0 10px;
  background: #fff;
  border-radius: 0;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}
.header-top-lan-curr .dropdown .dropdown-menu li {
  border-bottom: 1px solid #eee;
}
.header-top-lan-curr .dropdown .dropdown-menu li:last-child {
  border: none;
}
.header-top-lan-curr .dropdown .dropdown-menu .dropdown-item {
  padding: 7px;
  color: #00a260;
  font-size: 14px;
  background: transparent;
}
.header-top-lan-curr .dropdown .dropdown-menu .dropdown-item:hover {
  color: #516ebf;
}
.header-top-lan-curr .dropdown .dropdown-menu li.active .dropdown-item {
  color: #516ebf;
}

.header-top-lan-curr.dropdown .dropdown-toggle {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff;
  border: none;
  letter-spacing: 0.7px;
}
.header-top-lan-curr.dropdown .dropdown-toggle i {
  font-size: 14px;
  margin-left: 5px;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-top-lan-curr.dropdown .dropdown-toggle::after {
  display: none;
}
.header-top-lan-curr.dropdown .dropdown-toggle:hover {
  color: #fff;
}
.header-top-lan-curr.dropdown .dropdown-toggle:hover i {
  color: #fff;
}
.header-top-lan-curr.dropdown .dropdown-menu {
  margin: 0;
  top: 32px !important;
  left: auto !important;
  right: 0 !important;
  min-width: 130px;
  overflow: hidden;
  padding: 0 10px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}
.header-top-lan-curr.dropdown .dropdown-menu li {
  border-bottom: 1px solid #eee;
}
.header-top-lan-curr.dropdown .dropdown-menu li:last-child {
  border: none;
}
.header-top-lan-curr.dropdown .dropdown-menu .dropdown-item {
  padding: 7px;
  color: #00a260;
  font-size: 14px;
  background: transparent;
}
.header-top-lan-curr.dropdown .dropdown-menu .dropdown-item:hover {
  color: #516ebf;
}
.header-top-lan-curr.dropdown .dropdown-menu li.active .dropdown-item {
  color: #516ebf;
}

.gi-header-bottom {
  padding: 0;
  border-bottom: 1px solid #eee;
}

.gi-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gi-header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gi-header-logo .gi-site-menu-icon {
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gi-header-logo .gi-site-menu-icon i {
  font-size: 24px;
  line-height: 17px;
  color: #00a260;
}
.gi-header-logo .gi-site-menu-icon:hover i {
  color: #516ebf;
}

.header-logo {
  text-align: left;
}
.header-logo img {
  width: 225px;
}

.col.gi-header-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13.8%;
          flex: 0 0 13.8%;
}

.header_svg {
  width: 26px;
  height: 26px;
  fill: #00a260;
}

.svg_cat {
  width: 23px;
  height: 23px;
}

.gi-header-wishlist {
  position: relative;
}
.gi-header-wishlist .header_svg {
  width: 27px;
  height: 27px;
}

.gi-header-user .header_svg {
  width: 30px;
  height: 30px;
}

.gi-header-buttons {
  margin-right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.gi-header-buttons .gi-site-menu-icon {
  display: none !important;
}
.gi-header-buttons .h-icon:last-child() {
  padding-right: 0 !important;
}
.gi-header-buttons .gi-acc-drop {
  position: relative;
}
.gi-header-buttons .gi-acc-drop:hover .gi-dropdown-menu {
  margin-top: 15px;
  opacity: 1;
  visibility: visible;
}
.gi-header-buttons .gi-acc-drop .gi-dropdown-menu {
  min-width: 150px;
  padding: 5px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 25px 0 0 0;
  position: absolute;
  z-index: 16;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  right: 0;
  left: auto !important;
  background: #fff;
  -webkit-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
  border: 1px solid #eee;
  display: block;
  border-radius: 5px;
}
.gi-header-buttons .gi-acc-drop .gi-dropdown-menu a {
  font-size: 13px;
  color: #777;
}
.gi-header-buttons .gi-acc-drop .gi-dropdown-menu a:hover {
  background: transparent;
  color: #516ebf;
}
.gi-header-buttons .gi-header-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: auto;
  padding: 0 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #00a260;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gi-header-buttons .gi-header-btn .header-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gi-header-buttons .gi-header-btn .header-icon .main-label-note-new {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: #ec716d;
  border-radius: 50%;
  cursor: default;
  display: none;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  z-index: 3;
  -webkit-animation: wave-animate 1s 1.5s infinite ease-out;
          animation: wave-animate 1s 1.5s infinite ease-out;
}
@-webkit-keyframes wave-animate {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@keyframes wave-animate {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
.gi-header-buttons .gi-header-btn .gi-header-count {
  width: 15px;
  height: 15px;
  color: #fff;
  background-color: #17181c !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  position: absolute;
  top: -2px;
  right: -6px;
  opacity: 0.8;
}
.gi-header-buttons .gi-header-btn:hover {
  color: #516ebf;
}
.gi-header-buttons .gi-header-btn:hover .gi-header-count {
  color: #f8f8fb;
}
.gi-header-buttons .gi-header-btn:hover .header_svg {
  fill: #516ebf;
}
.gi-header-buttons .gi-header-btn i {
  font-size: 24px;
  line-height: 17px;
}
.gi-header-buttons .gi-header-btn .header_svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.gi-header-buttons .gi-header-btn.gi-side-toggle {
  padding-right: 0;
}
.gi-header-buttons .gi-header-btn.dropdown-toggle::after {
  display: none;
}

div#gi-main-menu-desk {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gi-main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.gi-main-menu ul {
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
.gi-main-menu ul li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 0 20px;
}
.gi-main-menu ul li a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 15px 0;
  font-size: 15px;
  line-height: 60px;
  text-decoration: none;
  
  color: #00a260;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  position: relative;
}
.gi-main-menu ul li a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-right: 5px;
  font-size: 18px;
  color: #00a260;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gi-main-menu ul li:hover > a {
  color: #516ebf;
}
.gi-main-menu ul li:hover > a:after {
  color: #516ebf;
}
.gi-main-menu ul li:hover > a .svg_img path {
  fill: #516ebf;
}
.gi-main-menu ul li .mega-menu {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  margin-top: 15px;
  position: absolute;
  background: #fff;
  padding: 0 0 0 30px !important;
  opacity: 0;
  visibility: hidden;
  left: 0;
  z-index: 15;
  border-radius: 5px;
  -webkit-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
  border: 1px solid #eee;
  overflow: hidden;
}
.gi-main-menu ul li .mega-menu li ul {
  padding: 15px 0;
}
.gi-main-menu ul li .mega-menu li .mega-block {
  width: calc(25% - 30px);
  margin-right: 30px;
}
.gi-main-menu ul li .mega-menu li .mega-block li.menu_title a {
  color: #516ebf;
  font-size: 15px;
  font-weight: 500;
  display: block;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  padding-bottom: 5px;
  height: auto;
}
.gi-main-menu ul li .mega-menu li .mega-block li.menu_title a:hover {
  color: #516ebf;
}
.gi-main-menu ul li .mega-menu li .mega-block li {
  border: 0 !important;
}
.gi-main-menu ul li .mega-menu li .mega-block li a {
  color: #777;
  
  line-height: 30px;
  font-weight: 400;
  font-size: 13px;
  display: block;
  padding: 5px 0;
  border: 0;
  height: auto;
}
.gi-main-menu ul li .mega-menu li .mega-block li a:hover {
  color: #516ebf;
}
.gi-main-menu ul li .mega-menu ul.gi-main-banner {
  margin-top: 20px;
}
.gi-main-menu ul li .mega-menu ul.gi-main-banner li {
  width: 25%;
  padding-right: 30px;
}
.gi-main-menu ul li .mega-menu ul.gi-main-banner li a {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  height: auto;
}
.gi-main-menu ul li .mega-menu.bg {
  background-image: url(../img/bg/3.png);
  background-size: 300px;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.gi-main-menu ul li.drop-list {
  margin-right: 30px !important;
}
.gi-main-menu ul li.dropdown {
  position: relative;
}
.gi-main-menu ul li.dropdown ul.sub-menu {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 15px 0 0 0;
  position: absolute;
  z-index: 16;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  min-width: 205px;
  left: 0;
  right: auto !important;
  background: #fff;
  -webkit-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
  display: block;
  border-radius: 5px;
  border: 1px solid #eee;
}
.gi-main-menu ul li.dropdown ul {
  padding-top: 5px;
  padding-bottom: 5px;
}
.gi-main-menu ul li.dropdown ul li.active a {
  color: #516ebf;
}
.gi-main-menu ul li.dropdown ul li.active a i {
  color: #516ebf;
}
.gi-main-menu ul li.dropdown ul li {
  padding: 0;
  margin: 0;
  display: block;
}
.gi-main-menu ul li.dropdown ul li:hover > a {
  color: #516ebf;
}
.gi-main-menu ul li.dropdown ul li:hover > a i {
  color: #516ebf;
}
.gi-main-menu ul li.dropdown ul li a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  line-height: 20px;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 13px;
  color: #777;
  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gi-main-menu ul li.dropdown ul li a:hover {
  color: #516ebf;
}
.gi-main-menu ul li.dropdown ul li a:hover i {
  color: #516ebf;
}
.gi-main-menu ul li.dropdown ul li a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #777;
  position: absolute;
  right: 2px;
}
.gi-main-menu ul li.dropdown ul li:first-child {
  border-top: none;
}
.gi-main-menu ul li.dropdown li.position-static {
  position: relative !important;
}
.gi-main-menu ul li.dropdown li.position-static:hover .sub-menu.sub-menu-child {
  margin: -5px 0 0 0;
  opacity: 1;
  visibility: visible;
}
.gi-main-menu ul li.dropdown ul.sub-menu.sub-menu-child {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 30px 0 0 0;
  left: 100% !important;
  opacity: 0;
  visibility: hidden;
  top: 0;
}
.gi-main-menu ul li.dropdown:hover .sub-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.gi-main-menu ul li.dropdown:hover .mega-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.gi-main-menu ul .dropdown-arrow {
  position: relative !important;
}
.gi-main-menu ul .dropdown-arrow i {
  position: absolute;
  right: -27px;
  font-size: 18px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.gi-main-menu ul li.active > a {
  color: #516ebf;
}
.gi-main-menu > ul > li:hover > a:before {
  background: #516ebf;
  width: 100%;
}
.gi-main-menu > ul > li:hover > a i {
  color: #516ebf;
}
.gi-main-menu > ul > li > a:before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  width: 0;
  margin: 0 auto;
  background: transparent;
  left: 0;
  right: auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.gi-main-menu > ul > li.active > a:before {
  background: #516ebf;
  width: 100%;
}

.gi-header-cat {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  background-color: #fff;
}
.gi-header-cat .gi-nav-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.col.gi-category-icon-block {
  min-width: 200px;
}

.header-search {
  width: 100%;
  min-width: 700px;
  padding: 0 30px;
  position: relative;
}
.header-search .form-control {
  display: block;
  width: 100%;
  min-height: 50px;
  height: 50px;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #777;
  border-radius: 0;
  background-color: transparent;
  border: none;
  letter-spacing: 0.6px;
}
.header-search .bs-searchbox {
  margin: 4px 8px;
  padding: 0;
  border: 1px solid #eee;
  border-radius: 5px;
}
.header-search input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.header-search .dropdown-menu {
  border-radius: 5px;
}

.gi-header-search {
  margin: 0 auto;
}
.gi-header-search form.gi-search-group-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eee;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}

.action-form {
  position: relative;
}

.search_submit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
  height: 100%;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
  padding: 0;
  height: 40px;
}
.search_submit i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 18px;
  height: 18px;
  color: #00a260;
}
.search_submit:hover i {
  color: #00a260;
}

body.gi-menu-open {
  overflow: hidden;
}
body.gi-menu-open:before {
  height: 100%;
  width: 100%;
  background: #000000;
  opacity: 0.7;
  position: absolute;
  z-index: 998;
  content: "";
}

.gi-menu-content > ul > li .menu-toggle {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 24px;
  height: 44px;
  cursor: pointer;
  background-color: transparent;
}
.gi-menu-content > ul > li.active > .menu-toggle::before {
  content: "+";
}
.gi-menu-content > ul > li.active > ul > li.active > .menu-toggle::before {
  content: "-";
}

/*===== Mobile menus =====*/
.gi-mobile-menu-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 16;
}

.gi-mobile-menu {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 340px;
  height: 100%;
  padding: 15px 20px 20px 20px;
  position: fixed;
  top: 0;
  right: auto;
  left: 0;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 17;
  overflow: auto;
}
.gi-mobile-menu::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.gi-mobile-menu::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #00a260 !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.gi-mobile-menu::-webkit-scrollbar-thumb {
  background-color: #00a260 !important;
  border-radius: 10px !important;
  border: 3px solid #fff !important;
}
.gi-mobile-menu::-webkit-scrollbar-thumb:hover {
  background-color: #00a260 !important;
}
.gi-mobile-menu .gi-menu-title {
  width: 100%;
  padding: 0 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gi-mobile-menu .gi-menu-title .menu_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #00a260;
  font-weight: 600;
}
.gi-mobile-menu .gi-menu-title .gi-close-menu {
  position: relative;
  border: 0;
  font-size: 30px;
  line-height: 1;
  color: #777;
  background-color: transparent;
  border: 0;
}
.gi-mobile-menu .gi-menu-inner .gi-menu-content ul li {
  position: relative;
}
.gi-mobile-menu .gi-menu-inner .gi-menu-content ul li a {
  margin-bottom: 12px;
  padding: 12px 12px;
  display: block;
  
  color: #777;
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
}
.gi-mobile-menu .gi-menu-inner .gi-menu-content ul li a:last-child() {
  margin-bottom: 0;
}
.gi-mobile-menu .gi-menu-inner .gi-menu-content ul li .menu-toggle {
  width: 100%;
  height: 47px;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 5px;
  cursor: pointer;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gi-mobile-menu .gi-menu-inner .gi-menu-content ul li .menu-toggle::before {
  content: "+";
  margin-right: 5px;
  font-weight: 500;
  color: #777;
  font-size: 19px;
}
.gi-mobile-menu .gi-menu-inner .gi-menu-content ul li .sub-menu {
  width: 100%;
  min-width: auto;
  padding: 0;
  margin-bottom: 10px;
  position: static;
  top: auto;
  display: none;
  visibility: visible;
  -webkit-transition: none;
  transition: none;
  opacity: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.gi-mobile-menu .gi-menu-inner .gi-menu-content ul li .sub-menu li a {
  margin-bottom: 0;
  padding-left: 15px;
  padding-right: 0px;
  
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #777;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
}
.gi-mobile-menu .gi-menu-inner .gi-menu-content ul li .sub-menu li .sub-menu li a {
  font-weight: 400;
  padding-left: 30px;
  font-size: 14px;
  color: #999;
}
.gi-mobile-menu .gi-menu-inner .header-res-social {
  margin-top: 30px;
}
.gi-mobile-menu .gi-menu-inner .header-res-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gi-mobile-menu .gi-menu-inner .header-res-social ul li {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #00a260;
  border-radius: 5px;
}
.gi-mobile-menu .gi-menu-inner .header-res-social ul li a i {
  color: #fff;
}

.gi-mobile-menu.gi-menu-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.gi-search-menu {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 17;
}
.gi-search-menu .gi-search-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gi-search-menu .gi-search-wrapper .gi-close-search {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  line-height: 20px;
}
.gi-search-menu .gi-search-wrapper .gi-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gi-search-menu .gi-search-wrapper .gi-form i {
  margin-left: -17px;
  color: #fff;
}
.gi-search-menu .gi-search-wrapper .gi-form button {
  padding: 0;
}
.gi-search-menu input {
  width: 500px;
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #fff;
  color: #fff;
}
.gi-search-menu input::-webkit-input-placeholder {
  color: #eee;
  font-weight: 300;
}
.gi-search-menu input::-moz-placeholder {
  color: #eee;
  font-weight: 300;
}
.gi-search-menu input:-ms-input-placeholder {
  color: #eee;
  font-weight: 300;
}
.gi-search-menu input::-ms-input-placeholder {
  color: #eee;
  font-weight: 300;
}
.gi-search-menu input::placeholder {
  color: #eee;
  font-weight: 300;
}

/* Responsive Header */
@media (max-width: 1399px) {
  .header-search {
    min-width: 500px;
  }
  .gi-main-menu {
    position: unset;
  }
}
@media (max-width: 1199px) {
  .header-search {
    min-width: 400px;
  }
  .header-logo img {
    width: 180px;
  }
  .gi-category-menu .gi-category-toggle {
    width: auto;
  }
  .gi-category-menu .gi-category-toggle span, .gi-category-menu .gi-category-toggle i {
    display: none;
  }
  .gi-main-menu ul li {
    margin: 0 15px;
  }
  .gi-main-menu ul li .mega-menu li .mega-block {
    width: calc(25% - 30px);
  }
  .header-top {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-top {
    padding: 10px 0;
  }
  .gi-header-bottom {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }
  .gi-header-bottom .gi-site-menu-icon .svg_img path {
    fill: #777;
  }
  .header-logo img {
    width: 180px;
  }
  .header-search .form-control {
    height: 40px;
    min-height: 40px;
  }
  .gi-header-search {
    margin: 0;
  }
  .gi-header-search .header-search {
    padding: 0;
  }
  .gi-header {
    z-index: 16;
  }
  .gi-header-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .gi-header-buttons .right-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .gi-header-buttons .gi-header-btn:not(:last-child()) {
    margin-right: 0 !important;
  }
  .gi-header-buttons .gi-header-btn .svg_img {
    fill: #777;
  }
  .gi-header-buttons .gi-header-btn .header-icon .main-label-note-new {
    display: none;
  }
  .gi-header-btn .header_svg path {
    fill: #777;
  }
  .gi-category-menu .gi-category-toggle {
    min-height: 23px;
    padding: 0;
    background: transparent;
  }
  .gi-category-menu .gi-category-toggle .svg_img path {
    fill: #777;
  }
  .gi-header-user .header_svg {
    width: 25px;
    height: 25px;
  }
  .gi-wish-toggle .header_svg {
    width: 22px;
    height: 22px;
  }
  .gi-cart-toggle .header_svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .header-logo img {
    width: 180px;
  }
  .header-search {
    min-width: 350px;
  }
  .header-top-left {
    display: none;
  }
  .gi-header-buttons {
    position: relative;
  }
  .gi-header-buttons .gi-header-btn:nth-last-child(-n+2) {
    margin-right: 0 !important;
  }
}
@media (max-width: 575px) {
  .gi-header-bottom {
    padding: 15px 0 0 0;
  }
  .gi-header-bottom .gi-flex {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gi-header-bottom .gi-flex .gi-header-logo {
    margin-bottom: 15px;
  }
  .gi-header-action { background-color : #000 !important; }  
  .gi-header-bottom .gi-header-buttons {
	
    margin: 0;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .gi-header-bottom .gi-header-buttons .gi-header-btn i {
    color: #fff;
    font-size: 18px;
  }
  .gi-header-action {
    width: 100%;
    padding: 10px 0;
    background-color: #00a260;
  }
  .gi-header-buttons .gi-site-menu-icon {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .gi-header-logo .gi-site-menu-icon {
    display: none;
  }
}
@media (max-width: 480px) {
  .gi-mobile-menu {
    width: 300px;
  }
  .header-search {
    min-width: 300px;
  }
}
/*-------------------------------------------------
    Site Footer Section
---------------------------------------------------*/
.gi-footer {
  color: #fff;
  background: #fff;
  border-top: 1px solid #eee;
}
.gi-footer .footer-top .gi-footer-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.gi-footer .footer-top .gi-footer-company .gi-app-store {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.gi-footer .footer-top .gi-footer-widget .gi-footer-logo {
  max-width: 250px;
  margin-bottom: 30px;
}
.gi-footer .footer-top .gi-footer-widget .gi-footer-detail {
  max-width: 400px;
  margin-bottom: 30px;
  padding: 0;
  font-size: 14px;
  line-height: 27px;
  font-weight: 400;
  color: #777;
  display: inline-block;
  position: relative;
}
.gi-footer .footer-top .gi-footer-widget .app-img img {
  max-width: 140px;
  margin-bottom: 15px;
  border-radius: 5px;
}
.gi-footer .footer-top .gi-footer-widget .app-img .adroid {
  margin-right: 15px;
}
.gi-footer .footer-top .gi-footer-widget .gi-footer-heading {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #00a260;
  letter-spacing: 0;
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 15px;
  
  font-family: "Poppins, sans-serif";
  border-bottom: 1px solid #eee;
}
.gi-footer .footer-top .gi-footer-widget .s-head {
  display: none;
}
.gi-footer .footer-top .gi-footer-widget .gi-footer-links i {
  line-height: 0;
  font-size: 18px;
}
.gi-footer .footer-top .gi-footer-widget .gi-footer-links .gi-footer-link {
  display: block;
  margin: 0;
  line-height: 1.5;
  border: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  color: #516ebf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gi-footer .footer-top .gi-footer-widget .gi-footer-links .gi-footer-link:not(:last-child) {
  margin-bottom: 16px;
}
.gi-footer .footer-top .gi-footer-widget .gi-footer-links .gi-footer-link a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  line-height: 20px;
  padding: 0;
  color: #777;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  word-break: break-all;
  letter-spacing: 0;
  font-weight: 400;
}
.gi-footer .footer-top .gi-footer-widget .gi-footer-links .gi-footer-link a:hover {
  color: #00a260;
  opacity: 1;
}
.gi-footer .footer-top .gi-footer-contact .gi-footer-widget .gi-footer-links li:first-child {
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}
.gi-footer .footer-top .gi-footer-contact .gi-footer-widget .gi-footer-links li p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #777;
}
.gi-footer .footer-top .gi-footer-contact .gi-footer-widget .gi-footer-links a {
  text-transform: unset;
}
.gi-footer .footer-top .gi-footer-contact .gi-footer-widget .gi-footer-links .gi-footer-link span {
  width: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gi-footer .footer-top .gi-footer-social {
  margin-bottom: 0;
}
.gi-footer .footer-top .gi-footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gi-footer .footer-top .gi-footer-social .gi-footer-widget .gi-footer-links .gi-footer-link {
  padding-right: 5px;
}
.gi-footer .footer-top .gi-footer-social .gi-footer-widget .gi-footer-links .gi-footer-link:not(:last-child) {
  margin-bottom: 0;
}
.gi-footer .footer-top .gi-footer-social .gi-footer-widget .gi-footer-links .gi-footer-link a {
  width: 30px;
  height: 30px;
  background-color: #00a260;
  border-radius: 5px;
  
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
}
.gi-footer .footer-top .gi-footer-social .gi-footer-widget .gi-footer-links .gi-footer-link a i {
  font-size: 16px;
  color: #fff;
}

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

.svg_img.foo_svg {
  height: 25px;
  color: #00a260;
  width: auto;
}

.gi-foo-location .svg_img.foo_svg {
  margin-top: 5px;
}

.gi-foo-call .svg_img.foo_svg {
  height: 20px;
}

.gi-foo-mail .svg_img.foo_svg {
  height: 20px;
}

.footer-bottom {
  padding: 10px 0;
  background-color: #00a260;
}
.footer-bottom .gi-bottom-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-bottom .gi-copy {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 300;
}
.footer-bottom .gi-copy a {
  color: #fff;
}
.footer-bottom .gi-copy .site-name:hover {
  color: #fff;
}

.gi-heading-res {
  display: none;
}

/* Responsive footer css */
@media only screen and (max-width: 1399px) {
  .gi-footer .footer-top .gi-footer-widget .gi-footer-links .gi-footer-link a {
    font-size: 15px;
  }
  .gi-footer .footer-top .gi-footer-widget .gi-footer-links li p {
    font-size: 15px;
  }
  .gi-footer .footer-top .gi-footer-widget .app-img img {
    max-width: 120px;
  }
  .gi-footer .footer-top .gi-footer-widget .gi-footer-detail {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .gi-footer .footer-top .gi-footer-widget .gi-footer-links .gi-footer-link a {
    font-size: 14px;
  }
  .gi-footer .footer-top .gi-footer-widget .gi-footer-links li p {
    font-size: 14px;
  }
  .gi-footer .footer-top .gi-footer-widget .gi-footer-detail {
    font-size: 14px;
  }
  .gi-footer .footer-top .gi-footer-widget .gi-foo-location .svg_img.foo_svg {
    height: 20px;
  }
  .gi-footer .footer-top .gi-footer-widget .gi-foo-call .svg_img.foo_svg {
    height: 18px;
  }
  .gi-footer .footer-top .gi-footer-widget .gi-foo-mail .svg_img.foo_svg {
    height: 17px;
  }
  .gi-footer .footer-top .gi-footer-company .gi-app-store {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 992px) {
  .gi-footer .footer-top .gi-footer-widget .gi-footer-dropdown {
    display: block !important;
  }
}
@media (max-width: 991px) {
  .gi-footer .footer-top .gi-footer-company .gi-app-store {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .gi-footer .footer-top .container > .row {
    padding: 0;
  }
  .gi-footer .footer-top .gi-footer-widget .gi-footer-links ul {
    margin-bottom: 15px;
  }
  .gi-footer .footer-top .gi-footer-widget .gi-footer-links .gi-footer-link:not(:last-child) {
    margin-bottom: 15px;
  }
  .gi-footer .footer-top .col-sm-12.col-lg-3 {
    width: 100%;
    margin-bottom: 0;
  }
  .gi-footer .footer-top .gi-footer-contact .gi-footer-widget .gi-footer-heading {
    margin-bottom: 15px;
  }
  .gi-footer-contact {
    margin-bottom: 0;
  }
  .footer-news-title {
    font-size: 20px;
  }
  .gi-subscribe-form {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58%;
            flex: 0 0 58%;
  }
  .gi-heading-res {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: block;
    text-align: right;
  }
  .gi-footer-links.gi-footer-dropdown {
    display: none;
    padding: 0 0 20px 0;
  }
  .footer-bottom-copy {
    text-align: center;
  }
  .footer-bottom {
    padding: 15px 0;
  }
  .footer-bottom .col {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .footer-bottom .gi-bottom-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-bottom .gi-bottom-info .footer-copy {
    margin-bottom: 15px;
  }
  .col.footer-bottom-right {
    margin: 15px auto;
  }
  .footer-bottom-payment.d-flex.justify-content-end {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .gi-footer .footer-top .gi-footer-widget .s-head {
    display: block;
  }
  .gi-footer .footer-top .gi-footer-widget .gi-footer-heading {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .m-minus-991 {
    margin-bottom: -15px;
  }
}
@media (max-width: 767px) {
  .gi-footer .footer-top .gi-footer-widget .gi-footer-logo {
    max-width: 150px;
  }
}
@media (max-width: 360px) {
  .footer-bottom .gi-bottom-info .footer-bottom-right img {
    width: 100%;
  }
}
/*===== Category section css =====*/
.gi-category-shop .gi-category-block {
  padding: 0 !important;
  border: 0 !important;
}

.gi-category .gi-category-block, .gi-category .gi-category-block-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gi-category .gi-category-block .gi-cat-box, .gi-category .gi-category-block-2 .gi-cat-box {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 15px;
  border-radius: 5px;
  position: relative;
}
.gi-category .gi-category-block .gi-cat-box:hover:after, .gi-category .gi-category-block-2 .gi-cat-box:hover:after {
  top: 50%;
}
.gi-category .gi-category-block .gi-cat-box:after, .gi-category .gi-category-block-2 .gi-cat-box:after {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), color-stop(#fff), to(transparent));
  background-image: linear-gradient(360deg, #fff, #fff, transparent);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.gi-category .gi-category-block .gi-cat-box .gi-cat-icon, .gi-category .gi-category-block-2 .gi-cat-box .gi-cat-icon {
  height: 100%;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  position: relative;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 15px rgba(88, 110, 125, 0.1);
          box-shadow: 0 5px 15px rgba(88, 110, 125, 0.1);
  z-index: 5;
}
.gi-category .gi-category-block .gi-cat-box .gi-cat-icon i, .gi-category .gi-category-block-2 .gi-cat-box .gi-cat-icon i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 40px;
  margin: 10px 0;
  color: #00a260;
  line-height: 0;
}
.gi-category .gi-category-block .gi-cat-box .gi-cat-icon img, .gi-category .gi-category-block-2 .gi-cat-box .gi-cat-icon img {
  width: 50px;
  height: 50px;
  margin: 10px 0;
}
.gi-category .gi-category-block .gi-cat-box .gi-cat-icon .gi-cat-detail, .gi-category .gi-category-block-2 .gi-cat-box .gi-cat-icon .gi-cat-detail {
  text-align: center;
}
.gi-category .gi-category-block .gi-cat-box .gi-cat-icon .gi-cat-detail .gi-cat-title, .gi-category .gi-category-block-2 .gi-cat-box .gi-cat-icon .gi-cat-detail .gi-cat-title {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  color: #00a260;
  font-family: "Manrope", sans-serif;
  
}
.gi-category .gi-category-block .gi-cat-box .gi-cat-icon .gi-cat-detail .items, .gi-category .gi-category-block-2 .gi-cat-box .gi-cat-icon .gi-cat-detail .items {
  margin: 0;
  font-size: 13px;
  line-height: 28px;
  color: #777;
}
.gi-category .gi-category-block .gi-cat-box .gi-cat-icon .gi-lbl, .gi-category .gi-category-block-2 .gi-cat-box .gi-cat-icon .gi-lbl {
  padding: 0 5px;
  position: absolute;
  top: 0;
  right: 0;
  background: #00a260;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 0 5px 0 5px;
}
.gi-category .gi-category-block .gi-cat-box-1, .gi-category .gi-category-block-2 .gi-cat-box-1 {
  background-color: #fff6ec;
}
.gi-category .gi-category-block .gi-cat-box-2, .gi-category .gi-category-block-2 .gi-cat-box-2 {
  background-color: #e2fde2;
}
.gi-category .gi-category-block .gi-cat-box-3, .gi-category .gi-category-block-2 .gi-cat-box-3 {
  background-color: #ffeae9;
}
.gi-category .gi-category-block .gi-cat-box-4, .gi-category .gi-category-block-2 .gi-cat-box-4 {
  background-color: #fde1f5;
}
.gi-category .gi-category-block .gi-cat-box-5, .gi-category .gi-category-block-2 .gi-cat-box-5 {
  background-color: #ecf0ff;
}
.gi-category .gi-category-block .gi-cat-box-6, .gi-category .gi-category-block-2 .gi-cat-box-6 {
  background-color: #f9f9d9;
}

/*===== New Product css =====*/
.gi-tab-title {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gi-tab-title .gi-pro-tab {
  margin-top: 40px;
}
.gi-tab-title .gi-pro-tab ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.gi-pro-tab-nav {
  margin: 0 auto;
}
.gi-pro-tab-nav .nav-item {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 20px;
  letter-spacing: 0.7px;
}
.gi-pro-tab-nav .nav-item:not(:last-child) {
  margin-right: 50px;
}
.gi-pro-tab-nav .nav-item .nav-link {
  padding: 0;
  color: #777;
  position: relative;
  font-weight: 500;
}
.gi-pro-tab-nav .nav-item .nav-link:hover {
  color: #00a260;
}
.gi-pro-tab-nav .nav-item .nav-link.active {
  color: #00a260;
}

.gi-products .gi-product-slider .owl-stage, .gi-products .gi-product-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gi-product-slider .gi-product-content {
  height: 100%;
  padding: 0 12px 24px 12px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.gi-product-content {
  height: 100%;
  padding: 0 0 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gi-product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gi-product-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gi-products-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.deal-slick-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.deal-slick-carousel .slick-track {
  height: 100%;
}
.deal-slick-carousel .slick-track .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gi-pro-variation {
  margin: 5px 0 0px;
}
.gi-pro-variation .gi-pro-variation-inner {
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gi-pro-variation .gi-pro-variation-inner > span {
  display: block;
  margin: 0 0 5px;
}
.gi-pro-variation .gi-pro-variation-inner .gi-pro-variation-content li {
  display: inline-block;
  border: 1px solid transparent;
  padding: 1px;
  float: left;
  cursor: pointer;
  margin-right: 5px;
}
.gi-pro-variation .gi-pro-variation-inner.gi-pro-variation-color .gi-pro-variation-content li {
  border-radius: 100%;
}
.gi-pro-variation .gi-pro-variation-inner.gi-pro-variation-color .gi-pro-variation-content li span {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 100%;
}
.gi-pro-variation .gi-pro-variation-inner.gi-pro-variation-color .gi-pro-variation-content li:hover {
  border: 1px solid #00a260;
}
.gi-pro-variation .gi-pro-variation-inner.gi-pro-variation-size .gi-pro-variation-content li {
  height: 22px;
  padding: 2px 8px;
  cursor: pointer;
  border: 1px solid #eeeeee;
  color: #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  line-height: 22px;
  border-radius: 5px;
  font-weight: 400;
}
.gi-pro-variation .gi-pro-variation-inner.gi-pro-variation-size .gi-pro-variation-content li:hover {
  background-color: #00a260;
  color: #fff;
  border-color: #00a260;
}
.gi-pro-variation .gi-pro-variation-inner.gi-pro-variation-size .gi-pro-variation-content li.active {
  background-color: #00a260 !important;
  color: #fff !important;
  border-color: #00a260 !important;
}

button.btn-close.qty_close {
  position: absolute;
  left: auto;
  right: 10px;
  top: 10px;
  z-index: 9999;
}

.svg_img.pro_svg {
  width: 18px;
  fill: #777;
}

a.wishlist .svg_img.pro_svg {
  width: 16px;
  height: 16px;
}

.eccart-pro-items li .gi-pro-content .qty-plus-minus {
  width: 85px;
  height: 35px;
  margin-top: 7px;
  padding: 7px 0;
  border: 1px solid #eeeeee;
  display: inline-block;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 30px;
}
.eccart-pro-items li .gi-pro-content .qty-plus-minus .gi_qtybtn {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  cursor: pointer;
  font-size: 20px;
  color: #777;
}
.eccart-pro-items li .gi-pro-content .qty-plus-minus input.qty-input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #00a260;
  float: left;
  font-size: 14px;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 32px;
  outline: none;
  font-weight: 400;
  line-height: 35px;
}
.eccart-pro-items li .gi-pro-content .qty-plus-minus .dec.gi_qtybtn {
  border-right: 1px solid #eeeeee;
}
.eccart-pro-items li .gi-pro-content .qty-plus-minus .inc.gi_qtybtn {
  border-left: 1px solid #eeeeee;
}

.gi-pro-loader {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  display: none;
  background: url(../images/common/pro-loader.gif) no-repeat scroll 50% 50%;
  background-color: rgba(255, 255, 255, 0.5);
  background-size: 75px;
}

.pro-loading .gi-pro-loader {
  opacity: 1;
  display: block;
}

i.gicon.gi-star-o {
  font-size: 14px;
  margin-right: 3px;
}

i.gicon.gi-star {
  color: #777;
  float: left;
  font-size: 14px;
  margin-right: 3px;
}

i.gicon.gi-star.fill {
  color: #f27d0c;
}

.gi-pro-opt-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 15px;
}

.product-block {
  display: -ms-grid;
  display: grid;
}

/**===== Blog & blog Section =====**/
.gi-blog-section .section-title {
  margin-bottom: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.gi-blog .blog-info, .gi-blog-section .blog-info {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 5px;
}
.gi-blog .blog-info:hover .blog-img img, .gi-blog-section .blog-info:hover .blog-img img {
  -webkit-transform: rotate(-3deg) scale(1.1);
          transform: rotate(-3deg) scale(1.1);
}
.gi-blog .blog-info .blog-img, .gi-blog-section .blog-info .blog-img {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.gi-blog .blog-info .blog-img img, .gi-blog-section .blog-info .blog-img img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
  width: 100%;
  height: 100%;
}
.gi-blog .blog-info .detail, .gi-blog-section .blog-info .detail {
  width: 100%;
  margin: 0;
}
.gi-blog .blog-info .detail label, .gi-blog-section .blog-info .detail label {
  margin-top: 20px;
  display: inline-block;
  font-size: 13px;
  color: #999;
  border-radius: 5px;
}
.gi-blog .blog-info .detail label a, .gi-blog-section .blog-info .detail label a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #999;
}
.gi-blog .blog-info .detail label a:hover, .gi-blog-section .blog-info .detail label a:hover {
  color: #00a260;
}
.gi-blog .blog-info .detail h3, .gi-blog-section .blog-info .detail h3 {
  margin: 10px 0 15px 0;
  padding: 0;
  line-height: 26px;
}
.gi-blog .blog-info .detail h3 a, .gi-blog-section .blog-info .detail h3 a {
  font-family: "Poppins, sans-serif";
  color: #00a260;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
}
.gi-blog .blog-info .detail p, .gi-blog-section .blog-info .detail p {
  font-size: 14px;
  color: #777;
}
.gi-blog .blog-info .detail .more-info a, .gi-blog-section .blog-info .detail .more-info a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #00a260;
  font-size: 13px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gi-blog .blog-info .detail .more-info a:hover, .gi-blog-section .blog-info .detail .more-info a:hover {
  background: #fff;
  color: #00a260;
}
.gi-blog .blog-info .detail .more-info a:hover i, .gi-blog-section .blog-info .detail .more-info a:hover i {
  color: #00a260;
}
.gi-blog .blog-info .detail .more-info a i, .gi-blog-section .blog-info .detail .more-info a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-left: 5px;
  color: #00a260;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/**  Blog Sidebar  **/
.gi-blogs-sidebar .gi-sb-title {
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}
.gi-blogs-sidebar .gi-sb-title h3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  font-family: "Poppins, sans-serif";
  font-size: 18px;
  font-weight: 500;
}
.gi-blogs-sidebar .gi-blog-sidebar-wrap {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 5px;
}
.gi-blogs-sidebar .gi-blog-search {
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #eee;
  color: #00a260;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.gi-blogs-sidebar .gi-blog-search .gi-blog-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
.gi-blogs-sidebar .gi-blog-search .form-control {
  display: block;
  width: 100%;
  min-height: 48px;
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #777;
  background-color: transparent;
  border: none;
  letter-spacing: 0;
}
.gi-blogs-sidebar .gi-blog-search .submit {
  position: relative;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  color: #00a260;
}
.gi-blogs-sidebar .gi-sidebar-block ul li a {
  padding-left: 30px;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item {
  position: relative;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item input {
  width: 100%;
  height: calc(100% - 5px);
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 999;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item input:checked ~ .checked::after {
  display: block;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item a {
  width: 100%;
  display: block;
  color: #777;
  font-size: 14px;
  margin-top: 0;
  line-height: 20px;
  font-weight: 400;
  
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item a span {
  color: #999;
  font-size: 13px;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item .checked {
  position: absolute;
  top: 50%;
  left: 0;
  height: 18px;
  width: 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 5px;
  overflow: hidden;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item .checked:after {
  left: -1px;
  top: -1px;
  width: 18px;
  height: 18px;
  border: 1px solid #00a260;
  content: "\f00c";
  position: absolute;
  display: none;
  background: #00a260;
  font-family: "gIcons";
  font-size: 10px;
  color: #fff;
  line-height: 16px;
  text-align: center;
}
.gi-blogs-sidebar .gi-sidebar-block:not(:last-child) {
  margin-bottom: 30px;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-img {
  margin-right: 15px;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-img img {
  width: auto;
  height: auto;  
  max-width:50px;  
  border-radius: 5px;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-detial .gi-blog-title a {
  color: #777;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  font-weight: 600;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-detial .gi-blog-date {
  margin-bottom: 10px;
  font-size: 14px;
  color: #999;
  line-height: 1;
  letter-spacing: 0;
}
.gi-blogs-sidebar .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-detial a {
  font-size: 14px;
  color: #00a260;
}

/**  Single blog (Blog details)   **/
.gi-single-blog-item .single-blog-info .blog-img img {
  width: 100%;
  border-radius: 5px;
}
.gi-single-blog-item .single-blog-info .single-blog-detail label {
  margin-bottom: 15px;
  color: #999;
}
.gi-single-blog-item .single-blog-info .single-blog-detail label a {
  color: #999;
}
.gi-single-blog-item .single-blog-info .single-blog-detail label a:hover {
  color: #00a260;
}
.gi-single-blog-item .single-blog-info .single-blog-detail h3 {
  font-size: 22px;
  font-weight: 600;
  color: #00a260;
}
.gi-single-blog-item .single-blog-info .single-blog-detail p {
  color: #777;
  font-size: 14px;
}
.gi-single-blog-item .single-blog-info .single-blog-detail .gi-text-highlight {
  font-weight: 500;
  font-style: italic;
}
.gi-single-blog-item .single-blog-info .single-blog-detail .sub-img {
  margin-top: 30px;
}
.gi-single-blog-item .single-blog-info .single-blog-detail .sub-img img {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 5px;
}

.gi-blog-comments .gi-blog-dgi-title {
  margin-bottom: 30px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #00a260;
  background-color: #f8f8fb;
  border-radius: 5px;
}
.gi-blog-comments .sub-cmt {
  margin-left: 65px;
}
.gi-blog-comments .gi-single-comment-wrapper {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.gi-blog-comments .gi-single-comment-wrapper .gi-blog-user-img {
  width: 50px;
  margin-right: 15px;
}
.gi-blog-comments .gi-single-comment-wrapper .gi-blog-user-img img {
  width: 100%;
  border-radius: 5px;
}
.gi-blog-comments .gi-single-comment-wrapper .gi-blog-comment-content {
  width: calc(100% - 115px);
}
.gi-blog-comments .gi-single-comment-wrapper .gi-blog-comment-content h5 {
  color: #00a260;
  font-size: 16px;
  font-weight: 600;
}
.gi-blog-comments .gi-single-comment-wrapper .gi-blog-comment-content span {
  color: #999;
  font-size: 13px;
}
.gi-blog-comments .gi-single-comment-wrapper .gi-blog-comment-content p {
  margin: 5px 0;
  color: #777;
  font-size: 14px;
}
.gi-blog-comments .gi-single-comment-wrapper .gi-blog-comment-content .gi-blog-details-btn a {
  color: #00a260;
  font-size: 13px;
}
.gi-blog-comments .gi-blog-cmt-form .gi-blog-form input {
  width: 100%;
  height: 45px;
  margin-bottom: 30px;
  padding-left: 20px;
  background: transparent none repeat scroll 0 0;
  border: 1px solid #eee;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #777;
  font-size: 14px;
}
.gi-blog-comments .gi-blog-cmt-form .gi-blog-form textarea {
  width: 100%;
  height: 200px;
  margin-bottom: 30px;
  padding: 15px 20px;
  border: 1px solid #eee;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.gi-blog-comments .gi-blog-cmt-form .gi-blog-form textarea:focus {
  outline: none;
}

/**===== Blog & blog Section =====**/
.gi-blog-section .blog-info {
  position: relative;
}
.gi-blog-section .blog-info:hover .detail label {
  opacity: 1;
}
.gi-blog-section .blog-info .detail label {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  margin: 0;
  padding: 15px 10px;
  border-radius: 5px 5px 0 0;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  color: #fff;
}
.gi-blog-section .blog-info .detail label a {
  color: #fff;
}

/*===== Banners section css =====*/
.gi-offer-section {
  overflow: hidden;
}

.gi-ofr-banners .gi-bnr-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  overflow: hidden;
}
.gi-ofr-banners .gi-bnr-body::before {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.gi-ofr-banners .gi-bnr-body:hover::before, .gi-ofr-banners .gi-bnr-body:focus::before {
  -webkit-animation: shine 0.85s;
          animation: shine 0.85s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.gi-ofr-banners .gi-bnr-body .gi-bnr-img {
  width: 100%;
  position: relative;
}
.gi-ofr-banners .gi-bnr-body .gi-bnr-img img {
  width: 100%;
  border-radius: 5px;
}
.gi-ofr-banners .gi-bnr-body .gi-bnr-img .lbl {
  padding: 2px 7px;
  font-size: 12px;
  border-radius: 5px;
  position: absolute;
  top: 15px;
  left: 15px;
  
  background-color: #00a260;
  color: #fff;
  opacity: 0.8;
}
.gi-ofr-banners .gi-bnr-body .gi-bnr-detail {
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gi-ofr-banners .gi-bnr-body .gi-bnr-detail h5 {
  color: #00a260;
  font-size: 34px;
  font-weight: 700;
  
}
.gi-ofr-banners .gi-bnr-body .gi-bnr-detail p {
  color: #777;
  
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.gi-ofr-banners .gi-bnr-body .gi-bnr-detail a {
  padding: 5px 15px;
}

/**===== Start Service Section =====**/
.gi-ser-inner {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 30px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #eee;
}
.gi-ser-inner .gi-service-image {
  margin-bottom: 15px;
}
.gi-ser-inner .gi-service-image i {
  font-size: 40px;
  color: #00a260;
  line-height: 0;
}

.gi-service-desc h3 {
  font-family: "Poppins, sans-serif";
  font-size: 18px;
  font-weight: 500;
  color: #00a260;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}
.gi-service-desc p {
  margin: 0;
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

/**  Shop Sidebar  **/
.h-sidebar {
  padding-left: 12px;
  padding-right: 12px;
}
.h-sidebar .gi-sidebar-block {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #eee;
}
.h-sidebar .gi-sidebar-wrap {
  border: 0 !important;
  padding: 0 !important;
}
.h-sidebar .gi-sidebar-wrap .gi-sidebar-block {
  margin-bottom: 24px !important;
}
.h-sidebar .gi-sidebar-wrap .gi-sb-title h3 .gi-sidebar-res {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.h-sidebar h3 {
  margin: 5px 0;
}
.h-sidebar .cat-drop h6 {
  padding: 15px 0 0 0;
  font-size: 15px;
  color: #777;
  font-weight: 600;
}
.h-sidebar .cat-drop h6 i {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  font-size: 17px;
  line-height: 0 !important;
}
.h-sidebar .cat-drop h6 a {
  width: 100%;
  margin-top: 0;
  display: block;
  color: #777;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.h-sidebar .cat-drop h6 a .avil {
  font-size: 13px;
  font-weight: 400;
}
.h-sidebar .cat-drop ul li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.h-sidebar .cat-drop ul li a {
  width: 100%;
  margin-top: 0;
  display: block;
  color: #777;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.h-sidebar .cat-drop ul li a .avil {
  font-size: 13px;
}

.gi-shop-sidebar-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 17;
}

.gi-open {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
}

.gi-shop-sidebar, .gi-shop-sidebar-2 {
  margin-bottom: -15px;
  position: sticky;
  top: 24px;
}
.gi-shop-sidebar .gi-sb-title, .gi-shop-sidebar-2 .gi-sb-title {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.gi-shop-sidebar .gi-sb-title h3, .gi-shop-sidebar-2 .gi-sb-title h3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  font-family: "Poppins, sans-serif";
  font-size: 17px !important;
  font-weight: 500;
  color: #00a260;
}
.gi-shop-sidebar .gi-blog-sidebar-wrap, .gi-shop-sidebar-2 .gi-blog-sidebar-wrap {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 5px;
}
.gi-shop-sidebar .gi-blog-search, .gi-shop-sidebar-2 .gi-blog-search {
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #eee;
  color: #00a260;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.gi-shop-sidebar .gi-blog-search .gi-blog-search-form, .gi-shop-sidebar-2 .gi-blog-search .gi-blog-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
.gi-shop-sidebar .gi-blog-search .form-control, .gi-shop-sidebar-2 .gi-blog-search .form-control {
  display: block;
  width: 100%;
  min-height: 48px;
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #777;
  background-color: transparent;
  border: none;
  letter-spacing: 0;
}
.gi-shop-sidebar .gi-blog-search .submit, .gi-shop-sidebar-2 .gi-blog-search .submit {
  position: relative;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  color: #00a260;
}
.gi-shop-sidebar .gi-sidebar-block ul li a, .gi-shop-sidebar-2 .gi-sidebar-block ul li a {
  padding-left: 30px;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item {
  position: relative;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item input, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item input {
  width: 100%;
  height: calc(100% - 5px);
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 9;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item input:checked ~ .checked::after, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item input:checked ~ .checked::after {
  display: block;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item a, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item a {
  width: 100%;
  display: block;
  color: #777;
  font-size: 14px;
  margin-top: 0;
  line-height: 20px;
  font-weight: 400;
  
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item a span, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item a i, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item a i {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  font-size: 17px;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item a .products, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item a .products {
  color: #999;
  font-size: 13px;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item .checked, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item .checked {
  position: absolute;
  top: 50%;
  left: 0;
  height: 18px;
  width: 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 5px;
  overflow: hidden;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item .checked:after, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item .checked:after {
  left: -1px;
  top: -1px;
  width: 18px;
  height: 18px;
  border: 1px solid #00a260;
  content: "\f00c";
  position: absolute;
  display: none;
  background: #00a260;
  font-family: "gIcons";
  font-size: 10px;
  color: #fff;
  line-height: 16px;
  text-align: center;
}
.gi-shop-sidebar .gi-sidebar-block:not(:last-child), .gi-shop-sidebar-2 .gi-sidebar-block:not(:last-child) {
  margin-bottom: 15px;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-img, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-img {
  margin-right: 15px;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-img img, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-img img {
  width: 50px;
  border-radius: 5px;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-detial .gi-blog-title a, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-detial .gi-blog-title a {
  color: #777;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  font-weight: 600;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-detial .gi-blog-date, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-detial .gi-blog-date {
  margin-bottom: 5px;
  font-size: 14px;
  color: #999;
  line-height: 1;
  letter-spacing: 0;
}
.gi-shop-sidebar .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-detial a, .gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item .gi-sidebar-block-detial a {
  font-size: 14px;
  color: #00a260;
}
.gi-shop-sidebar .gi-sidebar-block.color-block .gi-sb-block-content.gi-sidebar-dropdown, .gi-shop-sidebar-2 .gi-sidebar-block.color-block .gi-sb-block-content.gi-sidebar-dropdown {
  margin-top: 20px;
}
.gi-shop-sidebar .gi-sidebar-block.color-block ul, .gi-shop-sidebar-2 .gi-sidebar-block.color-block ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.gi-shop-sidebar .gi-sidebar-block.color-block ul li, .gi-shop-sidebar-2 .gi-sidebar-block.color-block ul li {
  margin-right: 10px;
}
.gi-shop-sidebar .gi-sidebar-block.color-block .gi-sidebar-block-item, .gi-shop-sidebar-2 .gi-sidebar-block.color-block .gi-sidebar-block-item {
  padding: 5px 0;
  border: 0;
}
.gi-shop-sidebar .gi-sidebar-block.color-block .gi-sidebar-block-item .gi-clr-block, .gi-shop-sidebar-2 .gi-sidebar-block.color-block .gi-sidebar-block-item .gi-clr-block {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  opacity: 0.7;
  background: transparent;
  cursor: pointer;
}
.gi-shop-sidebar .gi-sidebar-block.color-block .gi-sidebar-block-item .gi-clr-block:hover, .gi-shop-sidebar-2 .gi-sidebar-block.color-block .gi-sidebar-block-item .gi-clr-block:hover {
  opacity: 1;
}
.gi-shop-sidebar .gi-sidebar-block.color-block .gi-sidebar-block-item input, .gi-shop-sidebar-2 .gi-sidebar-block.color-block .gi-sidebar-block-item input {
  width: 20px;
  height: 20px;
}
.gi-shop-sidebar .gi-sidebar-block.color-block .gi-sidebar-block-item .checked, .gi-shop-sidebar-2 .gi-sidebar-block.color-block .gi-sidebar-block-item .checked {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 0;
}
.gi-shop-sidebar .gi-sidebar-block.color-block .gi-sidebar-block-item .checked:after, .gi-shop-sidebar-2 .gi-sidebar-block.color-block .gi-sidebar-block-item .checked:after {
  width: 24px;
  height: 18px;
  left: -1px;
  top: 50%;
  border: 1px solid transparent;
  content: "\f00c";
  position: absolute;
  display: none;
  background: transparent;
  font-family: "gIcons";
  font-size: 12px;
  color: #fff;
  line-height: 16px;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gi-shop-sidebar .gi-sidebar-wrap, .gi-shop-sidebar-2 .gi-sidebar-wrap {
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #eee;
}

.gi-shop-sidebar-2 .gi-sb-title {
  border-bottom: 0;
  padding-bottom: 0;
}
.gi-shop-sidebar-2 .gi-sb-block-content {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
.gi-shop-sidebar-2 .gi-close-btn {
  display: none;
  position: relative;
}
.gi-shop-sidebar-2 .gi-close-btn h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #00a260;
}
.gi-shop-sidebar-2 .gi-close-btn .gi-cat-close {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  font-size: 22px;
  line-height: 1;
  color: #777;
  background-color: transparent;
  border: 0;
}

/* Toggle filter sidebar */
.filter-sidebar-overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 16;
  display: none;
}

.gi-filter-sidebar {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 300px;
  height: 100vh;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 16;
  background-color: #ffffff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  overflow: auto;
}
.gi-filter-sidebar::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.gi-filter-sidebar::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #00a260 !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.gi-filter-sidebar::-webkit-scrollbar-thumb {
  background-color: #00a260 !important;
  border-radius: 10px !important;
  border: 3px solid #fff !important;
}
.gi-filter-sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #00a260 !important;
}
.gi-filter-sidebar .sidebar-filter-title {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f8f8fb;
}
.gi-filter-sidebar .sidebar-filter-title h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.gi-filter-sidebar .sidebar-filter-title .filter-close {
  margin-left: 15px;
  color: #ff8585;
  font-size: 24px;
  line-height: 1;
}
.gi-filter-sidebar .gi-sidebar-wrap {
  border: 0;
}
.gi-filter-sidebar .gi-sb-title h3 {
  font-size: 18px;
}

.filter-sidebar-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* Price slider block */
.gi-price-range-slider {
  margin-top: 20px !important;
  /*-----  Price Filter  -----*/
}
.gi-price-range-slider .noUi-target {
  cursor: pointer;
}
.gi-price-range-slider .noUi-target:focus {
  outline: none;
}
.gi-price-range-slider .noUi-horizontal {
  height: 4px;
  margin-bottom: 5px;
}
.gi-price-range-slider .noUi-horizontal .noUi-handle {
  top: -6px;
  right: -15px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #00a260;
  border-radius: 50%;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
}
.gi-price-range-slider .noUi-horizontal .noUi-handle:hover {
  background: #00a260;
}
.gi-price-range-slider .noUi-connect {
  background: #777;
}
.gi-price-range-slider .noUi-base {
  background: #f8f8fb;
}
.gi-price-range-slider .noUi-handle.noUi-handle-upper {
  right: -2px;
}
.gi-price-range-slider .filter__input {
  height: 30px;
  border: none;
  border-radius: 0;
  padding: 0;
  max-width: 48px;
  line-height: 30px;
  background: #fff;
  text-align: center;
  font-size: 14px;
  color: #777;
}
.gi-price-range-slider .gi-price-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.gi-price-range-slider .gi-price-input {
  margin-bottom: 15px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f8f8fb;
  border-radius: 5px;
}
.gi-price-range-slider .gi-price-input label {
  font-size: 14px;
  color: #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gi-price-range-slider .gi-price-input label input {
  border-radius: 5px;
}
.gi-price-range-slider .gi-price-input .gi-price-divider {
  position: relative;
  border-bottom: 1px solid #777;
  width: 10px;
  height: 1px;
  margin: 0 10px;
}

/* Tags block */
.gi-tag-block {
  margin-bottom: -2px;
}
.gi-tag-block a {
  margin: 2px 0;
  padding: 3px 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.02rem;
}

.gi-banner-side {
  height: 100%;
  padding: 0 0 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}
.gi-banner-side .gi-banner-block-side, .gi-banner-side .gi-banner-block-side-2 {
  width: 100%;
  height: 400px;
  border-radius: 5px;
}
.gi-banner-side .gi-banner-block-side-2 {
  background-image: url(../img/banner/7.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1399px) {
  .gi-banner-side .gi-banner-block-side-2 {
    height: 300px;
  }
}
@media only screen and (max-width: 991px) {
  .gi-shop-sidebar-2 {
    width: 350px;
    height: 100vh;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: auto;
    display: block;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    background-color: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
    overflow: auto;
    opacity: 1;
  }
  .gi-shop-sidebar-2 .gi-banner-side {
    height: auto;
  }
  .gi-shop-sidebar-2 .gi-close-btn {
    display: block;
  }
}
@media only screen and (max-width: 360px) {
  .gi-shop-sidebar-2 {
    width: 300px;
  }
}
/*-------------------------------------------------
   Demo 2 Page CSS
---------------------------------------------------*/
.gi-btn-1:hover {
  background-color: #00a260;
  color: #fff;
}

.gi-btn-2 {
  background-color: #00a260;
}

a:hover {
  color: #00a260;
}

.section-title .section-detail h2 span {
  color: #00a260;
}

.gi-deal-section .section-title, .gi-product-tab .section-title {
  margin-bottom: 15px !important;
  padding-bottom: 15px !important;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.gi-tab-title .gi-pro-tab {
  margin-top: 0;
}

.gi-pro-tab-nav .nav-item .nav-link.active {
  color: #00a260;
}
.gi-pro-tab-nav .nav-item .nav-link:hover {
  color: #00a260;
}

.gi-product-inner .gi-pro-content .gi-pro-title a:hover {
  color: #00a260;
}

.gi-product-inner .gi-pro-image .gi-pro-actions .gi-btn-group:hover {
  background-color: #00a260;
}
.gi-product-inner .gi-pro-image .gi-pro-actions .compare.active, .gi-product-inner .gi-pro-image .gi-pro-actions .wishlist.active {
  background-color: #00a260;
}

.gi-wish-notify a, .gi-compare-notify a, .gi-cart-notify a {
  color: #00a260;
}
.gi-wish-notify p, .gi-compare-notify p, .gi-cart-notify p {
  border-bottom: 5px solid #00a260;
}

.gi-ser-inner .gi-service-image i {
  color: #00a260;
}

.gi-shop-sidebar-2 .gi-sidebar-block .gi-sidebar-block-item .checked:after {
  border: 1px solid #00a260;
  background: #00a260;
}

.gi-category .gi-category-block-2 .gi-cat-box .gi-cat-icon .gi-lbl {
  background: #00a260;
}

.gi-blog .blog-info .detail label a:hover, .gi-blog-section .blog-info .detail label a:hover {
  color: #fff;
}
.gi-blog .blog-info .detail .more-info a:hover, .gi-blog-section .blog-info .detail .more-info a:hover {
  color: #00a260;
}
.gi-blog .blog-info .detail .more-info a:hover i, .gi-blog-section .blog-info .detail .more-info a:hover i {
  color: #00a260;
}

.section-title .title-link a:hover {
  color: #00a260;
}
.section-title .title-link a:hover i {
  color: #00a260;
}

.quickview-modal .modal-content .single-pro-img .single-slide {
  background: #f7f7f7;
}

/*===== Hero section css =====*/
.gi-hero {
  width: 100%;
  height: 100%;
  /*-----  Slider Style  -----*/
}
.gi-hero .gi-main-content .gi-slider-content {
  height: 100%;
}
.gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider {
  border-radius: 5px;
}
.gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content {
  max-width: 33rem;
  height: 100%;
  text-align:center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-align: center;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 9;
}
.gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content .gi-slide-title {
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 38px;
  color: #00a260;
  letter-spacing: 0.05rem;
  font-weight: 700;
  position: relative;
}
.gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content p {
  margin-bottom: 20px;
  font-size: 20px;
  color: #00a260;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}
.gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content .gi-slide-btn {
  display: block;
}
.gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content .gi-slide-btn .gi-btn-1 {
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content .gi-slide-btn .gi-btn-1 i {
  margin-left: 5px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gi-hero .gi-main-content .gi-slider-content .gi-main-slider .swiper-slide {
  height: 500px;
  background-size: cover;
}
.gi-hero .swiper-buttons {
  display: none;
}
.gi-hero .main-slider-dot .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 2.5px !important;
  display: inline-block;
  border-radius: 30px;
  opacity: 1;
  border: 1px solid #00a260;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: transparent;
}
.gi-hero .main-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00a260;
  width: 30px;
}
.gi-hero .slider-animation > * {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}
.gi-hero :root {
  --transition: .75s cubic-bezier(0.255, 0.670, 0.000, 1.010);
}
.gi-hero .gi-slide-item {
  overflow: hidden;
  position: relative;
  -webkit-transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition);
  transition: transform var(--transition), box-shadow var(--transition), -webkit-transform var(--transition), -webkit-box-shadow var(--transition);
}
.gi-hero .swiper-slide-active .slider-animation > * {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}
.gi-hero .swiper-slide-active .slider-animation > *:nth-child(1) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.gi-hero .swiper-slide-active .slider-animation > *:nth-child(2) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.gi-hero .swiper-slide-active .slider-animation > *:nth-child(3) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.gi-hero .swiper-slide-active .slider-animation > *:nth-child(4) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.gi-hero .swiper-slide-active .slider-animation > *:nth-child(5) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.gi-hero .swiper-slide-active .slider-animation > *:nth-child(6) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

/*===== Banner Section =====*/
.gi-animated-banner {
  width: 100%;
  background-image: url(../img/banner/10.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.gi-animated-banner .gi-bnr-detail {
  height: 100%;
  padding: 80px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
  position: relative;
}
.gi-animated-banner .gi-bnr-detail h2 {
  font-size: 50px;
  font-weight: 700;
  color: #00a260;
  line-height: 65px;
  z-index: 2;
  position: relative;
}
.gi-animated-banner .gi-bnr-detail h3 {
  margin-top: 15px;
  margin-bottom: 15px;
  color: #00a260;
  font-weight: 600;
  z-index: 2;
}
.gi-animated-banner .gi-bnr-detail h3 span {
  font-weight: 400;
  color: #777;
}
.gi-animated-banner .gi-bnr-detail a {
  margin-top: 15px;
  padding: 5px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  z-index: 2;
}

/*===== Deal section css =====*/
.gi-deal-section .section-title {
  margin-bottom: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gi-deal-section .section-title #dealend {
  padding: 0;
}
.gi-deal-section .section-title .dealend-timer {
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
.gi-deal-section .section-title .dealend-timer .dealend-timer {
  background-color: #f8f8fb;
  border-radius: 5px;
}
.gi-deal-section .section-title .dealend-timer .time-block {
  margin-left: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  color: #00a260;
}
.gi-deal-section .section-title .dealend-timer .time-block .day {
  margin-left: 5px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 28px;
  color: #00a260;
}
.gi-deal-section .section-title .dealend-timer .time-block .time {
  min-width: 20px;
  position: relative;
}
.gi-deal-section .section-title .dealend-timer .time-block .dots {
  margin-top: -1px;
  margin-left: 5px;
  color: #00a260;
}

/*===== Top Selling, Banner, Top Rated section css =====*/
.gi-all-product-content .section-title {
  margin-bottom: 0;
  padding-bottom: 15px;
}
.gi-all-product-content .slick-slide {
  margin-top: 15px;
}
.gi-all-product-content .slick-slide > div:not(:last-child) {
  margin-bottom: 15px;
}
.gi-all-product-content .slick-arrow {
  width: auto;
  top: -62px;
}
.gi-all-product-content .slick-arrow.slick-prev {
  left: auto;
  right: 30px;
}
.gi-all-product-content .slick-arrow.slick-prev:before {
  content: "\f104";
}
.gi-all-product-content .slick-arrow {
  margin: 0 auto;
  font-size: 0;
  top: -45px;
  position: absolute;
  left: auto;
  right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  z-index: 1;
}
.gi-all-product-content .slick-arrow:before {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  color: #00a260;
  position: relative;
  font-size: 24px;
  font-family: "gIcons";
  width: 100%;
  line-height: 30px;
  height: 30px;
}
.gi-all-product-content .slick-arrow:hover:before {
  color: #00a260;
}
.gi-all-product-content .slick-arrow.slick-next {
  right: 0;
}
.gi-all-product-content .slick-arrow.slick-next:before {
  content: "\f105";
}

.gi-all-product-inner {
  margin-right: 1px;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid #eeeeee;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.gi-all-product-inner:hover .gi-pro-content .add-to-cart {
  opacity: 1;
}
.gi-all-product-inner .label {
  width: 11px;
  height: 11px;
  position: absolute;
  top: 7px;
  right: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.gi-all-product-inner .label .dot {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
}
.gi-all-product-inner .veg .dot {
  background-color: #46c389;
}
.gi-all-product-inner .nonveg .dot {
  background-color: #ff9898;
}
.gi-all-product-inner .gi-pro-image-outer-NO {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75px;
          flex: 0 0 75px;
}
.gi-all-product-inner .gi-pro-image-outer-NO .gi-pro-image {
  overflow: hidden;
  border-radius: 5px;
}
.gi-all-product-inner .gi-pro-image-outer-NO .gi-pro-image img {
  width: 100%;  
}
.gi-all-product-inner .gi-pro-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 75px);
          flex: 0 0 calc(100% - 75px);
  width: calc(100% - 75px);
  padding-left: 15px;
}
.gi-all-product-inner .gi-pro-content .gi-pro-title {
  font-size: 26px;
  margin: 0 0 5px;
}
.gi-all-product-inner .gi-pro-content .gi-pro-title a {
  text-decoration: none;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-family: "Poppins, sans-serif";
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.2px;
  
}
.gi-all-product-inner .gi-pro-content .gi-pro-stitle {
  text-decoration: none;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-size: 13px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.3px;
  
  margin-bottom: 5px;
}
.gi-all-product-inner .gi-pro-content .gi-pro-stitle a {
  color: #999;
}
.gi-all-product-inner .gi-pro-content .gi-pro-stitle a:hover {
  color: #00a260;
}
.gi-all-product-inner .gi-pro-content .gi-price {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00a260;
}
.gi-all-product-inner .gi-pro-content .gi-price span.new-price {
  color: #00a260;
  font-weight: 700;
  font-size: 14px;
}
.gi-all-product-inner .gi-pro-content .gi-price span.old-price {
  font-size: 12px;
  text-decoration: line-through;
  color: #777;
  margin-left: 9px;
}
.gi-all-product-inner .gi-pro-content .gi-price span.qty {
  display: none;
  font-size: 12px;
  color: #777;
  margin-left: 9px;
}
.gi-all-product-inner .gi-pro-content .add-to-cart {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
}
.gi-all-product-inner .gi-pro-content .add-to-cart i {
  color: #777;
  line-height: 0;
}gi-product-inner

.gi-banner-block {
  width: 100%;
  height: 100%;
  background-image: url(../img/banner/4.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.gi-banner-inner {
  height: 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 5px;
  overflow: hidden;
}

.banner-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-block img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.banner-block:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.banner-block .banner-text {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.banner-block .banner-text .gi-banner-title {
  font-size: 22px;
  position: relative;
  line-height: 32px;
  color: #00a260;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 10px;
  
}
.banner-block .banner-content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
  cursor: pointer;
  border-radius: 30px;
}
.banner-block .banner-content .gi-btn-2 {
  padding: 5px 15px;
}

.gi-pro-variation .gi-pro-variation-inner.gi-pro-variation-size .gi-pro-variation-content li.active {
  background-color: #00a260 !important;
  color: #fff !important;
  border-color: #00a260 !important;
}
.gi-pro-variation .gi-pro-variation-inner.gi-pro-variation-size .gi-pro-variation-content li:hover {
  background-color: #00a260 !important;
  color: #fff !important;
  border-color: #00a260 !important;
}

/*  Demo 1 Responsive style  */
@media (max-width: 1399px) {
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .swiper-slide {
    height: 500px;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content {
    max-width: 24rem;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content .gi-slide-title {
    font-size: 40px;
    line-height: 50px;
  }
  .gi-hero .gi-category-block .gi-cat-box .gi-cat-icon .svg_img {
    width: 60px;
    height: 60px;
  }
  .gi-hero .gi-category-block .gi-cat-box .gi-cat-icon .gi-cat-title {
    font-size: 15px;
  }
  .gi-animated-banner {
    height: 380px;
  }
  .gi-animated-banner .gi-bnr-detail h2 {
    font-size: 38px;
    line-height: 52px;
  }
  .gi-ofr-banners .gi-bnr-body .gi-bnr-detail {
    right: 0;
  }
}
@media (max-width: 1199px) {
  .gi-hero {
    height: auto;
    position: relative;
  }
  .gi-hero .container-fluid {
    max-width: 930px;
  }
  .gi-hero .border-content {
    width: 100%;
    padding: 0 15px;
  }
  .gi-hero .main-bg-black {
    padding: 30px 30px 15px 30px;
    border-right: 1px solid #eee;
    border-bottom: 0;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content {
    max-width: 20rem;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content .gi-slide-title {
    font-size: 32px;
    line-height: 42px;
  }
  .gi-hero .border-content-color {
    width: 100%;
    padding: 0 15px 80px 15px;
  }
  .gi-hero .gi-category-block {
    padding: 15px 30px 30px 30px;
    border: 1px solid #eee;
    border-top: 0;
  }
  .gi-hero .gi-category-block .gi-cat-box .gi-cat-icon {
    padding: 30px;
  }
  .gi-animated-banner {
    height: 350px;
  }
  .gi-animated-banner .gi-bnr-detail h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .gi-social {
    display: none;
  }
}
@media (max-width: 991px) {
  .gi-ser-inner {
    padding: 24px;
  }
  .section-title .section-detail h2, .section-title-2 .section-detail h2 {
    font-size: 24px;
  }
  .section-title-3 .section-detail h2 {
    font-size: 20px;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .swiper-slide {
    height: 400px;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content {
    margin-left: 70px;
    max-width: 17rem;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content .gi-slide-title {
    font-size: 26px;
    line-height: 36px;
  }
  .gi-new-product-block .gi-all-product-inner .add-to-cart {
    opacity: 1;
  }
  .gi-pro-tab-nav .nav-item:not(:last-child) {
    margin-right: 30px;
  }
  .gi-animated-banner {
    height: 300px;
  }
  .gi-animated-banner .gi-bnr-detail {
    padding: 50px;
  }
  .gi-animated-banner .gi-bnr-detail h2 {
    font-size: 28px;
    line-height: 35px;
  }
  .gi-animated-banner .gi-bnr-detail h3 {
    font-size: 20px;
  }
  .m-t-991 {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .section-title .section-detail h2, .section-title-2 .section-detail h2 {
    font-size: 22px;
  }
  .section-title-3 .section-detail h2 {
    font-size: 18px;
  }
  .gi-deal-section .section-title {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .gi-deal-section .section-title #dealend {
    margin-top: 15px;
  }
  .gi-hero .gi-main-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .swiper-slide {
    height: 300px;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content {
    margin-left: 30px;
    max-width: 14rem;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content .gi-slide-btn .gi-btn-1 {
    font-size: 13px;
    padding: 6px 10px;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content p {
    font-size: 16px;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content .gi-slide-title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 32px;
  }
  .gi-hero .gi-category-block {
    padding: 0 15px 15px 15px;
    grid-template-columns: repeat(auto-fill, calc(33.33% - 10px));
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
  .gi-hero .main-bg-black {
    padding: 15px;
  }
  .gi-pro-tab {
    margin: 0 0 15px 0;
  }
  .gi-pro-tab .justify-content-end {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .gi-animated-banner {
    height: 250px;
  }
  .gi-animated-banner .gi-bnr-detail h2 {
    font-size: 20px;
    line-height: 27px;
  }
  .gi-animated-banner .gi-bnr-detail h3 {
    font-size: 16px;
    margin-top: 5px;
  }
  #gi-popnews-box {
    width: 90%;
  }
  #gi-popnews-box img {
    display: none;
  }
  .m-t-767 {
    margin-top: 30px;
  }
  .gi-banner-block {
    height: 450px;
    background-position: bottom;
  }
  .gi-deal-section .section-title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .section-title .section-detail h2, .section-title-2 .section-detail h2 {
    font-size: 20px;
  }
  .gi-hero .swiper-slide {
    height: 290px;
  }
  .gi-hero .gi-hero-slider .gi-slide {
    height: 60vh;
  }
  .gi-hero .gi-hero-slider .gi-slide-content {
    padding: 50px;
  }
  .gi-hero .gi-hero-slider .gi-slide-content .gi-slide-title {
    font-size: 24px;
  }
  .gi-hero .gi-category-block .gi-cat-box .gi-cat-icon {
    padding: 15px 10px;
  }
  .gi-hero .gi-category-block .gi-cat-box .gi-cat-icon .svg_img {
    width: 40px;
    height: 40px;
  }
  .gi-hero .gi-category-block .gi-cat-box .gi-cat-icon .gi-cat-title {
    font-size: 14px;
  }
  .gi-hero .gi-category-block .gi-cat-box .gi-cat-icon .gi-lbl {
    font-size: 11px;
    top: 0;
    right: 0;
  }
  .gi-hero .border-content-color {
    padding: 0 15px 100px 15px;
  }
  .gi-blog-section .section-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gi-blog-section .section-title .title-link {
    margin-top: 15px;
  }
  .gi-blog-section .section-title .title-link a {
    font-size: 14px;
  }
  .gi-tool {
    top: 230px;
  }
  .owl-carousel .gi-product-content {
    width: 100%;
    margin: auto;
  }
  .gi-search-menu .gi-form {
    width: 100%;
    padding: 0 15px;
  }
  .gi-search-menu input {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .gi-hero .gi-category-block .gi-cat-box .gi-cat-icon .gi-cat-title {
    font-size: 12px;
    text-align: center;
  }
  .gi-pro-tab-nav .nav-item .nav-link {
    font-size: 13px;
    line-height: 28px;
  }
  .gi-pro-tab-nav .nav-item:not(:last-child) {
    margin-right: 20px;
  }
  .gi-animated-banner {
    height: 200px;
  }
  .gi-animated-banner .gi-bnr-detail h2 {
    font-size: 18px;
    line-height: 25px;
  }
  .gi-banner-block {
    height: 400px;
    background-position: bottom;
  }
}
@media (max-width: 420px) {
  .section-title .section-detail h2, .section-title-2 .section-detail h2 {
    font-size: 20px;
  }
  .gi-hero .gi-category-block {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, calc(50% - 8px));
  }
  .gi-hero .gi-category-block .gi-cat-box.more {
    display: block;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .swiper-slide {
    height: 230px;
    background-position: center;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content {
    max-width: 12rem;
    margin-left: 30px;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content .gi-slide-title {
    font-size: 18px;
    line-height: 28px;
  }
  .gi-hero .swiper-pagination {
    display: none;
  }
  .gi-animated-banner .gi-bnr-detail {
    padding: 15px;
  }
  .gi-offer-section .section-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .gi-offer-section .section-title h2 {
    margin-bottom: 15px;
  }
  .gi-offer-section .section-title .dealend-timer {
    max-width: 195px;
  }
  .section-title .title-link a {
    font-size: 14px;
  }
  .gi-banner-block {
    height: 350px;
    background-position: bottom;
  }
  .banner-block .banner-text .gi-banner-title {
    font-size: 20px;
  }
}
@media (max-width: 360px) {
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content {
    max-width: 10rem;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content .gi-slide-title {
    font-size: 17px;
    line-height: 27px;
  }
  .gi-hero .gi-main-content .gi-slider-content .gi-main-slider .gi-slider .gi-slide-content p {
    font-size: 13px;
  }
}
/*# sourceMappingURL=demo-2.css.map */

.fs-11 { font-size: 11px !important; } 
.fs-13 { font-size: 13px !important; } 
.fs-15 { font-size: 15px !important; } 
.fs-18 { font-size: 18px !important; } 
.fs-20 { font-size: 20px !important; }
.fs-26 { font-size: 26px !important; }
.fs-30 { font-size: 30px !important; }
.fs-36 { font-size: 36px !important; }

.pt-0 { padding-top: 0px !important; }
.pt-5 { padding-top: 5px !important; }
.pt-10 { padding-top: 10px !important; }
.pt-15 { padding-top: 15px !important; }

.pb-0 { padding-bottom: 0px !important; }
.pb-5 { padding-bottom: 5px !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-15 { padding-bottom: 15px !important; }

.px-30 { padding-left: 30px; padding-right: 30px; }
.px-40 { padding-left: 40px; padding-right: 40px; }
.px-50 { padding-left: 50px; padding-right: 50px; }
.px-60 { padding-left: 60px; padding-right: 60px; }

.py-0 { padding-top: 0px; padding-bottom: 0px; }
.py-5 { padding-top: 5px; padding-bottom: 5px !important }
.py-10 { padding-top: 10px; padding-bottom: 10px !important }
.py-15 { padding-top: 15px; padding-bottom: 15px; }

.mb-0 { margin-bottom: 0px !important; }

.mt-80 { margin-top: 80px !important; }

.btn-primary {  border: none; }
.btn-primary:hover { background-color:#000;}

.gi-hero .gi-main-content .gi-slider-content .gi-main-slider .swiper-pagination {
  height: 17px;
  bottom: 0px;
  z-index: 2;
}
.gi-hero .gi-main-content .gi-slider-content .gi-main-slider .swiper-pagination::after {
  content: "";
  width: 160px;
  height: 38px;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../img/bg/1.png);
  z-index: -1;
}
.gi-hero .main-slider-dot .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 2.5px !important;
  display: inline-block;
  border-radius: 50px;
  opacity: 1;
  border: 1px solid #00a260;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: transparent;
}
.gi-hero .main-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00a260;
  width: 30px;
}
.hide { display:none;