/* Fonts */
:root {
  --default-font: "Alexandria", sans-serif;
  --heading-font: "Alexandria", sans-serif;
  --nav-font: "Alexandria", sans-serif;
  --dailog-font:"Caveat", cursive;
}

/* Global Colors */
:root { 
  --primary-color: #ffffff;
  --secondary-color: #000000; 
  --accent-color:#FAB40A;
  --orange-color: #F26723;  
  --grey: #F2F3F7;
  --blue: #102354;
  --golden: #BAA806;
  --green: #2BAD87;
    
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* Slim scrollbar */
.scrolling {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    min-height: .01%;
    overflow-x: auto;
}
/* width */
.scrolling::-webkit-scrollbar {
  width: 5px;
    height: 2px;
}

/* Track */
.scrolling::-webkit-scrollbar-track {
  background: var(--bs-gray-100); 
}
 
/* Handle */
.scrolling::-webkit-scrollbar-thumb {
  background: var(--bs-gray-400); 
  border-radius: var(--bs-border-radius-xl);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/*---------------------------------------------
# General Styling
---------------------------------------------*/

.text-green{ color: #2BAD87; }
.bg-yellow{ background-color: var(--accent-color); }
.text-yellow{ color: var(--accent-color); }
.greybg{ background: var(--grey); }
.text-orange{ color: var(--orange-color); }

body {
  color: var(--secondary-color);
  background-color: #F8F8F8;
  font-family: var(--default-font);
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.35s ease-in-out;
}
.link-hover a{
  position: relative;
  display: inline-block;
}
.link-hover a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.5px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: transform 0.25s ease-out;
  transform-origin: bottom right;
}
.link-hover:hover a::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary-color);
  margin: 0;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
img{
  width: 100%;
  display: block;
}
/*------ theme button --------*/
.theme-btn{
  border-radius: 50px;
  padding: 8px 15px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.btn-black{
  background: var(--secondary-color);
  border: 8px solid #292929;
  color: var(--primary-color);
  padding: 8px 20px;
  box-shadow: inset 0 0px 14px 1px #ddddddbd;
}
.btn-black .bi-circle{  
  height: 30px;
  width: 30px;
}
.icon-hover-rotate.yellow-icon i{
  transform: rotate(-45deg);
  color: var(--secondary-color);
  transition: .1s;
}
.theme-btn:hover .yellow-icon i{
  transform: rotate(0deg);
  transition: .2s;
}

.btn-white{
  background-color: var(--primary-color);  
  border: 8px solid rgb(220 220 220 / 39%);  
}
.btn-yellow{
  background: var(--accent-color);
  border: 8px solid rgb(231 231 231 / 80%);
  color: var(--secondary-color);
    transition: all 0.35s ease-in-out;
}
.btn-yellow:hover{
    background: var(--orange-color);
    color: var(--primary-color);
}
.btn-orange, .btn-dark{
  background: var(--orange-color);
  border: 8px solid rgb(231 231 231 / 80%);
  color: var(--primary-color);
    transition: all 0.35s ease-in-out;
    cursor: pointer;
}
.btn-dark{
  background: var(--secondary-color);
}
.btn-orange:hover, .btn-dark:hover{
    background: var(--accent-color);
    color: var(--secondary-color);
}

.bi-circle{  
  border-radius: 100%;
  margin-left: 15px;
  display: inline-block;
  height: 35px;
  width: 35px;
  text-align: center;
  vertical-align: middle;
}
.bi-circle.gray-icon{
  background:#F3F3F3;
}
.bi-circle.yellow-icon{
  background:var(--accent-color);
}
.bi-circle.black-icon{
  background:var(--secondary-color);
  padding: 5px;
}
.icon-hover-rotate.black-icon i{  
  color: var(--accent-color);
}
.icon-hover-rotate i{
  transform: rotate(-45deg);
  transition: .1s;
}
.theme-btn:hover i{
  transform: rotate(0deg);
  transition: .2s;
}
.yellow-icon i{
 padding: 5px;
  font-size: 22px;
}
.theme-btn.btn-yellow:hover i{
    color: var(--accent-color);
}
.gray-icon i{
  padding: 7px;
  font-size: 22px;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1240px;
  }
  
}

/*--------- image effect ----------*/
.image-effect{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.image-effect img {
  transition: 0.3s;
  border-radius: 15px;
  display: block;
  width: 100%;
  object-fit: cover;
}

.image-effect img:hover {
  transform: scale(1.1);
}

/*----------------------------------------------
# Global Header
----------------------------------------------*/
.header-top{
  background: #252525;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-phone-number, .brand-address, .brand-email{
  margin-left:40px;
  vertical-align: middle;
}
.brand-phone-number i, .brand-address i, .brand-email i{
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 16px;
}
.brand-phone-number a, .brand-address, .brand-email a{
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 300;
}
.custom-menu{
  padding: 0;
  margin: 0;
}
.custom-dropdown{
  display: flex;
  align-items: center;
}
.custom-dropdown span{
 display: block;
 color: var(--primary-color);
 font-size: 15px;
 cursor: pointer;
 margin: 0 10px;
}
.custom-dropdown i{
 display: inline-block;
 color: var(--primary-color);
 font-size: 16px;
}
.custom-submenu{
  display: none;
  transition: 0.5s;
  margin-bottom: 0;
  background: var(--secondary-color);
  padding: 25px 20px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.custom-submenu li{
  list-style: none;
}
.custom-submenu li a{
  color: var(--primary-color);
  text-decoration: none;
  margin: 8px 0;
  display: block;
  font-size: 15px;
}
.custom-menu.show  .custom-submenu{
  display: block;
  position: absolute;
  top: 37px;
  min-width: 130px;
  z-index: 1;
}
.header {
  color: var(--default-color);
  position: relative;
  padding: .5em 0;
}
.header.fixed-top{
  position: fixed !important;
  background-color: var(--primary-color);
  padding-top: 0;
}
.header .container-fluid, .header-top .container-fluid{
  justify-content: space-between;
}

.header .logo {
  line-height: 1;
  margin-right: 0%;
}

.header .logo img {
  max-height: 86px;
  object-fit: contain;
}

.header .logo h1 {
  font-size: 25px;
  margin: 0;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.btn-hd-search{
 font-size: 26px;
 font-weight: bold;
}

body.scrolled .header {
  --background-color: rgb(255 255 255);
}

.searchbar{
  position: absolute;
  min-width: 0px;
  width: 0%;
  right: 15%;
  height: 50px;
  float: right;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.searchbar-input{
  top: 0px;
  right: 0;
  outline: 0;
  background: var(--primary-color);
  width: 100%;
  border: 1px solid var(--secondary-color);
  height: 44px;
  margin: 0;
  padding: 0px 25px 0px 20px;
  font-size: 17px;
  color: var(--secondary-color);
  border-radius: 10px;
}
.searchbar-open .searchbar-input::placeholder {
 color: #b1b1b1;
 opacity: 1;
}
.searchbar-open .searchbar-input{
  position: absolute;
  width: 400px;
  background-color: var(--primary-color);
}
.searchbar-input::-webkit-input-placeholder {
  color: #fff;
}
.searchbar-input:-moz-placeholder {
  color: #fff;
}
.searchbar-input::-moz-placeholder {
  color: #fff;
}
.searchbar-input:-ms-input-placeholder {
  color: #fff;
}
.searchbar-icon,
.searchbar-submit{
  display:block;
}
.searchbar-open{
  width: 400px;
  right: 11.5%;
  margin-top: 5px;
}
.header .btn-yellow {
    border: 8px solid rgb(238 238 238);
}

/*-------------------------------------------
# Navigation Menu
-------------------------------------------*/
.header-nav-icons{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  margin: 0;
}
.header-nav-icons li{
  margin-left: 30px;
  position: relative;
}
.header-nav-icons li a{
  font-size: 18px;
}

/* Desktop Navigation */
@media (min-width: 1200px) {
.navmenu {
  background: var(--primary-color);
  border-radius: 14px;
  padding: 0px 15px;
  margin-left: 10%;
}

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

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 15px 10px;
  font-size: 15px;
  letter-spacing: 0;
  font-family: var(--nav-font);
  font-weight: 400;
  display: flex;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 13px;
  line-height: 0;
  margin-left: -13px;
  transition: 0.3s;
  transform: rotateZ(45deg);
}

.nfc-links a{
   font-size: 16.5px;
   color:#F26723;
}
.nfc-links a i{
  color:#F26723;
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: #F26723;
  text-decoration: none;
}

.navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: var(--primary-color);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 40%;
  right: 45%;
  top: 100%;
  opacity: 0;
  transition: 0.2s;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu .dropdown ul a {
  padding: 8px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--secondary-color);
  background: var(--primary-color);
}

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

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: var(--secondary-color);
}

.navmenu .dropdown:hover>ul {
  opacity: 1;
  top: 80%;
  visibility: visible;
  transition: 0.2s;
}
}

/* Mobile Navigation */



@media (max-width: 1199px) {
.mobile-nav-toggle {
  color: var(--bs-black);
  font-size: 28px;
  line-height: 0;
  /* margin-right: 10px; */
  cursor: pointer;
  transition: color 0.3s;
}

.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  display: none;
  list-style: none;
  position: absolute;
  inset: 60px 20px 20px 20px;
  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  background-color: var(--nav-mobile-background-color);
  overflow-y: auto;
  transition: 0.3s;
  z-index: 9998;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu a,
.navmenu a:focus {
  color: var(--grey);
  padding: 10px 20px;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .active i,
.navmenu .active:focus i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown ul ul {
  background-color: rgba(33, 37, 41, 0.1);
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: rgba(33, 37, 41, 0.03);
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  position: absolute;
  font-size: 32px;
  top: 1.5rem;
  right: 1rem;
  margin-right: 0;
  z-index: 9999;
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  inset: 0;
  background: rgba(33, 37, 41, 0.8);
  transition: 0.3s;
}

.mobile-nav-active .navmenu>ul {
  display: block;
}
}

.navmenu>ul li.top-links {
   position: unset ;
   margin: 0 3px;
}

/*-----------------------------------------
# Hero Section
-----------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 2em 0 10em 0;
}
.section-icon-title{
  position: relative;
}
.section-icon-title a{
  font-size: 14px;
  text-decoration: underline;
  position: absolute;
  bottom: -3px;
}
.hero .content{
  margin: 2em 0 3em 0;
}
.hero .content h3{
  font-size: 2.7em;
  margin-bottom: 10px;
}
.hero .content p{
  color: #B8B8B8;
  margin-right: 4em;
}
.hero-btn-grp{
  display: flex;
  justify-content: space-between;
}
.hero-video{
  position: relative;
}
.hero-video video{
    width: 85%;
    position: absolute;
    top: -100px;
    left: 100px;
    /* transform: rotate(6deg); */
    z-index: -1;
    clip-path: inset(10px);
}
.hero-typing-text{
  margin-top: 3em;
  transform: rotate(15deg);
  font-family: var(--dailog-font);
    font-size: 28px;
    font-weight: 700;
}
.hero-typing-text p{
  text-align: left;
  padding-left: 1em;
}
.aero-gif{
  position: absolute;
  left: -5em;
  top: 0;
}
.aero-gif img{
  width: 100px;
}
.stats-wrap{
  margin-top: 3em;
  margin-left: 1em;
}
.rise-shake {
  animation: jump-shaking 1.8s infinite;
}
@keyframes jump-shaking {
  0% { transform: translateX(0) rotate(0)}
  35% { transform: translateY(0) rotate(0)}
  85% { transform: translateY(0) rotate(0) }
  89% { transform: translateY(-2px) rotate(-17deg) }
  93% { transform: translateY(-3px) rotate(17deg) }
  98% { transform: translateY(-4px) rotate(-17deg) }
  100% { transform: translateY(0) rotate(0) }
}
.rise-shake-2 {
  animation: jump-shaking-2 2.5s infinite;
}
@keyframes jump-shaking-2 {
  0% { transform: translateX(0) rotate(0)}
  35% { transform: translateY(0) rotate(0)}
  85% { transform: translateY(0) rotate(0) }
  89% { transform: translateY(-2px) rotate(-17deg) }
  93% { transform: translateY(-3px) rotate(17deg) }
  98% { transform: translateY(-4px) rotate(-17deg) }
  100% { transform: translateY(0) rotate(0) }
}
.rise-shake-3 {
  animation: jump-shaking-3 2.9s infinite;
}
@keyframes jump-shaking-3 {
  0% { transform: translateX(0) rotate(0)}
  35% { transform: translateY(0) rotate(0)}
  85% { transform: translateY(0) rotate(0) }
  89% { transform: translateY(-2px) rotate(-17deg) }
  93% { transform: translateY(-3px) rotate(17deg) }
  98% { transform: translateY(-4px) rotate(-17deg) }
  100% { transform: translateY(0) rotate(0) }
}
.rise-shake-4 {
  animation: jump-shaking-3 3.9s infinite;
  transform: translateY(50%);
  transition: 0.5s all ease;
}
.stats-box{
  background: rgb(255 255 255 / 83%);
  margin-bottom: 15px;
  border-radius: 10px;
  display: block;
  padding: 7px 12px;
  align-items: baseline;
  font-size: 13px;
  color: #7A7A7A;
  font-weight: 300;    
  max-width: 169px;
}
.stats-box h4{
  font-size: 18px;
  margin-right: 10px;
  color: var(--secondary-color);
  font-weight: 400;
  display: inline;
}
.stats-box:nth-child(2){
  margin-left: 2.5em;
}
.stats-box:nth-child(3){
  margin-left: 5em;
  max-width: 150px;
}
.nfc-tag-sticky{
  position: absolute;
    bottom: 30%;
    right: 6%;
}
.nfc-tag-sticky a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(255 255 255 / 70%);
  border-radius: 15px;
  padding: 10px;
}
.nfc-tag-sticky img{
  width: 40px;
}
.slideanimation{ animation: fadeInRight ease-in-out infinite; animation-delay: 100ms; animation-duration: 8s; opacity: 0; }
@keyframes fadeInRight {
  0% {
    margin-right:0;
    opacity: 0;
  }
  20% {
    opacity: .5;
    margin-right:0px;
  }
  50% {
    opacity: 1;
    margin-right:0px;
  }
  100% {
    opacity: 1;
    margin-right:0px;
  }
  /* 50% {
    opacity: 1;
    margin-right:-0px;
  }
  0% {
    margin-right:-100%;
    opacity: 0;
  } */
  /* 0% {
    opacity: 1;
    
    transform: translateX(300px);
  }
  50% {
    opacity: 1;
    transition-delay: 5s;
  }
  100% {
    transition-delay: 10s;
    opacity: 0;
  } */
}

.nfc-tag-text{
  margin: 0 20px;
}
.nfc-tag-text h4{
   font-size: 18px;
   margin-bottom: 3px;
}
.nfc-tag-text p{
   font-size: 14px;
   margin-bottom: 0;
}

/*--------------------------------------
# About Section
--------------------------------------*/
.section-icon-title img{
  width: 130px;
}
.section-icon-title h4{
  font-size: 14px;
  padding: 8px 17px;
  border-radius: 50px;
  border: 1px solid #595757;
  color: var(--primary-color);
  display: inline;
  font-weight: 200; 
}
.about{
  background-color: var(--secondary-color);
  background-image: url(../img/about-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 3em 0;
}
.about .content, .digitalprofile .content{
  margin-top: 30px;
}
.about .content h3, .digitalprofile .content h3{
  font-size: 3.4em;
  color: var(--primary-color);
  letter-spacing: .5px;
  line-height: 67px;
  margin-bottom: 19px;
}
.about .content h3 span, .digitalprofile .content h3 span{
  color: var(--accent-color);
}
.about .content p, .digitalprofile .content p{
  font-size: 21px;
  line-height: 30px;
  color: #8B8B8B;
  font-weight: 300;
  margin-bottom: 5em;
  padding-right: 2em;
}

/*----------------------------------
# Products Section
----------------------------------*/
#products-home-sec{
    background-image: url(../img/product-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 6em  0 8em 0;
}
.products-home-sec .section-title h3 {
    color: var(--secondary-color);
}
.products-home-sec .section-title h3 span {
    color: #CCCCCC;
}
.products-home-sec .section-content p {
    font-size: 15px;
    color: rgb(163 163 163 / 81%);
    font-weight: 300;
}
.products-h-wrapper{
  margin-top: 6em;
}
.products-home-card{
  background: var(--primary-color);
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0px 0px 13px 3px #e9e9e9;
  margin-top: 20px;
}
.products-home-image{
  border-radius: 20px;
  overflow: hidden;
  height: 12rem;
}
.product-home-details{
  padding: 15px;
  padding-bottom: 0;
}
.product-home-details a{
   font-size: 19px;
   display: block;
   margin-bottom: 5px;
}
.product-home-details p{
  color: #7B7B7B;
  font-weight: 300;
  font-size: 15px;
}
.products-home-card .card-icon{
  text-align: right;
}
.products-home-card .card-icon a{
border: 2px solid #e9e9e9;
  background: var(--primary-color);
}

/*----------------------------------
# Cards & Systems Section
----------------------------------*/
#cards-sec{
  background-color: var(--secondary-color);
  padding: 4em;
}
.section-title h3{
  font-size: 3.4em;
  color: var(--primary-color);
  letter-spacing: .5px;
  line-height: 67px;
  margin-bottom: 19px;
}
.section-title h3 span{
  color: var(--accent-color);
}
.section-content{
  text-align: right;
}
.section-content p{
  font-size: 15px;
  color: rgb(255 255 255 / 76%);
  font-weight: 300;
}
.cards-sec .btn-black {
    color: var(--accent-color);
}
.cards-wrapper{
  background: #252627;
  border-radius: 45px;
  padding: 25px;
  margin-top: 5em;
}
.cards-box{  
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.cards-box.loyality{
 background: #d1e9ff;
}
.cards-box.smart{
 background: #494949;
}
.cards-box.id{
 background: #dedede;
}
.card-types{
  position: absolute;
  top: 7%;
  right: 7%;
  text-align: right;
  z-index: 99;
}
.icon-box{
 background: var(--accent-color);
 border-radius: 100%;
  display: inline-block;
      height: 55px;
    width: 55px;
    text-align: center;
    vertical-align: middle;
    border: 3px solid #ffffff;
    padding: 13px;
}
.icon-box i{
  transform: rotate(-45deg);
    color: var(--secondary-color);
    transition: .1s;
    font-size: 26px;
}
.card-types:hover .icon-box i, .icon-box:hover i{
  transform: rotate(0deg);
    transition: .2s;
}
.card-types h4 a{
  font-size: 26px;
  font-weight: 400;
    color: var(--primary-color);
    margin-top: 12px;
    display: inline-block;
}
.id .card-types h4 a{
 color: var(--secondary-color);
}
.cards-image figure{
   margin: 0;
}

/*----------------------------------
# Partners Section
----------------------------------*/
#partners-sec{
  padding: 5em 0;
  background: #fff;
}
.partners-sec .section-title h3 {
    color: var(--secondary-color);
}
.partners-sec .section-title h3 span {
    color: #CCCCCC;
}
.partners-sec .section-content p {
    font-size: 15px;
    color: rgb(163 163 163 / 81%);
    font-weight: 300;
}
.partners-wrapper{
  margin-top: 4em;
}
.partners-logo-box{
  background: #fff;
  border-radius: 30px;
  margin-bottom: 30px;
    height: 245px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners-logo-box figure{
   margin: 0;
   display: flex;
    align-items: center;
    justify-content: center;
}
.partners-logo-box img{
  max-width: 83%;
  filter: grayscale(100%);
}
.partners-logo-box:hover img{
  filter: grayscale(0%);
}


/*----------------------------------
# Services Section
----------------------------------*/
#services{
  background-image: url(../img/services-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 6em 0;
}

.services .section-title h3 {
    font-size: 2.8em;
    text-align: center;
    max-width: 50%;
    line-height: normal;
    margin: 0 auto;
}
.services .section-content{
    text-align: center;
    max-width: 50%;
    margin: 0 auto;
    margin-top: 20px;
}
.services .section-content p {
    margin-bottom: 30px;
    font-size: 17px;
    color: rgb(255 255 255 / 51%);
}
.services .btn-yellow {
    border: 8px solid rgb(19 18 18 / 88%);
}
.services .row:nth-child(2){
  align-items: baseline;
}
.services-card{
  position: relative;
  border-radius: 35px;
    overflow: hidden;
    margin-top: 20px;
}
.services-card .card-icon{
  position: absolute;
  top: 7%;
  right: 7%;
  z-index: 99;
}
.services-card .card-icon .icon-box {
    background: var(--secondary-color);
    height: 65px;
    width: 65px;
    text-align: center;
    vertical-align: middle;
    border: none;
    padding: 19px;
}
.services-card .card-icon .icon-box i {
    transform: rotate(-45deg);
    color: var(--primary-color);
    transition: .1s;
    font-size: 26px;
}
.services-card .card-icon:hover .icon-box i{
  transform: rotate(0deg);
    transition: .2s;
}
.services-content{
    position: absolute;
    z-index: 1;
    bottom: 0%;
    padding: 20px;
}
.services-content h4{
  font-size: 28px;
    margin-bottom: 10px;
}
.services-content p{
  color: #525252;
  font-size: 14px;
  font-weight: 300;
}
.pvc-card .services-content {
    top: 0%;
    max-width: 80%;
}
.pvc-card .services-content h4{
  font-size: 25px;
}
.design-card .services-content {
    text-align: right;
}
.design-card .services-content h4 {
    font-size: 36px;
}

/*--------------------------------------
# Blog Section
--------------------------------------*/
#blog-home{
  padding:5em 0 15em 0;
  position: relative;
}
.long-title{
  font-size:3.7em;
  font-weight: 600;
}
.short-title{
  font-size: 3.7em;
  font-weight: 800;
  color: rgb(0 0 0 / 11%);
  max-width: 70%;
}
.description-text{
  max-width: 60%;
}
.description-text p{
  font-size: 15px;
  color: #BBBBBB;
  margin: 7em 0 5em 0;
}
.blog-wrapper{
  background: var(--secondary-color);
  min-height: 500px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  position: absolute;
  right: 0%;
  top: 21%;
  z-index: 99;
  left: 46%;
  padding: 7em 0 3em 3em;
}
/* .blog-sliders .owl-stage{
  width: 3000px !important;
}
.blog-sliders .owl-carousel.owl-drag .owl-item{
  width: 330px !important;
}
.blog-sliders .owl-stage-outer{
  margin-left: -11em;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
} */
.slider-img-box{
  position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.slider-img-box figure{
  margin: 0;
}
.slider-text{
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(180deg, rgba(var(--bs-white-rgb), 0.00) 0%, rgba(var(--bs-black-rgb), 0.80) 100%);
}
.slider-text p{
  margin-bottom: 0;
    max-width: 65%;
    color: var(--primary-color);
}
.slider-text p a{
color: var(--primary-color);
}
.slider-text .icon-box{
  border:none;
  height: 45px;
    width: 45px;
}
.slider-text  .icon-box i {    
    font-size: 20px;
}
#counter{
  margin-top: 20px;
  color: rgb(255 255 255 / 38%);
}
#counter:before{
  content: "Latest Blog";
  margin-right: 15px;
  font-size: 20px;
  color: var(--primary-color);
}
.blog-sliders .owl-nav{
  position: absolute;
  right: 10%;
  bottom: -14%;
}
.blog-sliders .owl-nav .owl-prev, .blog-sliders .owl-nav .owl-next{
  background: var(--accent-color) !important;
  border-radius: 100%;
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  vertical-align: middle;
  margin-left: 15px;
      display: inline-flex;
    align-items: center;
    justify-content: center;
}
.blog-sliders .owl-nav .owl-prev span, .blog-sliders .owl-nav .owl-next span{
  font-size: 2.5em;
  display: inline;
  margin-top: -6px;
}

