/*
Theme Name: C2 Developer Zone
Author: Team C2 Developer Zone
Version: 0.2
Author URI: https://c2developerzone.com/
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body.customize-support header#header {
    top: 25px;
}
body {
    color: #444444;
    font-family: "Poppins", serif;
    background: #fff;
}
p {
    color: #423f50;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
a {
  font-family: "Poppins", serif;
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #222139;
    font-family: "Montserrat", sans-serif;
}
a.theme-btn {
    color: #ffffff;
    padding: 0.5rem 0.6rem 0.5rem 0.9rem;
    transition: 0.3s ease;
    background: #222139;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 4px;
    font-size: 14px;
    margin: 2.3rem auto 0;
    display: inline-flex;
    align-items: center;
    height: 45px;
}
a.theme-btn:hover {
  background: #ee7727;
}
a.theme-btn i {
    margin-left: 0.9rem;
    font-size: 15px;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    background: #ee7727;
    width: 32px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 5px 5px 0;
}
a.theme-btn:hover i {
    background: #ffffff;
    color: #222139;
}
section{
  position:relative;
  padding: 60px 0;
}
.pd{
  padding: 0;
}
.pd-left{
  padding-left:0;
}
.pd-right{
  padding-right:0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background:#ee7727;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #161e40;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    height: 80px;
    display: flex;
    align-items: center;
}
.header-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
}
#header.header-scrolled, #header.header-inner-pages {
  background: rgb(255 255 255);
  border-radius: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}
#header .logo img {
    width: 230px;
}
.header-right {
    display: flex;
    align-items: center;
}
.search-button {
    border-radius: 100px;
    padding: 5px 7px 5px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ee7727;
    color: #fff;
    border: solid 2px #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.search-button i {
    background: #e34d1e;
    width: 32px;
    height: 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    border: solid 1px rgb(255 255 255 / 38%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    color: #222139;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color:#ee7727;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #ea1826;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    color: #13192b;
    letter-spacing: -0.2px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ee7727;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
a.dz-cart {
    margin-right: 32px!important;
    margin-top: 5px!important;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: block;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0!important;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ea1826;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ea1826;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}
span.mob-none {
    display: flex;
}


@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 75px 0 70px;
}
.theme-heading-sec {
    margin-bottom: 2.6rem;
}
.theme-heading-sec h5 {
    font-size: 15px;
}
.theme-heading-sec h2 {
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 0.6rem;
	font-weight:700;
}
.theme-heading-sec p {
    font-weight: 400;
    font-size: 15px;
}
.owl-nav {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 9px;
}

button.owl-prev, button.owl-next {
    border: solid 1px #cacacb !important;
    color: #222139 !important;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px !important;
    border-radius: 4px;
    font-weight: 300!important;
    background: #faf7ff !important;
}
button.owl-prev:hover, button.owl-next:hover {
    background: #ee7727 !important;
}
/*Banner*/

