* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #f53c03;
  --secondary-color: #09243c;
  --dark-theme: #323339;
  --light-theme: #ffffff;
  --dark-theme-text: #ffffff;
  --light-theme-text: #323339;
}

::selection {
  background-color: #f53c03;
  color: #09243c;
}

body {
  background-color: var(--light-theme);
  color: var(--light-theme-text);
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/*--------------------------------------------------------------
# Import Font
--------------------------------------------------------------*/
@font-face {
  font-family: varelaround;
  src: url(./../font/VarelaRound-Regular.ttf);
}

@font-face {
  font-family: robotoslab;
  src: url(./../font/RobotoSlab-Regular.ttf);
}

.title {
  font-family: varelaround !important;
  letter-spacing: 0.1rem;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: varelaround !important;
}

.fs-1, .fs-2, .fs-3, .fs-4, .fs-5, .fs-6 {
  font-family: varelaround !important;
}

p,
.p,
.lead,
li {
  font-family: robotoslab !important;
}

.p, p {
  font-size: 16px !important;
  text-align: justify !important;
  font-weight: lighter;
  line-height: 1.5;
  margin-bottom: 0.5rem !important;
}

/*--------------------------------------------------------------
# Scrollbar Styles
--------------------------------------------------------------*/
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--dark-theme);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/*--------------------------------------------------------------
# Bootstrap Class Customize Section
--------------------------------------------------------------*/

.form-label {
  font-family: varelaround !important;
  margin-bottom: 0.35rem !important;
}

.form-control {
  outline: none !important;
  border-color: gray !important;
  font-family: robotoslab !important;
  border-radius: 1rem !important;
}

.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--primary-color) !important;
}

.form-select {
  outline: none !important;
  box-shadow: none !important;
  border-color: gray !important;
  font-family: robotoslab !important;
  border-radius: 1rem !important;
}

.form-select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--primary-color) !important;
}

select, option {
  text-transform: capitalize !important;
}

/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
.bg-theme-primary {
  background-color: var(--primary-color) !important;
}

.bg-theme-primary-lite {
  background-color: #c6e4ff !important;
}

.text-gray {
  color: var(--text-color) !important;
}

.bg-theme-secondary {
  background-color: var(--secondary-color) !important;
}

.text-theme-primary {
  color: var(--primary-color) !important;
}

.text-theme-secondary {
  color: var(--secondary-color) !important;
}

.shadow-primary {
  box-shadow: 0 0 5px 2.5px var(--primary-color);
}

.shadow-secondary {
  box-shadow: 0 0 5px 2.5px var(--secondary-color);
}

body {
  overflow-x: hidden !important;
}

a:hover {
  color: var(--primary-color) !important;
}

.btn-theme-primary {
  background-color: var(--primary-color) !important;
  transition: 0.5s;
  color: #fff;
  font-size: large;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 1rem !important;
}

.btn-theme-primary:hover {
  background-color: transparent !important;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-color: var(--primary-color) !important;
}

.btn-outline-theme-primary {
  border: 3px solid var(--primary-color) !important;
  transition: 0.5s;
  color: var(--text-color);
  font-size: large;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 1rem;
}

.btn-outline-theme-primary:hover {
  border: 3px solid transparent !important;
  background-color: var(--primary-color) !important;
  transition: 0.5s;
  color: #fff;
  font-size: large;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 1rem;
}

.btn-light {
  background-color: #f8f9fa !important;
  transition: 0.5s;
  color: #000;
  font-family: robotoslab !important;
  border: 2px solid transparent;
  font-size: large;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 1rem !important;
}

.btn-light:hover {
  background-color: transparent !important;
  color: #f8f9fa;
  border: 2px solid #f8f9fa;
  border-color: #f8f9fa !important;
}

.border-theme-primary {
  border: 1px solid var(--primary-color);
}

.border-theme-primary-2 {
  border: 2px solid var(--primary-color);
}

.border-theme-primary-3 {
  border: 3px solid var(--primary-color);
}

.border-theme-primary-4 {
  border: 4px solid var(--primary-color);
}

.border-top-theme-primary {
  border-top: 1px solid var(--primary-color);
}

.border-bottom-theme-primary {
  border-bottom: 1px solid var(--primary-color);
}