/*--------------------------------------
# NFC Customize Section
--------------------------------------*/
#nfc-customize{
  background-color: #FAB40A;
  background-image: url(../img/nfc-customize.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 6em 0 7em 0;
}
.nfc-customize .content h3, .ecofriendly .content h3{
  font-size: 4em;
  margin-bottom: 10px;
}
.nfc-customize .content p, .ecofriendly .content p{
  font-weight: 300;
  margin-bottom: 50px;
}

/*--------------------------------------
# Identity Section
--------------------------------------*/
#identity{
  background-image: url(../img/identity-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding: 7em 0 0 0;
}
.identity .section-content{
  text-align: center;
  max-width: 65%;
  margin: 0 auto;
  margin-bottom: 4em;
}
.identity .section-content p{
  font-size: 24px;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: 0.5px;
  color: var(--secondary-color);
  margin-bottom: 40px;
}
.identity .section-content span{
  text-transform: uppercase;
}
.identity span.bold{
   font-size: 41px;
   font-weight: 600;
}
.identity span.smart-tech{
  font-size: 53px;
}
.identity span.conv-starter{
  font-size: 42px;
}
.typing-text-wrap{
  min-height: 72vh;
  max-width: 75%;
  margin: 0 auto;
}
.blink-soft {
  animation: blinker 2s linear infinite;
}
@keyframes blinker {
  50% {
    color: #D9272F;
  }
}
.say-hello-text, .first-impr-text{
  
}
.say-hello-text p{  
  transform: rotate(-15deg);
      padding-right: 67%;
}
.say-hello-text p, .first-impr-text p{
  font-family: var(--dailog-font);
  font-size: 28px;
  font-weight: 700;

}
.first-impr-text{  
  transform: rotate(15deg);
  padding-left: 61%;
}