#demo {
    border-radius: 0 0 0 150px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
}
#demo:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1000px;
  background: #ee7727;
  top: 50%;
  opacity: 1;
  transform: translateY(-50%);
  right: 0;
  clip-path: polygon(55% 0, 100% 0, 100% 100%, 0% 110%);
}
.carousel-inner{
  position: relative;
  z-index: 1;
}
.carousel-item {
  padding: 0rem 0 0rem;
  height: 95vh;
}
div#demo .container-fluid {
  width: 80%;
  height: 100%;
}
div#demo .container-fluid .row {
  display: flex;
  height: 100%;
  align-items:center;
}
.banner-heading {
  padding-left: 3rem;
  padding-right: 3rem;
}
.banner-heading a.theme-btn {
    margin:0;
}
.banner-heading h1 {
    color: #222139;
    font-size: 52px;
    font-weight: 500;
    line-height: 58px;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -1px;
}
.banner-heading h1 span {
    color: #ee7727;
    font-weight: 600;
}
.banner-heading p {
    font-size: 15px;
    line-height: 26px;
    margin: 1rem 0 2.2rem;
    letter-spacing: 0.2px;
    font-weight: 400;
}
.ban-col{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
/* .banner-rt-col {
    position: relative;
    width: 600px;
    height: 600px;
    border-radius: 100%;
    border: solid 19px #ffffff;
    margin-top: 0rem;
    background: #f1f8ea;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.banner-rt-col img {
    width: 95%;
}
.carousel-indicators {
  justify-content: center;
  margin-right: 7%;
  margin-left: 7%;
}
.social-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(-50%, -50%) rotate(270deg);
  z-index: 1;
}
.social-text a {
    color: #222139;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0px 14px 0px 14px;
    letter-spacing: 1.2px;
    position: relative;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
}
.social-text a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translatey(-50%);
  width: 6px;
  height: 6px;
  background: #ee7727;
}
.social-text a:hover{
    color: #ee7727;
}
.social-text a:last-child:after {
  display:none;
}
.carousel-indicators [data-bs-target] {
    background: #c3bad7;
    width: 28px;
    height: 10px;
    margin-right: 1px;
    margin-left: 1px;
    opacity: .5;
    border-radius: 100px;
    border: none;
}
.carousel-indicators .active {
  opacity: 1;
  background: #ee7727;
}
.carousel-control-next, .carousel-control-prev {
    width: 3%;
}





section.featured-sec {
  padding-bottom: 0;
	z-index:1;
}
section.featured-sec .theme-heading-sec {
  text-align: center;
  margin-bottom: 4rem;
}
.feat-carousel {
  border: dashed 2px #FF7C08;
  background: #fff;
  padding: 1rem 1.5rem;
}
.feat-carousel .item {
  padding: 1rem 0.4rem;
}
.feat-cat {
    box-shadow: 0px 0px 14px 2px rgba(0, 0, 34, 0.08);
    text-align: center;
    border: solid 1px #F4F4F4;
    padding: 2rem 1rem;
    transition: 0.3s ease;
    cursor: pointer;
}
.feat-cat:hover {
  box-shadow: 0px 14px 20px rgba(0, 4, 94, .04);
  transform: translateY(-3px);
}

.feat-cat-img-wrapper {
  background: #ffffff;
  width: 115px;
  margin: 0 auto 1.3rem;
  height: 115px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
  border: dashed 1px #e89f14;
}
.feat-cat-img {
    background: #e9ffd3cc;
    width: 95px;
    height: 95px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feat-cat-img img {
    width: 95px!important;
    border-radius: 100px;
    height: 95px;
    object-fit: cover;
    object-position: center;
}
.feat-cat h4 {
    margin-bottom: 3px;
}
.feat-cat h4 a {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #222139;
    font-family: "Montserrat", sans-serif;
    text-transform: capitalize;
}
.feat-cat:hover h4 a {
    color: #ee7727;
}
.feat-cat p {
    margin: 0;
    font-size: 14px;
    color: #df6310;
}
.theme-heading-sec h2 span {
  color: #ee7727;
}




section.arrival-product-sec {
  background: #eef6eb;
  padding-bottom: 8rem;
}
section.arrival-product-sec:before {
  content: "";
  background-image: url(assets/img/shape1.png);
  width: 100%;
  height: 168px;
  position: absolute;
  top: -168px;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.arrival-product-sec:after {
  content: "";
  background-image: url(assets/img/shape2.png);
  width: 100%;
  height: 66px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.arrival-product-sec .theme-heading-sec {
  text-align: center;
}
.arrival-product-sec a.theme-btn {
  margin: 2rem auto 0;
}

.arrival-prd-row {
    background: #fff;
    border-radius: 8px;
    padding: 1.3rem 0.7rem;
    margin: 1.3rem 0;
}
.new-arr-prd-img {
    background: #f3f3f3;
    border-radius: 0px;
    height: 100%;
    padding: 6px;
}
.arr-prd-title h4 {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 4px;
}
.arr-prd-title h6 {
	margin-bottom:3px;
}
.arr-prd-title h6 a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1px;
    font-family: "Figtree", sans-serif;
    text-transform: uppercase;
    color: #ee7727;
    margin-bottom: 6px;
}
.arr-prd-title h5 {
    font-size: 18px;
    color: #ee7727;
    font-weight: 500;
    margin-bottom: 5px;
}
.arr-prd-title ins {
    text-decoration: none;
}
.arr-prd-title bdi {
    font-weight: 600;
}
a.shop-btn {
    color: #161e42;
    font-size: 14px;
    margin-top: 0px;
    text-transform: capitalize;
    padding: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
}
a.shop-btn i {
    padding-left: 1px;
    top: 2px;
    position: relative;
    font-size: 16px;
}
a.shop-btn:hover {
    color: #ee7727;
}
.shop-wrapper {
  background: #fff;
  height: 93%;
  margin: 1.3rem 0;
  border-radius: 9px;
  padding: 2rem;
  position: relative;
}
.shop-wrapper h4 {
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 34px;
  margin: 0rem 0 0rem;
}
.shop-wrapper a.theme-btn {
    margin: 1.5rem auto 0 0 !important;
    padding: 10px 10px 10px 10px;
    font-size: 13px;
}
.shop-wrapper p {
  margin: 0;
}
.shop-wrapper img {
    position: absolute;
    width: 75%;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
}

/*Product sec*/


.categories-list {
  width: 36%;
  padding: 12px 16px;
  margin-left: auto;
  margin-top: 1rem;
}
.prd-wrapper {
    border: solid 1px #f7e6e6;
    padding: 0.9rem;
    border-radius: 9px;
}
.prd-wrapper-img {
    background: #f3f3f3;
    max-height: 256px;
    height: 100vh;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    position: relative;
}
.prd-wrapper-img img {
    max-height: 256px;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 9px;
}
.prd-wrapper-img p {
    padding: 3px 8px;
    background: #161e42;
    display: inline-block;
    color: #ffffff;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.8px;
    border-radius: 6px;
    position: absolute;
    right: 0px;
    top: 0px;
}
.prd-title {
    text-align: center;
}
.prd-title h6 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: "Figtree", sans-serif;
    text-transform: uppercase;
    color: #222139;
    margin-bottom: 6px;
}
.prd-title h4{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: #222139;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.woocommerce .prd-title h4{
	margin-bottom: 5px;
}
.prd-title h4 a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: #222139;
    margin-bottom: 0px;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product-sec .owl-nav {
    margin-top: 28px;
}
.product-sec a.theme-btn {
    margin: 0.3rem auto 0;
}
.prd-btn-group {
    display: flex;
    gap: 5px;
    margin-top: 0rem;
    justify-content: center;
}
.prd-btn-group .shop-btn {
    width: 50%;
    text-align: center;
    border: solid 1px #e4e4e4;
    padding: 9px 10px;
    border-radius: 5px;
    background: #222139;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-around;
	color:#fff;
}
.prd-btn-group .shop-btn:hover {
    background: #ee7727;
    color: #fff;
}
.prd-btn-group a.shop-btn:first-child {
  background: #ee7727;
  color: #fff;
}
.prd-btn-group a.shop-btn:first-child:hover {
    background: #222139;
    color: #fff;
}
.prd-title h5 {
  font-size: 18px;
  font-weight: 500;
  color: #efb80e;
}