.border-left-theme-primary {
  border-left: 1px solid var(--primary-color);
}

.border-right-theme-primary {
  border-right: 1px solid var(--primary-color);
}

.border-theme-secondary {
  border: 1px solid var(--secondary-color);
}

.border-theme-secondary-2 {
  border: 2px solid var(--secondary-color);
}

.border-theme-secondary-3 {
  border: 3px solid var(--secondary-color);
}

.border-theme-secondary-4 {
  border: 4px solid var(--secondary-color);
}

.border-top-theme-secondary {
  border-top: 1px solid var(--secondary-color);
}

.border-bottom-theme-secondary {
  border-bottom: 1px solid var(--secondary-color);
}

.border-left-theme-secondary {
  border-left: 1px solid var(--secondary-color);
}

.border-right-theme-secondary {
  border-right: 1px solid var(--secondary-color);
}

.rounded-theme {
  border-radius: 1rem !important;
}

/*--------------------------------------------------------------
# Preloader Styles
--------------------------------------------------------------*/

.content {
  display: none;
}

body.loaded .preloader-content {
  display: none;
}

body.loaded .content {
  display: block;
}

.content {
  display: block;
}

body.preloader-active {
  overflow: hidden !important;
  min-height: 100vh;
}

.preloader {
  background-color: var(--secondary-color);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
  margin: 0 auto;
}

.preloader .preloader-circle {
  width: 100px;
  height: 100px;
  position: relative;
  border-style: solid;
  border-width: 3px;
  border-top-color: var(--primary-color);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  z-index: 10;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  background-color: var(--light-theme);
  -webkit-animation: zoom 2000ms infinite ease;
  animation: zoom 2000ms infinite ease;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

.preloader .preloader-img {
  position: absolute;
  top: 50%;
  z-index: 200;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 6px;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

.preloader .preloader-img img {
  max-width: 55px;
}

.preloader .pere-text strong {
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
}

@keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }
}

/*--------------------------------------------------------------
# Banner & Title Sections
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header-bg {
  background: linear-gradient(to right, #f53c03, #09243c);
  transition: 0.5s !important;
}

.hedaer-icon {
  background-color: var(--primary-color);
  color: #ffffff;
  width: 60px;
  height: 60px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cart-btn {
  background-color: var(--light-theme);
  color: var(--secondary-color);
  font-size: 19px;
  text-transform: capitalize;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  cursor: pointer;
}

.cart-btn:hover {
  background-color: var(--light-theme);
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/

.nav-back {
  background: #cde7fd;
  background-size: contain;
  background-position: bottom;
  background-attachment: fixed;
  background-repeat: repeat;
}

.navbar {
  background-color: var(--secondary-color);
  color: var(--dark-theme-text) !important;
  border-radius: 1rem !important;
  box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

.navbar-custom {
  transition: 0.7s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.navbar-custom.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.navbar-bg {
  background-color: rgba(0, 0, 0, 0.7);
}


.navbar-icon {
  cursor: pointer;
  transition: 0.3s;
}

.nav-Widgets-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.navbar-icon:hover {
  transform: scale(1.07);
}

.navbrand-img {
  background-color: var(--light-theme);
  padding: 0.25rem;
  border-radius: 50%;
  width: 60px !important;
  height: 60px !important;
}

.nav-brand {
  color: var(--primary-color) !important;
}

.nav-brand-txt {
  width: 275px;
  height: 40px;
  font-size: 30px;
}

.navbar-nav .nav-item .nav-link {
  position: relative;
  color: white !important;
  font-size: 20px !important;
  font-weight: 600;
  background-color: transparent;
  font-family: robotoslab !important;
  padding: 0.75rem 1rem !important;
  transition: 0.3s !important;
  text-transform: capitalize !important;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-item .nav-link.active {
  background-color: var(--primary-color) !important;
  color: var(--primary-color);
}

.navbar-nav .nav-item .nav-link.active:hover {
  color: #fff !important;
}

.navbar-nav .nav-item .nav-link.active-home {
  background-color: var(--primary-color) !important;
  border-top-left-radius: 1rem !important;
  border-bottom-left-radius: 1rem !important;
  color: var(--primary-color);
}

.navbar-nav .nav-item .nav-link.active-home:hover {
  color: #fff !important;
}

.btn-navbar {
  background-color: var(--primary-color) !important;
  transition: 0.5s;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
  border-top-left-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
}

.btn-navbar:hover {
  background-color: #fff !important;
  color: var(--primary-color);
}

.offcanvas-title {
  font-size: 22px !important;
  text-transform: capitalize !important;
  font-weight: 600 !important;
}

.dropdown-menu {
  width: 230px;
  background-color: #f5f5f5 !important;
}

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

.dropdown-menu li a {
  color: var(--text-color);
  text-decoration: none !important;
}

.dropdown-item {
  color: var(--text-color) !important;
  margin-bottom: 15px !important;
  text-transform: capitalize;
}

.dropdown-item-icon {
  color: var(--primary-color) !important;
}

.dropdown-item-img {
  width: 20% !important;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  /* Initially hide the dropdown menu */
}