/*--------------------------------------
# Testimonials
--------------------------------------*/
#testimonials{
  background-image: linear-gradient(to right, #000000 50%, #363636);
  padding: 5em 0;
}
.testimonials .section-title h3{
  text-align: center;
  font-size: 3em;
  margin-bottom: 50px;
}
.testimonials-content{
  background-image: linear-gradient(to right, #141313 30%, #363636);
  border-radius: 30px;
  padding: 50px;
  position: relative;
}
.star-ratings i{
   color: rgb(255 255 255 / 25%);
   font-size: 26px;
   margin-right: 10px;
}
.star-ratings i.checked{
   color: var(--accent-color);
}
.testimonial-text p{
  color: rgb(255 255 255 / 69%);
  font-size: 24px;
  margin: 2em 0;
}
.client-details{
  float: right;
}
.client-details h3{
 font-size: 22px;
 color: var(--primary-color);
}
.client-details p{
  color: rgb(255 255 255 / 49%);
  font-size: 16px;
}
.client-photo{
  margin-left:8em;
  border-radius: 40px;
  overflow: hidden;
}
.client-photo figure{
  margin-bottom: 0;
}
.carousel-control-prev{
  bottom: 0%;
  left: 0%;
}
.carousel-control-next{
  bottom: 0%;
  left: 7%;
}
.carousel-control-prev, .carousel-control-next{
  position: absolute;
  background: var(--accent-color);
  top: unset;  
  width: 60px;
  height: 60px;
  border-radius: 50px;
  opacity: 1;
}


/*--------------------------------------
# Global Footer
--------------------------------------*/
.footer{
  background-color:var(--secondary-color);
  /*background-image: url(../img/footer-bg.png);*/
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 4em 0;
}
.brand-box{
  /*margin-bottom: 5em;*/
  padding-right: 20px;
}
.brand-box p{
  font-weight:300;
  font-size: 14px;
  color: rgb(255 255 255 / 42%);
  margin-top: 1em;
}
.brand-box img{
  max-width: 87%;
}
.footer-link-box{
  padding-left: 4em;
}
.top-footer-headings{
  font-size: 22px;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 18px;
}
.footer-links{

}
.footer-links li{
  margin-top: 2px;
}
.footer-links li a{
  color: var(--primary-color);
    padding: 4px 0;
    display: inline-block;
    font-size: 16px;
    position: relative;
    font-weight: 300;
}
.footer-links li a:hover{
  text-decoration: underline;
}
.footer-links li a i{
  color: #D9272F;
  font-size: 13px;
  transition: 0.3s;
  transform: rotateZ(45deg);
  position: absolute;
}

.footer-address-info{
  margin-top: 3em;
}
.footer-address-info p{
  margin-bottom: 10px;
}
.footer-address-info p a{
  font-size: 18px;
  color: var(--primary-color);
  text-decoration: underline;
}
.footer-address-info p a:hover{
  text-decoration: none;
}
.newsletter-box{
  margin: 0 auto;
  margin-left: 18%;
}
.newsletter-box p{
  font-size: 14.5px;
  color: var(--primary-color);
  font-weight: 300;
  margin-bottom: 19px;
}
.newsletter-input{
  position: relative;
}
.newsletter-input input{
  background-color: #E3E3E3;
  border:10px solid rgb(64 64 64 / 55%);
  height: 80px;
  border-radius:40px;
  padding: 15px;
}
.newsletter-input input::placeholder{
  color: #6d6d6d;
}
.newsletter-input input:focus{
    box-shadow: none;
    outline: 0;
    background-color: #E3E3E3;
    color: var(--secondary-color);
    border-color: rgb(64 64 64 / 55%);
}
.newsletter-input button{
    position: absolute;
    top: 17px;
    right: 19px;
    background: #D9272F;
    border: none;
    height: 45px;
    width: 45px;
    border-radius: 100%;
}
.newsletter-input button i{
  color: var(--primary-color);
  transform: rotate(-45deg);
  transition: .1s;
}
.newsletter-input button:hover i{
  transform: rotate(0deg);
  transition: .2s;
}
.footer .social-widget{
  margin-left: 18%;
  margin-top: 1.5em;
  display: flex;
  align-items: center;
  justify-content: end;
}
.footer .social-widget span{
  color: rgb(255 255 255 / 55%);
  margin-right: 15px;
}
.footer .social-widget ul{
  list-style: none
}
.footer .social-widget ul li{
    display: inline-block;
    margin-right: 10px;
}
.footer .social-widget ul li a{
  background: #181818;
  border-radius: 50px;
  padding: 9px;
  text-align: center;
  height: 40px;
  width: 40px;
  display: inline-block;
}
.footer .social-widget ul li a i{
  color: #D9272F;
}
.footer .social-widget li a:hover i{
    -webkit-animation:spin .4s linear;
    -moz-animation:spin .4s linear;
    animation:spin .4s linear;    
  }
  @-moz-keyframes spin { 
      100% { -moz-transform: rotate(360deg); } 
  }
  @-webkit-keyframes spin { 
      100% { -webkit-transform: rotate(360deg); } 
  }
  @keyframes spin { 
      100% { 
          -webkit-transform: rotate(360deg); 
          transform:rotate(360deg); 
      } 
  }
.footer .col-lg-6:nth-child(2){
  border-inline-start:1px solid #3a3a3a;
}
.footer-btm{
    padding-top: 25px;
    padding-bottom: 20px;
    justify-content: space-between;
    background: #D2D2D2;
}
.footer-btm .copyright{
    display: flex;
    align-items: center;

}
.footer-btm .copyright p {
  margin-bottom: 0;
  color: #505050;
  font-size: 14px;
}

.footer-btm .credits {
  color: #505050;
  font-size: 14px;
  text-align: right;
}
.footer-btm .credits img{
  height: 12px;
  width: auto;
  display: inline;
}

#slider-carousel .owl-dots{
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}
.owl-dots button span{
    background: var(--accent-color);
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
}
.owl-dots button.active span{
    background: #bdbdbd;
    width: 13px;
    height: 13px;
}
.owl-dots{ position: inherit; text-align: center; }