/*Footer*/

/*Footer Top*/

footer.footer-top {
    padding: 3.5rem 0 3.5rem;
    position: relative;
    background-color: #191d28;
    margin-top: 0rem;
}
.footer-middle {
  padding: 0 4rem;
  border-left: solid 1px rgb(255 255 255 / 22%);
  border-right: solid 1px rgb(255 255 255 / 22%);
}
.logo-wrap {
  padding-right: 1.8rem;
}
.logo-wrap img {
    height: 55px;
}
.footer-wrapper h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  font-size: 1.5rem;
}
ul.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.footer-nav li {
    display: inline-block;
    width: calc(100% / 2 - 5px);
}
ul.footer-nav li a {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    color: #c9cbd1;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", serif;
    letter-spacing: 0.1px;
}
ul.footer-nav a:before {
    content: "\F285";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    font-weight: 600;
    font-size: 12px;
    top: 3px;
    color: #ee7727;
}
ul.footer-nav li a:hover{
    color: #ee7727;
}
.logo-wrap p {
    color:#c9cbd1;
    font-size: 14px;
    margin: 1rem 0 1.7rem;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.1px;
}
.footer-contact-wrapper {
  padding-left: 1.8rem;
}
.footer-contact-wrapper ul.footer-nav li {
  width: calc(100% / 1 - 5px);
}