.dropdown-item:hover {
  background-color: var(--primary-color) !important;
  color: #f5f5f5 !important;
}

.dropdown-item:hover .dropdown-item-icon {
  color: #f5f5f5 !important;
}

.dropdown-item.active {
  background-color: var(--primary-color) !important;
  color: #f5f5f5 !important;
}

.dropdown-item.active .dropdown-item-icon {
  color: #f5f5f5 !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
}

/*--------------------------------------------------------------
  # Navbar - Mega Menu Section
  --------------------------------------------------------------*/

.mega-menu-item {
  background-color: #fff;
  color: #000;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
  font-size: 20px;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  cursor: pointer;
}

.mega-menu-item:hover {
  background-color: #f5f5f5;
  color: var(--primary-color);
}

.mega-menu-item.active {
  background-color: #f5f5f5;
  color: var(--primary-color);
}

.mega-menu-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 0.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.menu-card-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  padding: 0.75rem 0rem;
  border-top: 1px solid #ccc;
}

#mega-menu {
  display: none;
}

.nav-item:hover #mega-menu {
  display: block;
}

#mega-menu {
  transition: all 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  width: 100%;
  margin-top: 0.5rem;
}

/*--------------------------------------------------------------
  # Home - Carousel Section
  --------------------------------------------------------------*/

.home-slider {
  margin-top: -70px;
}

.home-slider video {
  width: 100%;
  height: 91vh !important;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.text-dark-blue {
  color: #005197 !important;
}

.banner-content {
  background-color: rgba(225, 225, 225, 0.7);
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-img {
  width: 85% !important;
}

.coupon-form-bg {
  background-color: rgba(0, 0, 0, 0.4);
  /* border: 2px solid var(--primary-color); */
  box-shadow: 0 0 10px 5px var(--primary-color);
}

.carousel-mini-card {
  cursor: pointer;
  transition: 0.5s;
  margin-bottom: 1.1rem;
  box-shadow: 0 0 5px 2.5px rgba(0, 0, 0, 0.4);
}

.carousel-mini-card:hover {
  transform: scale(1.03);
}

/*--------------------------------------------------------------
  # Home - About Us
  --------------------------------------------------------------*/

.btn-know-more {
  background-color: var(--primary-color) !important;
  transition: 0.5s;
  color: #fff;
  font-size: large;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0rem !important;
}

.btn-know-more:hover {
  background-color: var(--light-theme) !important;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-color: var(--primary-color) !important;
}

/*--------------------------------------------------------------
  # Home - Products
  --------------------------------------------------------------*/

.home-product-card {
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: 0.4s;
}

.home-product-card-img {
  background-color: #d6d6d6;
  display: flex;
  align-items: center;
  text-align: center !important;
  justify-content: center !important;
  padding: 0.35rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  transition: 0.4s;
}

.home-product-card-content {
  height: 100px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  text-transform: capitalize;
}

.home-product-title {
  font-size: 20px;
  color: #323339;
  font-weight: 500;
  font-family: varelaround;
}

.home-product-price {
  font-size: 18px;
  color: #000;
  font-family: robotoslab;
}

.home-products-card-button {
  width: auto;
  background-color: var(--secondary-color);
  border: none !important;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
  text-align: center;
  padding: 0.5rem 0.75rem;
  transition: 0.4s;
}

.home-products-card-button:hover {
  background-color: var(--primary-color);
  transition: 0.4s;
}

/*--------------------------------------------------------------
  # Home - Why
  --------------------------------------------------------------*/

.why-parallax {
  background-image: url(./../img/home/service-parallax.jpeg);
  background-attachment: fixed;
  background-position: center center !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.5);
}

.special-card-content {
  margin: 0.25rem 0rem;
}

/*--------------------------------------------------------------
  # Home - Service
  --------------------------------------------------------------*/

.home-service-card {
  border-radius: 1rem;
  box-shadow: 0 0 1.5px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  transition: transform 0.5s;
}

.home-service-card-img {
  position: relative;
  border-radius: 1rem;
}

.home-service-card-content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 0.25rem 0rem;
  background-color: rgba(4, 42, 91, 0.7);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}