/*--------------------------------------
# NFC Cards Page
--------------------------------------*/
/*---- NFC Hero ------------*/
.nfc-hero-sec {
  background-color:var(--secondary-color);
  background-image:url(../img/nfc-hero-bg.jpg);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center;
  padding:9.5em 0 16em 0;
}
.nfc-content {
  text-align:center;
  max-width:70%;
  margin:0 auto;
}
.nfc-content h3 {
  font-size:4.3em;
  display:inline-block;
  color:var(--primary-color);
  line-height:90px;
}
.nfc-content h3 img {
  width:100px;
  display:inline;
}
.nfc-content p {
  color:var(--primary-color);
  font-size:20px;
  font-weight:300;
  margin:2.2em 10em 2em 10em;
}
.nfc-content .btn-yellow {
  border:8px solid rgb(61 60 60 / 95%);
}
/*----------- NFC Products ------------*/
#products-nfc-sec {
  padding:5em 0 6em 0;
}
.products-nfc-sec .section-title h3 {
  color:var(--secondary-color);
}
.products-nfc-sec .section-title p {
  font-size:20px;
  font-weight:300;
  color:#6D6D6D;
}
.products-nfc-sec .section-content {
  margin-top:5.5em;
}
.product-nfc-wrapper {
  margin-top:3em;
}
.product-nfc-wrapper .products-home-card {
  padding:0;
}
.product-nfc-wrapper .product-home-details a {
  font-size:17px;
    min-height: 50px;
}
.product-nfc-wrapper .product-home-details p {
  color:var(--secondary-color);
  font-size:19px;
  font-weight:600;
}
.product-nfc-wrapper .products-home-card {
  position:relative;
}
.product-nfc-wrapper .card-icon {
  position:absolute;
  top:7%;
  right:7%;
}
.product-nfc-wrapper .products-home-card .card-icon a {
  border:2px solid var(--primary-color);
  background:var(--accent-color);
}
.product-nfc-wrapper .product-home-details {
  padding:15px;
  padding-bottom:1px;
}
/*----------- Scrolling Text ------------*/
#scroll-content-sec {
  padding:0;
  background:var(--secondary-color);
  overflow:clip;
}
.stroke-marquee-wrapper {
  position:relative;
  height:200px;
  display:flex;
  align-items:center;
}
.stroke-marquee-wrapper .marquee-inner {
  display:flex;
  width:200%;
  position:absolute;
  animation:marquee 13s linear  infinite;
  justify-content:space-evenly;
  align-items:center;
}
.stroke-marquee-wrapper .marquee-inner span {
  font-size:4.5em;
  -webkit-text-stroke:1px var(--accent-color);
  -webkit-text-fill-color:var(--secondary-color);
  font-weight:300;
  font-family:sans-serif;
  letter-spacing:-2px;
}
@keyframes marquee {
  0% {
  left:0;
}
100% {
  left:-100%;
}
}/*----------- How it Work ------------*/
  #how-it-work-sec {
  padding:5em 0;
}
.how-it-work-sec .section-title {
  text-align:center;
  margin-bottom:30px;
}
.how-it-work-sec .section-title h3 {
  font-size:45px;
  color:var(--secondary-color);
  margin-bottom:5px;
}
.how-it-work-sec .section-title p {
  color:#101010;
}
p.lead {
  font-size:1.1rem;
  color:#666;
  margin-bottom:50px;
}
.step-box {
  position:relative;
}
.step-box img {
  width:90%;
  margin-bottom:20px;
}
.step-content {
  margin:0 2em;
}
.step-content h5 {
  font-weight:600;
  margin-bottom:10px;
  font-size:17px;
}
.step-content p {
  color:#919191;
  font-size:13.7px;
  font-weight:300;
}
.arrow {
  color:#999;
  /* margin-top:130px;
  */
    position:absolute;
  top:45%;
  left:-13%;
}
.arrow img {
  width:57px;
}
@media (max-width:768px) {
  .arrow {
  display:none;
}
}
/*---------- Smart Card Section ---------*/
#smart-card-section {
  background:linear-gradient(to right,#000000 30%,#363636 100%);
  padding:6em 0;
}
.card-feature ul {
    margin-top: 1rem;
}
.card-feature ul li {
  font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
}
.card-feature ul li:nth-child(2) {
    top: -1rem;
}
.card-feature ul li:nth-child(4) {
    top: -1rem;
}
.card-feature ul li::before{
    content: '';
    position: absolute;
    background: var(--primary-color);
    height: 1px;
    width: 2.5rem;
    left: -3.5rem;
    margin-top: 10px;
}
.desc-text {
  color:#666;
  font-size:0.85rem;
  font-weight:300;
}
.desc-text img {
  width:20px;
  height:15px;
  margin:0 10px 10px 20px;
}
.desc-text img:nth-child(1) {
  margin-left:0;
}
.smart-card-content h2 {
  font-size:3em;
  color:var(--primary-color);
  letter-spacing:.5px;
  line-height:50px;
  margin-bottom:19px;
}
.smart-card-content h2 span {
  color:var(--accent-color);
}
.smart-card-content p {
  color:#CDCDCD;
  font-size:15px;
  margin-bottom:20px;
  font-weight:300;
}
/*----- NFC Highlighted Product ---------*/
#NFC-highlighted-product {
  padding:5em 0;
}
.NFC-highlighted-product .section-title h2 {
  font-size:4em;
}
.NFC-highlighted-product .section-content {
  text-align:left;
}
.NFC-highlighted-product .section-content p {
  color:#6A6A6A;
  font-size:17px;
  margin-left:3em;
}
.card-custom {
  border:none;
  border-radius:2rem;
  padding:2em 2em 3em 2em;
  position:relative;
  overflow:hidden;
  display:block;
  /*margin-top:4em;*/
}
.card-yellow-gradient {
  background:linear-gradient(135deg,#fcea59,#DBCF61);
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  z-index:1;
}
.top-left-img {
  display:flex;
}
.top-left-img img {
  transform:rotate(0deg);
  width:68px;
}
.card-custom-content {
  width:55%;
  margin-top:10px;
}
.card-custom-content h4 {
  font-size:2.2em;
  margin-bottom:25px;
}
.card-custom-content p {
  color:#4F4F4F;
  font-size:17px;
  font-weight:300;
  margin-bottom:0;
}
.nfc-p-price {
  font-weight:700;
  font-size:2em;
  margin:0.7em 0 0.5em 0;
}
.left-card-img img {
  position:absolute;
  bottom:0rem;
  right:-0.5rem;
  width:295px;
}
.card-yellow-gradient .btn-black {
  box-shadow:none;
  color:var(--accent-color);
}
.card-gray {
  background:linear-gradient(135deg,#f0eee8,#e4e2db);
}
.gray-content-wrap {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  margin-top:11em;
}
.right-card-img img {
  position:absolute;
  top:-140px;
  right:-1rem;
  transform:rotate(0deg);
  width:65%;
}
.card-gray-cart {
  text-align:center;
}
.card-gray .btn-black {
  box-shadow:none;
}
.card-gray .bi-circle.yellow-icon {
  background:var(--primary-color);
}
/*-------- Free Design Support ------*/
  #free-design-sec {
  padding:7rem 2rem;
  background:linear-gradient(to right,#000000 60%,#363636 100%);
  overflow:hidden;
}
.bg-img {
  position:absolute;
  top:-73px;
  left:-81px;
  width:92px;
  transform:rotate(170deg);
  z-index:1;
}
.bg-img2 {
  position:absolute;
  top:-18px;
  left:-90px;
  width:92px;
  transform:rotate(-90deg);
  z-index:1;
}
.design-title-text {
  position:relative;
}
.design-title-text h2 {
  font-size:4em;
  color:var(--primary-color);
  letter-spacing:.5px;
  line-height:67px;
  margin-bottom:19px;
}
.design-title-text h2 span {
  color:var(--accent-color);
}
.design-content {
  font-size:16px;
  font-weight:300;
  margin:3em 0;
  color:var(--primary-color);
}
.free-design-sec .btn-yellow {
  border:8px solid rgb(45 45 45);
}
.rounded-wrapper {
  border-radius:0px 80px 80px 0px;
  background:linear-gradient(to right,#000000,#2f2f2f);
  padding:4em 3rem 5em 3rem;
}
.rounded-wrapper p {
  color:var(--primary-color);
  font-size:20px;
}
.step-circle {
  background-color:#ffc107;
  color:#000;
  font-weight:600;
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.free_btn {
  box-shadow:0px 0px 8px 8px #2c2929;
}
.free_btn i {
  transform:rotate(-45deg);
}
@media (max-width:768px) {
  .bg-img {
  position:static;
  transform:none;
  margin-bottom:10px;
}
}/*--------- why choose NFC --------*/
  #why-choose-nfc {
  padding:6rem 2rem;
  background:linear-gradient(135deg,#000000,#000000);
}
.heading-cont {
  max-width:55%;
  margin:0 auto;
  margin-bottom:30px;
}
.heading-cont h2 {
  font-size:50px;
  margin-bottom:20px;
  color:var(--primary-color);
}
.heading-cont p {
  color:var(--primary-color);
  font-size:16px;
}
.why-text-box h6 {
  font-size:20px;
  margin-bottom:8px;
  color:var(--primary-color);
}
.why-text-box p {
  margin:0 5em;
}
/*----- highlited text -------*/
  #highlighted-text {
  background-color:#000;
  background-image:linear-gradient(to right,rgb(255 255 255 / 8%) 1px,#0000000f 1px),linear-gradient(to bottom,rgb(255 255 255 / 8%) 1px,transparent 1px);
  background-size:75px 75px;
  padding:80px 20px;
}
.quote-text {
  font-size:3rem;
  line-height:1.4;
  text-align:center;
}
.quote-icon-img {
  width:85px;
  display:inline;
}
.quote-icon-img.glow {
  border-radius:8px;
  transform:rotate(-45deg);
  box-shadow:-8px 6px 10px #005e36;
}

@media (max-width:1480px) {
    .btn-black{ padding: 8px 10px 8px 20px; font-size: 14px; }
    .theme-btn{ font-size: 14px; }
    .quote-text{ font-size: 2.5rem; line-height: 1.2; }
}
/*----------- faq -------------*/
  #faq-section {
  padding:4em 0;
}
.faq-section .section-title h3, .similar-product .section-title h3{
  text-align:center;
  font-size:45px;
  margin-bottom:1.5em;
  color:#35332F;
}
.faq-list-wrap .accordion-item {
  margin-bottom:40px;
  box-shadow:0px 0px 13px 3px #e9e9e9;
  border:none;
}
.faq-list-wrap .accordion-button,.faq-list-wrap .accordion-body {
  padding:30px;
  background:#f9f9f9;
}
.faq-list-wrap .accordion-body {
  padding-top:0px;
  font-size:15px;
}
.faq-list-wrap .accordion-button:active,.faq-list-wrap .accordion-button:focus {
  box-shadow:none;
}
.faq-list-wrap .accordion-button h5 {
  font-size:16px;
  color:#1B1139;
}
.faq-list-wrap .accordion-button:not(.collapsed)::after,.faq-list-wrap .accordion-button::after {
  background-image:none;
  font-size:21px;
  height:20px;
  width:20px;
  border-radius:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--secondary-color);
  color:#ffffff;
}
.faq-list-wrap .accordion-button:not(.collapsed)::after {
  content:"-";
  font-size:27px;
}
.faq-list-wrap .accordion-button::after {
  content:"+";
}



.digitalprofile{
  background-color: var(--secondary-color);
  padding: 3em 0;
}
.ecofriendly{
    background-color: #FAB40A;
    background-image: url(../img/networkinggreen.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 6em 0 7em 0;
    position: relative;
    z-index: 1;
}
.ecofriendly::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    --bs-bg-opacity: .6;
    --bs-bg-opacity2: .1;
    background: linear-gradient(90deg, rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) 0, rgba(var(--bs-white-rgb), var(--bs-bg-opacity2)) 70%);
    z-index: -1;
}


/******** Inner page Css start *********/
.fs-12{ font-size: 12px; }
.fs-13{ font-size: 13px; }
.fs-14{ font-size: 14px; }
.breadcrumb li.breadcrumb-item a{
    color: var(--bs-gray-600);
    font-size: .85rem;
    font-weight: 300;
}
.breadcrumb li.breadcrumb-item.active {
    color: var(--secondary-color);
}
.productfilter label{
    font-size: 12px;
}
.productfilter select {
    padding: .8rem 0;
    width: 100%;
    min-width: 9rem;
}

.productfilter select:focus-visible{ box-shadow: none; outline: none; }

.ui-slider-horizontal {
    height: 0.3rem;
    background: var(--grey);
    margin: .8rem 0 .5rem;
    border-radius: var(--bs-border-radius-sm);
    position: relative;
    width: 14rem;
}
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    height: 5px;
    display: block;
    background: var(--orange-color);
    border-radius: var(--bs-border-radius-sm) 0 0 var(--bs-border-radius-sm) ;
}
.ui-slider .ui-slider-handle {
    border-radius: var(--bs-border-radius-pill);
    top: -8px;
    width: 1.2rem;
    height: 1.2rem;
    border: none;
    background: var(--orange-color);
    position: absolute;
    z-index: 2;
    cursor: default;
    border: solid 2px var(--primary-color);
}
.ui-slider-horizontal span.ui-slider-handle {
    top: -.5em;
}
.ui-state-focus{ border: none !important; box-shadow: none; outline: none; }
.ui-slider a:focus {
    outline:none;
}
#time-range {
    padding-bottom: 15px;
}
.extra-controls .minvalue, .extra-controls .maxvalue {
    width: 100%;
    font-size: 12px;
    display: inline-block;
}
.extra-controls .slider-credits {
    width: 100%;
    margin-bottom: 0px;
    padding: 4px;
    font-size: 14px;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    color: var(--black);
    background-color: transparent;
    display: inline-block;
}
.red-option::before{
    content: '';
    background: red;
    height: 4px;
    width: 4px;
    display: inline-block;
}
.coloroptions{ gap: .4rem; display: inline-flex; }
.coloroptions li{
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    border-radius: var(--bs-border-radius-sm);
}
.coloroptions li.golden{
    background: var(--golden);
}
.coloroptions li.black{
    background: var(--secondary-color);
}
.coloroptions li.blue{
    background: var(--blue);
}
.coloplus a{
    font-size: 13px; 
    margin: 0;
}
.colorlist .btn{
    width: 1.5rem;
    height: 1.7rem;
    border: solid 3px var(--grey);
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    border-color: var(--accent-color);
}
.colorlist.btn-group>.btn:active, .colorlist.btn-group>.btn:focus, .colorlist.btn-group>.btn:hover{
    border-color: var(--accent-color);
}
.colorlist .btn.golden{ background-color: var(--golden); }
.colorlist .btn.darkyellow{ background-color: var(--accent-color); }
.colorlist .btn.black{ background-color: var(--secondary-color); }
.colorlist .btn.red { background-color: firebrick; }
.colorlist .btn.green { background-color: green; }
.colorlist .btn.blue { background-color: dodgerblue; }
.colorlist .btn.yellow { background-color: yellow; }
.colorlist .btn.orange { background-color: orange; }
.colorlist .btn.purple { background-color: purple; }
.colorlist .btn.pink { background-color: hotpink; }
.colorlist .btn.brown { background-color: saddlebrown; }
.colorlist .btn.black { background-color: black; }
.colorlist .btn.white { background-color: white; color: black; border: 1px solid #ccc; }
.colorlist .btn.gray { background-color: gray; }
.colorlist .btn.cyan { background-color: darkcyan; }
.colorlist .btn.magenta { background-color: magenta; }
.colorlist .btn.maroon { background-color: maroon; }
.colorlist .btn.olive { background-color: olive; }
.colorlist .btn.lime { background-color: limegreen; }
.colorlist .btn.navy { background-color: navy; }
.colorlist .btn.teal { background-color: teal; }
.colorlist .btn.silver { background-color: silver; }
.colorlist .btn.gold { background-color: gold; }
.colorlist .btn.beige { background-color: beige; }
.colorlist .btn.turquoise { background-color: turquoise; }
.colorlist .btn.violet { background-color: violet; }
.colorlist .btn.indigo { background-color: indigo; }
.colorlist .btn.coral { background-color: coral; }
.colorlist .btn.aqua { background-color: aqua; }
.colorlist .btn.lavender { background-color: lavender; }
.colorlist .btn.peach { background-color: peachpuff; }
.colorlist .btn.mint { background-color: mediumspringgreen; }
.colorlist .btn.khaki { background-color: khaki; }

.quantitybox input{ width: 2.5rem; }
.quantitybox .sub, .quantitybox .add{
    font-size: 1rem;
    padding: .4rem .8rem;
}
.productview-icons{ background: #F8F8F8; border: 1px solid rgba(104, 24, 30, 0.06); padding: 1rem; border-radius: var(--bs-border-radius-xxl); }
.productview-icons li{ 
    position: relative;
    color: var(--black);
    background: var(--primary-color);
    padding: 1rem;
    border-radius: var(--bs-border-radius-xl);
    width: 100%;
    height: 100%;
    display: grid;
    justify-items: center;
}
.productview-icons li svg{ margin-bottom: .2rem; }
.smallicon{
    background: #F8F8F8;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: var(--bs-border-radius-lg);
    margin-bottom: .7rem;
}

/******* Product Left Images Start **********/
.hide {
    display: none;
}
#productviewbox{ height: 25.5rem; }
#productviewbox .fancyZoom{ height: 100%; display: flex; width: 100%; }
#productthumb li a img{ max-height: 100%; width: 100%; height: auto; width: auto; object-fit: contain; }
#productthumb{ width: 100% !important;}
#productthumb ul li{ height: 100px; width: 100%; }
#productthumb ul li a{ height: 100%; display: inline-block; padding: .5rem; width: 100%; overflow: hidden; background: #F9F9F9; }
#productthumb ul {     
    width: 90%;
    margin: 0 auto;
    background: #fff;
    padding: .5rem;
    border-radius: var(--bs-border-radius-xl); }
.detail-gallery {
    position: relative;
}
#productthumb .owl-nav .owl-prev, #productthumb .owl-nav .owl-next{
    z-index: 1;
    font-size: 1rem;
}
#productthumb .owl-nav .owl-prev{
    left: -2rem;
    top: 42%;
    position: absolute;
}
#productthumb .owl-nav .owl-next{
    right: -2rem;
    top: 42%;
    position: absolute;
}
#productthumb .carousel .owl-item{
    display: flex;
    justify-content: center;
}
/******* Product Left Images End **********/