.why-img-box {
  background: #ffffff;
  width: 115px;
  margin: 0 auto 1.8rem;
  height: 115px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
  border: dashed 1px #e89f14;
}
.why-wrapper h4 {
    font-size: 19px;
    letter-spacing: -0.6px;
}
.why-wrapper p {
  font-size: 16px;
}
.why-img {
  background: #e9ffd3cc;
  width: 95px;
  height: 95px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-img img {
  width: 61px;
}
.why-wrapper {
  text-align: center;
}
.why-us .theme-heading-sec {
    text-align: center;
    margin-bottom: 3.6rem;
}
section.why-us {
    padding-top: 20px;
    background: linear-gradient(
180deg, rgba(255, 255, 255, 1) 0%, rgb(232 237 255 / 31%) 100%);
}




/*Footer Bottom*/

footer.footer-bottom {
    padding: 0;
    position: relative;
    background: #191d28;
}
footer.footer-bottom .container {
    padding: 1rem 2rem;
    border-top: solid 1px rgb(255 255 255 / 22%);
    background: #fff;
    border-radius: 100px 100px 0 0;
}
footer.footer-bottom .row {
    align-items: center;
}
.social-link {
    text-align: center;
}
.logo-wrap .social-link a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #353458;
    border: solid 1px rgb(255 255 255);
    margin: 0 3px;
}
.logo-wrap .social-link a:hover {
    background: #00DCED;
    border: solid 1px #00DCED;
}
.copyright-txt p {
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    color: #161e42;
}
.copyright-txt p a {
    color: hsl(24.31deg 81.59% 53.14%);
    font-family: "Poppins", serif;
}
footer.footer-bottom ul {
    margin: 0;
    padding: 0;
}
footer.footer-bottom ul li {
    list-style: none;
    display: inline-block;
    margin-right: 18px;
}
footer.footer-bottom ul li a{
  color:#353458;
  font-size: 14px;
}
footer.footer-bottom ul li a:hover {
    color: #ea1826;
}
p.dev-by {
    font-size: 15px;
    margin: 0;
    text-align: right;
    color: #161e42;
}
p.dev-by a {
    color: hsl(24.12deg 85.41% 54.31%);
    text-transform: uppercase;
    font-family: "Poppins", serif;
}
footer.footer-top .container {
    position: relative;
    z-index: 999;
}
.stripe {
  display: flex;
  align-items: center;
  gap: 7px;
}
.stripe img {
  background: #444444;
  padding: 9px;
  height: 33px;
}

.woocommerce-MyAccount-navigation-link--customer-logout {
    display: none;
}
.woocommerce-MyAccount-navigation-link--edit-account {
    display: none;
}
.woocommerce-MyAccount-navigation-link--downloads {
    display: none;
}
nav.woocommerce-MyAccount-navigation ul li a {
    color: #e89f14;
}

.woocommerce-MyAccount-content > p:first-of-type {
    display: none;
}