.home-service-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: robotoslab;
  text-transform: capitalize;
  color: #fff;
  margin: 0.5rem 0rem;
}

.home-service-card:hover {
  transform: translateY(-10px);
  transition: transform 0.5s;

}

.home-service-card:hover .home-service-card-content {
  transition: transform 0.5s;
}

/*--------------------------------------------------------------
  # Home - Brand
  --------------------------------------------------------------*/

.home-brand-card {
  background-color: transparent;
  border: 1px solid #f5f5f5;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: 0.4s;
}

.home-brand-card-img {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  text-align: center !important;
  justify-content: center !important;
  padding: 0.35rem;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}

.home-brand-card-content {
  text-align: center;
  padding: 0.5rem;
  text-transform: capitalize;
}

.home-brand-title {
  font-size: 24px;
  color: #323339;
  font-weight: 500;
  font-family: varelaround;
}

.home-brand-price {
  font-size: 18px;
  color: #000;
  font-family: robotoslab;
}

.home-brand-card-button {
  width: auto;
  background-color: var(--secondary-color);
  border: none !important;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
  text-align: center;
  padding: 0.5rem 0.75rem;
  transition: 0.4s;
}

.home-brand-card-button:hover {
  background-color: var(--primary-color);
  transition: 0.4s;
}

/*--------------------------------------------------------------
  # Home - Contact Us
  --------------------------------------------------------------*/

.home-contact-section {
  background-image: url(./../img/home/contact-banner.jpg);
  background-size: cover;
  object-fit: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 1rem;
}