.tabsdetail .nav-tabs a{ 
    font-size: 1rem;
    padding: .7rem 1.5rem;
    font-weight: 300;
    border-radius: var(--bs-border-radius-xl);
    background: #F9F9F9;
    --bs-bg-opacity: .5;
    color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.tabsdetail .nav-tabs a.active{
    --bs-bg-opacity: 1;
    font-weight: 400;
}

.review-wrapper span.rating-value {
  position: absolute;
  right: 0;
  top: 50%;
    color: var(--text-grey-2); 
}
.review-wrapper .rating-text i{color: var(--accent-color); }

.ratingreview{
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}
.ratingreview > label {
    cursor: pointer;
    color: var(--grey);
    font-size: 2.2rem;
    margin: 0 .4rem;
}

.ratingreview > label:hover,
.ratingreview > label:hover ~ label,
.ratingreview > input.radio-btn:checked ~ label {
    color: var(--accent-color);
}
.ratingreviewform .form-group label{ font-size: .9rem;
    font-weight: 300; }
.ratingreviewform .form-control{
    height: 2.8rem;
    font-size: .9rem;
    font-weight: 300;
}
.ratingreviewform textarea.form-control{
    height: 5.8rem;
}
.userpic{ height: 3rem; width: 3rem; object-fit: cover; }
.reviewsmain{ grid-template-columns: repeat(3, 1fr); }
.customerreview-area .btn-yellow {
    border: 8px solid rgb(19 18 18 / 80%);
}
#similar-carousel .owl-nav{
    display: inline-flex;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
}
.thanks img{
  width: 100px;
  display: inline-block;
}
.custom-alert {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 1050; /* Ensure it's above other content */
  width: auto;
  max-width: 400px; /* Adjust the max width if needed */
  margin-bottom: 10px;
}
.cart-count {
    height: 1rem;
    width: 1rem;
    background: var(--golden);
    position: absolute;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--bs-border-radius-pill);
    color: var(--bs-body-bg);
    position: absolute;
    right: -10px;
    top: -4px;
}
/******** About Us page Start *********/
.abouthero{
    background: url(../img/product-bg.jpg) no-repeat center center;
    background-size: cover;
}
.ownershipimg img{
    width: 50px;
    height: 50px;
}
.ownershipimg img:nth-child(2), .ownershipsmallimg img:nth-child(2){
    margin-right: -1rem;
}
.ownershipimg img:nth-child(1), .ownershipsmallimg img:nth-child(1){
    margin-right: -1rem;
}
.ownershipsmallimg img{
    width: 40px;
    height: 40px;
}
.icon2{
    width: 4rem;
    height: 4rem;
}
.icon2 svg{ width: 100%; height: 100%; object-fit: cover;}
.missionbox:nth-child(2){
    margin-top: -8rem;
}
.missionbox .icon2{
    transition: all 0.35s ease-in-out;
    transform: scale(1);
}
.missionbox:hover .icon2{
    background: var(--grey);
    padding: .7rem;
    transform: scale(1.2);
}
.teamimg{
    height: 17rem;
}
.teamsocial li a {
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: all 0.35s ease-in-out;
    color: var(--text-grey-2);
    background-color: var(--grey);
}
.teamsocial li:hover a{
    color: var(--secondary-color) !important;
    background: var(--accent-color) !important;
}