/* 404 Page */
section.error-inner-page {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(153deg, rgb(52 69 141) 0%, rgb(133 196 159) 100%);
}
/*section.error-inner-page:after {
    content: "";
    width: 400px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 71%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 100%;
    filter: blur(5rem);
}*/
.error-col {
    display: flex;
    align-items: center;
}
.error-wrapper {
    padding: 0 6rem 0 1rem;
}
.error-wrapper h2 {
    font-size: 4rem;
    color: #fff;
    font-weight: 600;
}
.error-wrapper p{
    color: #fff;
}



/*Search Bar*/

.search-box {
	display:none;
}

.search-box.active {
    width: 100%;
    height: 100vh;
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
form#ajax-search-form input {
    max-height: 53px;
    height: 100vh;
    border-radius: 6px;
    color: #23212c;
    font-family: "Figtree", sans-serif;
}
.search-box form {
    width: 35%;
    align-items: center;
}
form#ajax-search-form button {
    background: #e89f14 !important;
    color: #fff !important;
    padding: 6px 27px;
    border: none;
    max-height: 53px;
    height: 100vh;
    border-radius: 6px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500 !important;
}
#ajax-search-form i.bi.bi-x.close-search {
    position: absolute;
    color: #e89f14;
    top: 50px;
    right: 27px;
    font-size: 34px;
    cursor: pointer;
}
ul.product-search-results {
    list-style: none;
    padding: 0px;
}
form#ajax-search-form button {
    background: #e89f14 !important;
    font-weight: 400 !important;
    color: #fff !important;
    padding: 6px 27px;
    font-family: "Figtree", sans-serif;
    border: none;
    max-height: 53px;
    height: 100vh;
    border-radius: 0 6px 6px 0;
}
ul.product-search-results li {
    margin: 6px;
    border-bottom: 1px dotted #f6f6f6;
    padding: 7px;
}
div#search-results li img {
    width: 70px;
    height: 70px;
    border: 5px solid #fff;
    margin-right: 10px;
}
div#search-results {
    position: absolute;
    width: 35%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 18%);
}
a.added_to_cart.wc-forward {
    display: none;
}

ul.products.columns-4 {
    display: none;
}
section.related.products {
    display: none;
}



/* Search */
.show-prod {
    width: 100%;
    box-shadow: none;
    margin: 16px 0;
    padding: 1rem 0;
    max-height: 240px;
    height: 100vh;
    position: relative;
    overflow: auto;
}
.show-prod  .detailssearch {
    padding: 0.3rem;
}
.show-prod  .detailssearch img {
    width: 100%;
    height: 65px;
    border-radius: 5px;
    max-width: 65px;
}
.detailssearch a {
    display: flex;
    gap: 10px;
    align-items: center;
}
h1.page-title {
    display: none;
}
.show-prod::-webkit-scrollbar {
  width: 9px;
}

/* Track */
.show-prod::-webkit-scrollbar-track {
  background: #3f3d3d;
}
.show-prod::-webkit-scrollbar-thumb {
  background:#ee7727;
}
/*App Sec*/