.get-in-touch-img {
  height: 500px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.home-contact-form {
  background-color: var(--light-theme) !important;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*--------------------------------------------------------------
  # About Us - Banner
  --------------------------------------------------------------*/

.about-section {
  background-image: url('./../img/about/home-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.why-choose-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-choose-img {
  background-color: var(--secondary-color);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 0.5rem;
}

.why-choose-content {
  padding: 0rem 0.75rem;
}

.brand-section {
  background: transparent;
  border: 1px solid var(--secondary-color);
}

.brand-card {
  background: transparent;
  border: 1px solid #ccc;
  padding: 1.25rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
  # Testimonial 
  --------------------------------------------------------------*/

.testimonial-card {
  background-color: none;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 1rem;
  height: 300px;
  margin-bottom: 1rem;
  height: auto;
}

.testimonial-content {
  width: 100%;
  height: 180px;
}

.testimonial-card-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}

/*--------------------------------------------------------------
  # How We Works
  --------------------------------------------------------------*/
.how-we-banner {
  background-image: url(./../img/banner.jfif);
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 1.5rem 0rem;
}

.how-we-content {
  background-color: rgb(0, 98, 184, 0.5);
}

.how-we-card {
  width: 200px;
  height: 200px;
  text-align: center;
  background-color: transparent;
  border: 5px solid #fff;
  border-radius: 2rem;
  transition: 0.3s;
  cursor: pointer;
  overflow: hidden;
}

.how-we-img {
  width: 100%;
  border-radius: 1rem;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform .5s cubic-bezier(.57, .04, .06, .84), opacity 0s;
  transition: transform .3s cubic-bezier(.57, .04, .06, .84), opacity 0s
}

.how-we-card:hover {
  border: 5px solid var(--primary-color);
}

.how-we-card:hover .how-we-img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1.05);
  -webkit-transition: transform .3s cubic-bezier(.57, .04, .06, .84), opacity 0s;
}

/*--------------------------------------------------------------
  # Services - Banner
  --------------------------------------------------------------*/

.service-card {
  background-color: #fff;
  color: #323339 !important;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: 0.5s;
  cursor: pointer;
  margin-bottom: 1.25rem;
}

.service-card-content {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}

.service-card-title {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: capitalize;
  padding: 0.5rem 0rem;
  border-bottom: 2px solid #f5f5f5;
  margin-bottom: 1rem;
  transition: 0.5s;
}

.service-card-link {
  color: #000;
  text-transform: capitalize;
  margin-top: 0.5rem;
  transition: 0.5s;
}

.service-card-img {
  overflow: hidden;
  transition: all 0.5s ease-out;
}

.service-card-img img {
  width: 100%;
  transform: rotate(0deg) scale(1);
  transition: all 0.5s ease-out;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.service-card:hover {
  background-color: var(--secondary-color);
  color: #fff !important;
  transition: 0.5s;
}

.service-card:hover .service-card-title {
  color: var(--primary-color) !important;
  transition: 0.5s;
}

.service-card:hover .service-card-link {
  color: var(--primary-color) !important;
  transition: 0.5s;
}

.service-card:hover .service-card-img img {
  transform: rotate(1deg) scale(1.05);
  transition: all 0.5s ease-out;
}

.service-cta-banner {
  background-image: url(./../img/service/service-banner.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.2);
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 1rem;
}

.cta-btn .cc-calto-action-ripple {
  background: var(--primary-color);
  height: 75px;
  width: 75px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #fff;
  position: relative;
  animation: cc-calto-action-ripple 0.6s linear infinite;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 1.25rem;
}

.cta-btn .cc-calto-action-ripple {
  transition: 0.3s ease;
  color: #fff;
}

.cta-btn .cc-calto-action-ripple:hover {
  color: var(--secondary-color) !important;
}

@-webkit-keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

@keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

.cta-main-btn {
  background-color: var(--primary-color) !important;
  transition: 0.5s;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 1rem !important;
  text-transform: capitalize;
  margin: 0.5rem 0rem !important;
}

.btn-theme-primary:hover {
  background-color: transparent !important;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-color: var(--primary-color) !important;
}

.product-main-card {
  cursor: pointer;
  position: relative;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.product-main-img {
  overflow: hidden;
  transition: all 0.5s ease-out;
}

.product-main-img img {
  width: 100%;
  transform: rotate(0deg) scale(1);
  transition: all 0.5s ease-out;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.product-main-card img {
  border-radius: 1rem;
  width: 100%;
}

.product-main-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1rem;
  margin: 0.35rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  text-align: center;
}

.product-main-card:hover .product-main-img img {
  transform: scale(1.05);
  transition: all 0.5s ease-out;
}

.service-main-card {
  cursor: pointer;
  position: relative;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.service-main-img {
  overflow: hidden;
  transition: all 0.5s ease-out;
}

.service-main-img img {
  width: 100%;
  transform: rotate(0deg) scale(1);
  transition: all 0.5s ease-out;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.service-main-card img {
  border-radius: 1rem;
  width: 100%;
}

.service-main-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 0.5rem 1rem;
  margin: 0.35rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  text-align: center;
}

.service-main-card:hover .service-main-img img {
  transform: scale(1.05);
  transition: all 0.5s ease-out;
}

/*--------------------------------------------------------------
  # service - Inverter Section
  --------------------------------------------------------------*/

.works-banner {
  background-image: url(./../img/service/works-banner.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
}

.works-card {
  cursor: pointer;
  position: relative;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.works-img {
  overflow: hidden;
  transition: all 0.5s ease-out;
}

.works-img img {
  width: 100%;
  transform: rotate(0deg) scale(1);
  transition: all 0.5s ease-out;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.works-card img {
  border-radius: 1rem;
  width: 100%;
}

.works-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1rem;
  margin: 0.35rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  text-align: center;
}

.works-card:hover .works-img img {
  transform: scale(1.05);
  transition: all 0.5s ease-out;
}


.accordion-item {
  border-radius: 1rem !important;
  margin-bottom: 1rem !important;
}

.accordion-item .accordion-header .accordion-button {
  background-color: var(--secondary-color);
  color: #fff !important;
  border-radius: 1rem !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
  padding: 0.75rem 0.75rem !important;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed) {
  color: #fff !important;
  background-color: var(--primary-color) !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(4, 42, 91, 0.6) !important;
}

.accordion-button.expanded {
  color: #fff !important;
  background-color: var(--primary-color) !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(4, 42, 91, 0.6) !important;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e") !important;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e") !important;
}

.accordion-button:focus {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(4, 42, 91, 0.6) !important;
  border-color: rgba(0, 0, 0, .125);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e") !important;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e") !important;
}

/*--------------------------------------------------------------
  # Products - Section
  --------------------------------------------------------------*/

.product-fliter-section {
  border: 1px solid #ccc;
  border-radius: 1rem;
  display: flex;
  align-items: center;
}

.product-filter-btn {
  background-color: transparent;
  color: #323339;
  font-size: 19px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0.25rem 1rem;
  cursor: pointer;
  transition: 0.5s;
  border-radius: 1rem;
}

.product-filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--light-theme);
  transition: 0.5s;
}

.product-filter-btn.active {
  background-color: var(--primary-color);
  color: var(--light-theme);
  transition: 0.5s;
}

.product-card {
  background-color: transparent;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: 0.4s;
}

.product-card-img {
  background-color: #d6d6d6;
  padding: 0.35rem;
  border-radius: 0.5rem;
  transition: 0.4s;
}

.product-card-content {
  height: 125px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  text-transform: capitalize;
}

.product-title {
  font-size: 19px;
  color: #323339;
  font-weight: 500;
  font-family: varelaround;
}

.product-price {
  font-size: 18px;
  color: #000;
  font-family: robotoslab;
}

.products-card-button {
  width: auto;
  background-color: var(--secondary-color);
  border: none !important;
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
  padding: 0.5rem 0.75rem;
  transition: 0.4s;
}

.products-card-button:hover {
  background-color: var(--primary-color);
  transition: 0.4s;
}

/*--------------------------------------------------------------
  # Exide Product
  --------------------------------------------------------------*/

.exide-card-content {
  height: 100px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
  # amaze Product
  --------------------------------------------------------------*/

.amaze-card-content {
  height: 110px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
  # V-Guard Product
  --------------------------------------------------------------*/

.v-guard-card-content {
  height: 100px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
  # Microtek Product
  --------------------------------------------------------------*/

.microtek-card-content {
  height: 100px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
  # Eastman Product
  --------------------------------------------------------------*/

.eastman-card-content {
  height: 100px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
  # Supreme Product
  --------------------------------------------------------------*/

.supreme-card-content {
  height: 110px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
  # Ro Plant Product
  --------------------------------------------------------------*/

.ro-plant-card-content {
  height: 110px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
  # Cart Section
  --------------------------------------------------------------*/
.cart-card {
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.cart-card-img {
  text-align: center;
  padding: 0rem 0.25rem;
  background: #f5f5f5;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.cart-card-img img {
  width: 200px;
  height: 200px;
}

.cart-card-content {
  padding: 0.5rem;
}

.cart-divider {
  border-right: 1px solid #ccc;
}

.cart-trash {
  font-size: 18px;
  text-transform: capitalize;
  text-decoration: underline;
  color: red;
  cursor: pointer;
}

.cart-card.removed {
  opacity: 0;
  transform: scale(0.8);
}

.cart-input {
  border-radius: 0rem !important;
  text-align: center !important;
}

.btn-cart {
  background-color: var(--primary-color) !important;
  transition: 0.5s;
  color: #fff;
  font-size: large;
  font-weight: 700;
  padding: 0.5rem 1rem;
  text-transform: capitalize;
  border-radius: 0.15rem !important;
}

.btn-cart:hover {
  background-color: transparent !important;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-color: var(--primary-color) !important;
}

/*------------------------------------------------------------------- 
Checkout Section
-------------------------------------------------------------------*/

.checkout-form {
  border: 1px solid var(--secondary-color);
  border-radius: 1rem;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.checkout-card {
  border-bottom: 1px solid var(--secondary-color);
  padding: 0.35rem;
  margin-bottom: 1rem;
}

.order-list-header {
  background-color: var(--secondary-color);
  color: var(--light-theme);
  padding: 0.5rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.order-list-content {
  padding: 0.25rem;
}

.order-list-footer {
  background-color: var(--secondary-color);
  color: var(--light-theme);
  padding: 0.25rem 0.75rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

/*------------------------------------------------------------------- 
Slider Gallery 
-------------------------------------------------------------------*/
.arrow-btn {
  width: auto;
  background-color: var(--secondary-color);
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin-left: 0.25rem;
  margin-bottom: 1.25rem;
  cursor: pointer;
}

/*------------------------------------------------------------------- 
Career Section
-------------------------------------------------------------------*/

.career-card {
  border: 1px solid #ccc;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 1rem;
}

.career-card-icon {
  background-color: var(--secondary-color);
  color: var(--light-theme);
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 1rem;
  margin: 0.5rem 0rem;
}

.career-card-title {
  font-size: 24px;
  text-align: center;
  font-family: varelaround !important;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: 0.5rem;
}

.career-card-desc {
  font-size: 20px;
  font-family: robotoslab !important;
  text-transform: capitalize;
  color: #323339;
  margin-bottom: 1rem;
}

.career-card-btn {
  width: 100%;
  background-color: var(--primary-color) !important;
  transition: 0.5s;
  color: #fff;
  font-size: large;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
}

.career-card-btn:hover {
  background-color: transparent !important;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-color: var(--primary-color) !important;
}

.career-form {
  border: 1px solid var(--secondary-color);
  border-radius: 1rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
  # Contact 
  --------------------------------------------------------------*/

.contact-banner {
  background-image: url(./../img/contact/contact-banner.jpg);
  height: 40vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.contact-card {
  background-color: var(--secondary-color);
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
  padding: 0.75rem;
  text-align: center;
}

.contact-card-primary {
  background-color: #d66543;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
  padding: 0.75rem;
  text-align: center;
}

.contact-card-content {
  height: 100px;
  display: flex;
  align-items: center;
}

.contact-img {
  object-fit: cover;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.animated-image {
  animation: slideInRight 1s ease-out forwards;
}


.contact-form {
  /* height: 550px; */
}

.contact-form-btn {
  background-color: var(--primary-color) !important;
  transition: 0.5s;
  color: #fff;
  font-size: large;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
}

.contact-form-btn:hover {
  background-color: transparent !important;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-color: var(--primary-color) !important;
}

.contact-information {
  background-color: #f4f9fc;
  padding: 1.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  height: 550px;
  margin-bottom: 1rem;
}

.contact-map {
  width: 100%;
  height: 550px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: 0.3s;
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
.footer-section {
  background-color: var(--secondary-color) !important;
  border-radius: 1rem;
}

.footer-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-txt {
  color: var(--dark-theme-text);
  font-family: robotoslab !important;
  font-size: 18px;
  text-decoration: none;
}

.footer-link {
  color: var(--dark-theme-text);
  font-family: robotoslab !important;
  font-size: 18px;
  text-decoration: none;
}

.footer-img {
  width: 30%;
}

.foot-svg-txt {
  width: 275px;
  height: 40px;
  font-size: 30px;
}

.footer-title {
  color: var(--secondary-color);
  font-size: 22px;
  font-family: varelaround;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.footer-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 45px;
  background: var(--secondary-color);
}

.social-icon {
  color: var(--light-theme);
  font-size: 1.25rem;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icon:hover {
  color: var(--primary-color);
}

.footer-bg-secondary {
  background-color: #4c4174;
}

.company-link {
  font-size: 20px !important;
  font-family: varelaround;
}

.company-link:hover {
  color: var(--secondary-color) !important;
}

/*--------------------------------------------------------------
  # Widgets
  --------------------------------------------------------------*/

.mobile-widget {
  background-color: rgba(9, 36, 60, 0.8);
  padding: 1rem 0.75rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.15);
}

.widget-icon {
  width: 40px;
  height: 35px;
  margin: 0rem 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 22px;
  text-decoration: none;
  color: var(--light-theme) !important;
  box-shadow: 0 1rem 0.5rem rgba(0, 0, 0, 0.15);
}

.widget-icon-call {
  background-color: dodgerblue !important;
}

.widget-icon-whatsapp {
  background-color: #2cd46b !important;
}

.widget-icon-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.widget-icon-cart {
  background-color: var(--primary-color);
}

.widget-icon-product {
  background-color: #106aff;
}

.widget-icon:hover {
  color: var(--light-theme) !important;
}