.teamslider .owl-nav{
    position: absolute;
    top: -7rem;
    right: 7rem;
    display: flex;
    gap: 1rem;
}
.teamslider .owl-nav button.owl-prev, .teamslider .owl-nav button.owl-next{
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    border-radius: var(--bs-border-radius-pill);
    color: var(--black);
    transition: all 0.35s ease-in-out;
}
.teamslider .owl-nav .owl-prev:hover, .teamslider .owl-nav button.owl-next:hover{
    background: var(--accent-color);
    color: var(--secondary-color);
}
/******** About Us page End *********/

/******** Cart page start *********/

.table {
  width: 100%;
  display: table;
  margin: 0;
}

.tablerow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.tablerow .cell {
  padding: 1rem 0;
  border-bottom: 1px solid var(--bs-light-border-subtle);
  vertical-align: middle;
}

.tablerow.tblheader .cell {
    text-transform: uppercase;
    font-size: .8rem;
    color: rgba(var(--bs-black-rgb), .5);
    border-bottom: none;
}

.tablerow .cell:nth-child(1) {
  width: 40%;
}

.tablerow .cell:nth-child(2) {
  width: 15%;
}

.tablerow .cell:nth-child(3) {
  width: 15%;
}

.tablerow .cell:nth-child(4) {
  width: 15%;
}
.tablerow .cell:last-child {
  width: 10%;
    text-align: center;
}
.table, .tablerow {
  width: 100% !important;
}
.table .tablerow:last-child .cell{
  border-bottom: none;
}
.cartprd{
    width: 4rem;
    height: 4rem;
    object-position: center;
}
.couponform input{
    font-size: .9rem;
    padding: .7rem 1rem;
}
.couponform input::placeholder{
    color: rgba(var(--bs-black-rgb), .4);
}
.couponform button{
    background: #E9E9E9;
    color: rgba(var(--bs-black-rgb), .4);
}
.border-dashed{ border-style: dashed; }
/********** Cart page End  **********/