section.app-sec:before {
    content: "";
    background-image: url(https://gtkart.in/wp-content/uploads/2026/01/app-shape.png);
    width: 700px;
    height: 172px;
    position: absolute;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 700px;
    left: 50%;
    transform: translateX(-50%);
	z-index:-1;
/*     filter: brightness(0)invert(1); */
}
.app-col{
	text-align:center;
}
.app-sec .row {
    justify-content: center;
}
.app-col img {
    width: 76%;
    padding: 1rem 1rem 0;
    border-radius: 25px 25px 0 0;
    background: linear-gradient(180deg, rgb(217 103 26) 0%, rgb(255 255 255) 100%);
    box-shadow: 0px 5px 24px -15px rgb(22 30 66 / 53%);
}
section.app-sec {
    padding-bottom: 0;
	overflow:hidden;
}
.app-store {
    text-align: center;
    margin: 1.5rem 0 2rem;
}
.app-store img {
    width: 150px;
}
.app-sec .theme-heading-sec {
    text-align: center;
	margin:0;
}
.app-sec .theme-heading-sec h2 {
    font-size: 26px;
}
.app-col-mob{
	display:none;
}
.app-sec ul {
    padding: 2rem 0 0;
    margin: 0;
    list-style: none;
}
.app-sec ul li {
    position: relative;
    padding: 0 0 0.9rem 1.2rem;
    letter-spacing: -0.2px;
    line-height: 22px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}
section.app-sec ul li{
    position: relative;
}
section.app-sec ul li:before {
    font-family: 'bootstrap-icons';
    position: absolute;
    left: -2px;
    color: #ee7727;
    content: "\F26A";
    top: 0;
    font-size: 14px;
}

/*Contact Page*/

.address-sec .theme-heading-sec {
  text-align: center;
  width: 55%;
  margin: 0 auto 3.5rem;
}
.add-wrapper {
  padding: 2rem 2rem 1.2rem 6rem;
  border: solid 1px #ede4e4b0;
  position: relative;
  border-radius: 15px;
  /* box-shadow: 0px 3px 34px -17px hsl(228.43deg 36.89% 44.12% / 30%); */
  background: #fff;
}
.add-wrapper h3 {
    font-weight: 700;
    font-size: 24px;
    color: #161d44;
}
.add-wrapper p a {
    color: #616161;
}
.add-wrapper img {
  position: absolute;
  left: 32px;
  top: 32px;
  width: 44px;
}
section.form-sec {
    padding-top: 15px;
    padding-bottom: 25px;
}
section.form-sec .row {
    justify-content: center;
}
.form-sec .theme-heading-sec {
    text-align: center;
}
.form-control {
    height: 46px;
    background: #fdfbf9;
    border: solid 1px #f3ede9;
}
textarea.form-control {
    height: auto;
}
.form-submit-btn {
    background: #ee7727;
    border: none;
    padding: 11px;
    width: 50%;
    margin: 1.5rem auto 0;
    display: table;
    color: #fff;
    border-radius: 100px;
}
.captcha-image {
    padding: 9px 22px;
    background: #fff7f2;
    border: solid 1px #f3ede9;
    color: #161d44;
    line-height: 21px;
    border-radius: 7px;
}
.form-submit-btn:hover{
    background: #161e41;
}
.form-sec .theme-heading-sec h2 {
    margin-bottom: 0.9rem;
}
section.map-sec {
    padding-top: 0;
    padding-bottom: 50px;
}
iframe {
    filter: grayscale(1);
    margin-bottom: -7px;
}


/*Policy*/

.policy-sec h4{
    border-left: solid 3px #ee7727;
    line-height: 22px;
    padding-left: 7px;
    font-weight: 600;
    letter-spacing: -0.7px;
    margin: 1rem 0;
    font-size: 22px;
}
.policy-sec ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.policy-sec ul li {
    color: #423f50;
    padding: 0 0 9px 20px;
    font-weight: 400;
    font-size: 15px;
    position: relative;
    line-height: 22px;
}
.policy-sec ul li:before {
    content: "\F26E";
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0px;
    color: #ee7727;
    font-weight: 500;
    font-size: 21px;
}
.policy-sec ul li a {
    color: #ee7727;
}

.dj-share-box{
            margin-top:20px;
        }
        .dj-share-buttons{
            display:flex;
            gap:10px;
            flex-wrap:wrap;
        }
        .dj-share-btn{
            display:inline-flex;
            align-items:center;
            gap:6px;
            padding:8px 14px;
            border-radius:4px;
            color:#fff;
            text-decoration:none;
            font-size:14px;
        }
        .dj-facebook{ background:#1877F2; }
        .dj-whatsapp{ background:#25D366; }
        .dj-instagram{ background:#E1306C; border:none; cursor:pointer; }

        .dj-copy-message{
            margin-top:10px;
        }