/********** Contact Us page Start  **********/
.rotate45{ transform: rotate(-45deg); }
.contacticon {
    width: 3rem;
    height: 3rem;
}
.contactform input.form-control, .contactform textarea.form-control, .checkoutform input.form-control, .checkoutform textarea.form-control{
    height: 2.5rem;
    border-radius:.7rem;
    font-size: .8rem;
}
.contactform .form-control::placeholder, .checkoutform .form-control::placeholder{
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity));
    --bs-text-opacity: .5;
}
.contactform textarea.form-controlm, .checkoutform textarea.form-control{
    height: 5rem;
}
/********** Contact Us page End  **********/

.overlaybg::before {
    content: '';
    background: linear-gradient(360deg, rgb(0 0 0 / 34%) 40%, rgb(0 0 0 / 5%) 59.91%, rgb(0 0 0 / 0%) 80.12%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: .9;
}
.logincarousel h5{
    font-size: 1.4rem;
    line-height: 1.9rem;
}
.logincarousel .owl-nav {
    display: inline-flex;
    justify-content: end;
    width: 100%;
    gap: .5rem;
    margin-top: -.5rem;
}
.logincarousel .owl-nav button{ 
    color: var(--primary-color) !important;
    --bs-bg-opacity: .2;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
    border-radius: var(--bs-border-radius-pill);
    height: 2rem;
    width: 2rem;
    border: solid 1px var(--bs-dark-border-subtle) !important;
}
.staticpages p{ font-weight: 300; margin-bottom: .6rem; font-size: .95rem; }
.staticpages h5{ font-weight: 600; margin: 1.6rem 0 .7rem; }
.staticpages ul{ }
.staticpages ul li{ 
    font-weight: 300;
    margin-bottom: .6rem;
    position: relative;
    padding-left: 1rem;
    font-size: .95rem;
 }
.staticpages ul li::before{     
    content: '-';
    position: absolute;
    left: 0;
  }
  
  /* Checkout pages start*/
  .checkoutproduct h6{
    font-size: .9rem;
  }
  .checkoutproduct .cartprd {
    width: 3.5rem;
    height: 3.5rem;
    object-position: center;
  }
  
  .payment-mode .form-check-input:checked, .shippingadd .form-check-input:checked {
      background-color: var(--orange-color);
      border-color: var(--orange-color);
  }
  .payment-mode .form-check .form-check-input {
      margin-left: 0px;
      margin-right: 8px;
      margin-top: 2px;
  }
  .payment-mode  .form-check {position:relative;
    display: block;
      min-height: initial;
      color: var(--secondary-color);
      font-size: 14px;
      font-weight: 300;
      border: 1px solid var(--bs-light-border-subtle);
      padding: 12px;
      margin-bottom: 10px;
  }
  .payment-mode .form-check-input {
      width: 1.3em;
      height: 1.3em;}
.checkoutform input.form-control, .checkoutform textarea.form-control{
    border-radius: .6rem;
}
 .theme-btn.orangebtn{ padding: .7rem; }
.addressbox.active{
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}
.addressbox .editbtn{ visibility: hidden;}
.addressbox.active .editbtn{ visibility: visible;}
.addressbox.active h6{
    color: var(--orange-color);
}
.show-more-height { 
  height: 24rem; 
  overflow-y:auto; 
}
div:where(.swal2-icon).swal2-question{
    border-color: var(--accent-color) !important;
    color: var(--accent-color) !important;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){
  background-color: var(--accent-color) !important;
  color: var(--secondary-color) !important;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover{
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel){
  background-color: transparent !important;
  color: var(--secondary-color) !important;
}
  /* Checkout pages End*/

/*  User Dashboard Css start  */
/* .tab {
    float: left;
    background-color: rgba(241, 241, 241, 0);
    width: 30%;
    height: 100% !important;
} */
.usertab{
  top: 6.5rem;
}
.usertab button {
    display: block;
    background-color: inherit;
    color: #A7A7A7;
    padding: .7rem 1.5rem;
    width: 100%;
    border: none;
    outline: none;
    transition: 0.3s;
    font-size: 1rem;
    font-weight: 400;
    border-radius: var(--bs-border-radius-xl) 0 0 var(--bs-border-radius-xl);
}
.usertab button:hover, .tab button.active {
  color: var(--secondary-color);
  background: linear-gradient(90deg, #E7E7E7 0%, #FFF 100%);
}
.vertical-align-sub{
  vertical-align: sub;
}
.order-product{
    width: 10rem;
    height: 7rem;
    overflow: hidden;
    border-radius: var(--bs-border-radius-lg);
    object-position: center;
}
.box-shadow{ box-shadow: 0 0 7.2px 7px rgba(255, 255, 255, 0.13) inset; }
/*  User Dashboard Css End  */
  
/******** Inner page Css End *********/
    .spinner {
        margin: auto;
        border: 8px solid #f3f3f3; /* Light grey */
        border-top: 8px solid #3498db; /* Blue */
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: spin 2s linear infinite;
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .tabsdetail h3{ margin-bottom: 1rem;}
    .tabsdetail ul li p{ margin-bottom: 0;}
    .tabsdetail ul li{ margin-bottom: .5rem !important; padding-left: 1.75rem; position: relative;}
    .tabsdetail ul li::before{ 
      content: "";
      position: absolute;
      top: .425em;
      left: 0;
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 999px;
      background-color: var(--bs-gray-400); 
    }
     .tabsdetail ul.row:nth-child(2) { margin: 1rem 0;}
     .product-home-details h5{
      height: 2.5rem;
      text-overflow: ellipsis;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: var(--text-line-2);
      line-clamp: var(--text-line-2);
      -webkit-box-orient: vertical;
      margin-bottom: .7rem;
     }

    .productBtn{
      font-size: 12px;
      border: 5px solid #292929;
      box-shadow: inset 0 0px 5px 1px #ddddddbd;
    }
    .productBtn.btn-black .bi-circle{
      height: 25px;
      width: 25px;
      font-size: 12px;
    }
    .productBtn .yellow-icon i{
      padding: 6px;
      font-size: 14px;
    }





  .commingsoontag {
    position: fixed;
    background-color: #efcc11;
    color: #0d0d0d;
    font-weight: 800;
    font-size: 1.2rem;
    /* padding: 15px 35px; */
    border-radius: 50px;
    display: inline-block;
    right: 0;
    margin-top: 2.5rem;
    z-index: 9999;
}

/* Small tail shape */
.commingsoontag::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 50px;
    z-index: -1;
}
.commingsoontag span{ 
    background-color: #f6d213;
    padding: 15px 35px;
    width: 100%;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    z-index: 9;
 }


 .blog-banner{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.50) 99.23%);
 }
 .blog-viewimg{ height: 25rem; }
 .blog-viewimg::before{
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.50) 99.23%);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    border-radius: var(--bs-border-radius-xl);
 }
 .blogviewdata ul li{ padding-left: 1.75rem; position: relative; margin-bottom: .5rem; }
 .blogviewdata ul li br{ display: none; }
 .blogviewdata ul li::before{
    content: "";
    position: absolute;
    top: .425em;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background-color: var(--bs-gray-400);
 }
 .blogtext h5,  .blogtext p{
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 2.5rem;
 }
 .blogtext p{
    -webkit-line-clamp: 3;
    line-clamp: 3;
    height: 4rem;
 }
  .socailshare li a{
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--bs-red);
      background-color: #F6F6F6;
      border-radius: var(--bs-border-radius-pill);
  }
  .socailshare li a:hover{ background-color: var(--accent-color); color: var(--bs-body-bg); }
  .boxshadow{ box-shadow: 0 18px 30.8px 0 rgba(0, 0, 0, 0.19); }
  .blogthumnail {
      width: 5rem;
      height: 5rem;
  }
  .blogviewtext h6:hover{ color: #F26723 !important; }
  .blogdarkbox {
    background: linear-gradient(141deg, #161616 43.42%, #424242 100%);
  }
  .blogdarkbox .btn-yellow{ border: 8px solid rgb(0 0 0 / 68%); }
  .line-clamp{
      text-overflow: ellipsis;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
    }
    .twoline{
      -webkit-line-clamp: 2;
    }
    .fourline{
      -webkit-line-clamp: 4;
    }

    .blogviewdata p, .blogviewdata ul li{
      font-size: 1rem;
      color: rgba(0, 0, 0, .5) !important;
    }
    .blogviewdata p strong{
      color: rgba(0, 0, 0, .9) !important;
    }
    .top-sticky{ top: 7rem; }

.blogviewdata h3{
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
    
    