/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Local Fonts */
@font-face {
    font-family: 'Harlow Solid Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Harlow Solid Italic'), url('../fonts/HARLOWSI_1.woff') format('woff');
  }
  
  @font-face {
      font-family: 'Bauhaus 93 Regular';
      font-style: normal;
      font-weight: normal;
      src: local('Bauhaus 93 Regular'), url('../fonts/Bauhaus_93_Regular.ttf') format('ttf');
  }
  
  @font-face {
    font-family: 'Bauhaus 93';
    font-style: normal;
    font-weight: normal;
    src: local('Bauhaus 93'), url('../fonts/BAUHS93.ttf') format('ttf');
  }
  
  @font-face {
    font-family: 'Baumans Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Baumans Regular'), url('../fonts/Baumans-Regular.ttf') format('ttf');
  }

/* Fonts */
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto,
                     "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans",
                      sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
                      "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Nunito",  sans-serif;
}

/*  
    Global Colors - The following color variables are used throughout the website.
    Updating them here will change the color scheme of the entire website
*/
:root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0065AD; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 
    Nav Menu Colors - The following color variables are used specifically for the navigation menu.
    They are separate from the global colors to allow for more customization options
*/
:root {
    --nav-color: #0065AD;  /* The default color of the main navmenu links */
    --nav-hover-color: #FE6500; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #0065AD; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #FE6500; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/*
    Brand colors: Colors that represent the company brand.
*/


/* 
    Color Presets - These classes override global colors when applied to any section or element,
    providing reuse of the sam color scheme. 
*/

.light-background {
    --background-color: #f7f7f7;
    --surface-color: #ffffff;
}
  
  .dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}
  
  .accent-background {
    --background-color: #0065AD;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #00B6F2;
    --contrast-color: #ffffff;
}



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


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.logo-send-email {
  font-family: 'Harlow Solid Italic';
}


/* PHP Email Form Messages
------------------------------*/
/* 
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
  
  .php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}
  
  .php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}
  
  .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}
  
  @keyframes php-email-form-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
}
   */

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
  
.header .logo {
    line-height: 1;
}
  
.header .logo img {
    max-height: 48px;
    margin-right: 8px;
}
  
.header .logo h1 {
    font-size: 26px;
    margin: 0;
    font-weight: 700;
    /* text-transform: uppercase; */
    font-family: 'Harlow Solid Italic';
    color: var(--heading-color);
}
  
.header .logo span {
    color: var(--accent-color);
    font-size: 26px;
    font-weight: 700;
}
  
.header .header-social-links {
    padding: 0 0 0 15px;
}
  
.header .header-social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding-left: 10px;
    display: inline-block;
    transition: 0.3s;
    font-size: 16px;
}
  
.header .header-social-links a:hover {
    color: var(--accent-color);
  }
  
.header .header-social-links a i {
    line-height: 0px;
}

.header .header-social-links i {
    font-size: xx-large;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--accent-color);
  font-size: 14px;
  font-family: 'Baumans Regular';
  padding: 6px 20px;
  margin: 0 0 0 20px;
  border-radius: 40px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.header .btn-getregister,
.header .btn-getregister:focus {
  color: var(--nav-hover-color);
  font-size: 14px;
  font-family: 'Baumans Regular';
  padding: 6px 20px;
  margin: 0 0 0 20px;
  border-radius: 40px;
  transition: 0.3s;
  border: 2px solid var(--nav-hover-color);
}

.header .btn-getregister:hover,
.header .btn-getregister:focus:hover {
  color: var(--contrast-color);
  background: var(--nav-hover-color);
}
  
@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }
  
    .header .logo h1 {
      font-size: 24px;
    }
  
    .header .header-social-links {
      order: 2;
      padding: 0 15px 0 0;
    }
  
    .header .navmenu {
      order: 3;
    }
/* 
    .header .btn-getstarted {
        order: 1;
        margin: 0 12px 0 0;
        padding: 6px 10px;
      }

      .header .btn-getregister {
        order: 2;
        margin: 0 12px 0 0;
        padding: 6px 10px;
      } */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .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: 18px 15px;
      font-size: 16px;
      /* font-family: var(--nav-font); */
      font-family: 'Baumans Regular';
      text-transform: uppercase;
      font-weight: 600;
      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;
      transition: 0.3s;
    }
  
    .navmenu li:last-child a {
      padding-right: 0;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-hover-color);
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: var(--nav-dropdown-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(--nav-dropdown-hover-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }

    .navmenu .shooping-car {
      position: relative;
      padding-right: 0%;
      width: 40px;
    }

    .navmenu .shooping-car-item {
      position: absolute;
      top: 10%;
      left: 100%;
    }
  }

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--nav-color);
      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(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: 'Baumans Regular';
      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: 15px;
      right: 15px;
      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 .shooping-car-item {
      position: relative;
      top: 0%;
      left: -85%;
      
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
  }
  
  .footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
  }
  
  .footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
  }
  
  .footer .footer-about .logo h1 span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Harlow Solid Italic';
  }

.footer .footer-about .logo h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Harlow Solid Italic';
}
  
  .footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
  }
  
  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
  }
  
  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    font-family: 'Baumans Regular';
    color: var(--nav-hover-color);
    position: relative;
    padding-bottom: 12px;
  }
  
  .footer .footer-links {
    margin-bottom: 30px;
  }
  
  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
  }
  
  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  .footer .footer-links ul a {
    font-family: 'Baumans Regular';
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    display: inline-block;
    line-height: 1;
  }
  
  .footer .footer-links ul a:hover {
    color: var(--nav-hover-color);
  }
  
  .footer .footer-contact p {
    margin-bottom: 5px;
    color: var(--accent-color);
  }
  
  .footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--surface-color);
    transition: 0.3s;
  }
  
  .footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
  }
  
  .footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--surface-color);
    color: var(--default-color);
  }
  
  .footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
  }
  
  .footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0; 
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
  }
  
  .footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
  
  .footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .footer .copyright p {
    margin-bottom: 0;
    color: var(--accent-color);
  }
  
  .footer .credits {
    margin-top: 6px;
    font-size: 13px;
    color: var(--accent-color);
  }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
  }
  
  .scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
  }
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
  }
  
  .page-title h1 {
    font-size: 24px;
    font-weight: 700;
  }
  
  .page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
  }
  
  .page-title .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  font-family: 'Baumans Regular';
  color: var(--accent-color);
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Baumans Regular';
  color: var(--accent-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
  }
  
  .hero .carousel {
    width: 100%;
    min-height: calc(100vh - 75px);
    padding: 0;
    margin: 0;
    position: relative;
  }
  
  @media (max-height: 500px),
  (max-width: 1200px) {
    .hero .carousel {
      min-height: calc(100vh - 48px);
    }
  }
  
  .hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  
  .hero .container {
    background: color-mix(in srgb, var(--surface-color), transparent 40%);
    position: relative;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 50px;
    border-top: 4px solid var(--accent-color);
    z-index: 3;
  }
  
  @media (max-width: 1200px) {
    .hero .container {
      margin-left: 50px;
      margin-right: 50px;
    }
  }
  
  .hero h2 {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
  }
  
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 30px;
    }
  }
  
  .hero .btn-get-started {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    transition: 0.5s;
    margin: 10px;
    border-radius: 30px;
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
  }
  
  .hero .btn-get-started:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
  }

  .hero .btn-get-started-store {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    transition: 0.5s;
    margin: 10px;
    border-radius: 30px;
    color: #13e62f;
    border: 2px solid #13e62f;
  }
  
  .hero .btn-get-started-store:hover {
    background: #13e62f;
    color: var(--contrast-color);
  }
  
  .hero .carousel-control-prev {
    justify-content: start;
  }
  
  @media (min-width: 640px) {
    .hero .carousel-control-prev {
      padding-left: 15px;
    }
  }
  
  .hero .carousel-control-next {
    justify-content: end;
  }
  
  @media (min-width: 640px) {
    .hero .carousel-control-next {
      padding-right: 15px;
    }
  }
  
  .hero .carousel-control-next-icon,
  .hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 50px;
    color: var(--contrast-color);
    transition: 0.3s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    transition: 0.3s;
    opacity: 0.5;
  }
  
  .hero .carousel-control-prev:focus,
  .hero .carousel-control-next:focus {
    opacity: 0.5;
  }
  
  .hero .carousel-control-prev:hover,
  .hero .carousel-control-next:hover {
    opacity: 0.9;
  }
  
  .hero .carousel-control-prev:hover .carousel-control-next-icon,
  .hero .carousel-control-prev:hover .carousel-control-prev-icon,
  .hero .carousel-control-next:hover .carousel-control-next-icon,
  .hero .carousel-control-next:hover .carousel-control-prev-icon {
    background: var(--accent-color);
    color: var(--default-color);
  }
  
  .hero .carousel-indicators li {
    cursor: pointer;
    background: var(--default-color);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
  }
  
  .hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--accent-color);
  }

  section .carousel-item h2 {
    font-family: 'Baumans Regular';
  }


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Baumans Regular';
    text-transform: uppercase;
    color: var(--accent-color);
    margin: 30px 0;
  }
  
  @media (min-width: 991px) {
    .about .inner-title {
      max-width: 65%;
      margin: 0 0 80px 0;
    }
  }
  
  .about .our-story {
    padding: 40px;
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  }
  
  @media (min-width: 991px) {
    .about .our-story {
      padding-right: 35%;
    }
  }
  
  .about .our-story h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
  }
  
  .about .our-story h3 {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: 'Baumans Regular';
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
  
  .about .our-story p:last-child {
    margin-bottom: 0;
  }
  
  .about ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .about ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
  }
  
  .about ul i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    line-height: 1.2;
    color: var(--accent-color);
  }
  
  .about .watch-video i {
    font-size: 2rem;
    transition: 0.3s;
    color: var(--accent-color);
  }
  
  .about .watch-video a {
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-left: 8px;
    transition: 0.3s;
  }
  
  .about .watch-video:hover a {
    color: var(--accent-color);
  }
  
  .about .about-img {
    min-height: 400px;
    position: relative;
  }
  
  @media (min-width: 992px) {
    .about .about-img {
      position: absolute;
      top: 0;
      right: 0;
      min-height: 300px;
      margin-bottom: 20%;
    }
  }
  
  .about .about-img img {
    position: absolute;
    inset: 0;
    display: block;
    width: 95%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
  }

  .about-img-new img {
    height: 536px;
    width: 536px;
  }

  @media (max-width: 768px) {
    .about-img-new img {
      height: 400px;
      width: 400px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
    position: relative;
    min-height: 400px;
  }
  
  .features .features-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 130%;
    object-fit: cover;
    z-index: 1;
  }
  
  .features .features-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 0 5px 0;
  }
  
  .features .features-item svg {
    font-size: 48px;
    color: var(--accent-color);
    margin-right: 20px;
    line-height: 0;
  }
  
  .features .features-item p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
  }


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    position: relative;
    background-color: var(--contrast-color);
  }
  
  .stats img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 1;
  }
  
  .stats:before {
    content: "";
    
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  .stats .container {
    position: relative;
    z-index: 3;
  }
  
  .stats .subheading {
    text-align: center;
  }
  
  .stats .subheading h3 {
    font-weight: 700;
    font-size: 36px;
    font-family: 'Baumans Regular';
    color: var(--accent-color);
    text-transform: uppercase;
  }
  
  .stats .stats-item {
    padding: 30px;
    width: 100%;
  }
  
  .stats .stats-item span {
    font-size: 48px;
    display: block;
    color: var(--nav-hover-color);
    font-weight: 700;
  }
  
  .stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
  }

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
  }
  
  .clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
  }
  
  .clients .swiper-wrapper {
    height: auto;
  }
  
  .clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  }
  
  .clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
  }
  
  .services .service-item .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
  }
  
  .services .service-item .icon span svg {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
  }
  
  .services .service-item .icon svg {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .services .service-item .icon svg path {
    transition: 0.5s;
    fill: color-mix(in srgb, var(--default-color), transparent 95%);
  }
  
  .services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    color: var(--accent-color);
    font-family: 'Baumans Regular';
  }
  
  .services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .services .service-item:hover {
    box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
  }
  
  .services .service-item.item-cyan span path {
    fill: #0dcaf0;
  }

  .services .service-item.item-cyan:hover .icon span path {
    fill: #fff;
  }
  
  .services .service-item.item-cyan:hover .icon path {
    fill: #0dcaf0;
  }
  
  .services .service-item.item-orange span path {
    fill: #fd7e14;
  }
  
  .services .service-item.item-orange:hover .icon span path {
    fill: #fff;
  }
  
  .services .service-item.item-orange:hover .icon path {
    fill: #fd7e14;
  }
  
  .services .service-item.item-teal span path {
    fill: #20c997;
  }
  
  .services .service-item.item-teal:hover .icon span path {
    fill: #fff;
  }
  
  .services .service-item.item-teal:hover .icon path {
    fill: #20c997;
  }
  
  .services .service-item.item-red span path {
    fill: #df1529;
  }
  
  .services .service-item.item-red:hover .icon span path {
    fill: #fff;
  }
  
  .services .service-item.item-red:hover .icon path {
    fill: #df1529;
  }
  
  .services .service-item.item-indigo span path {
    fill: #6610f2;
  }
  
  .services .service-item.item-indigo:hover .icon span path {
    fill: #fff;
  }
  
  .services .service-item.item-indigo:hover .icon path {
    fill: #6610f2;
  }
  
  .services .service-item.item-pink span path {
    fill: #f3268c;
  }
  
  .services .service-item.item-pink:hover .icon span path {
    fill: #fff;
  }
  
  .services .service-item.item-pink:hover .icon path {
    fill: #f3268c;
  }


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 15px;
    position: relative;
    height: 100%;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    margin-right: 15px;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
  }
  
  .testimonials .testimonial-item .stars {
    margin: 10px 0;
  }
  
  .testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
  
  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
  }
  
  .testimonials .swiper-wrapper {
    height: auto;
  }
  
  .testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }
  
  @media (max-width: 767px) {
    .testimonials .testimonial-wrap {
      padding-left: 0;
    }
  
    .testimonials .testimonial-item {
      padding: 30px;
      margin: 15px;
    }
  
    .testimonials .testimonial-item .testimonial-img {
      position: static;
      left: auto;
    }
  }

  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .contact {
    padding-top: 0;
  }
  
  .contact .info {
    background-color: var(--surface-color);
    padding: 40px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .contact .info h3 {
    font-weight: 600;
    font-size: 24px;
  }
  
  .contact .info p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 30px;
    font-size: 15px;
  }
  
  .contact .info-item+.info-item {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .contact .info-item i {
    font-size: 24px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
    margin-right: 20px;
  }
  
  .contact .info-item h4 {
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .contact .php-email-form {
    width: 100%;
  }
  
  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }
/*   
  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email],
  .contact .php-email-form textarea {
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 0px;
    box-shadow: none;
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  }
  
  .contact .php-email-form input[type=text]:focus,
  .contact .php-email-form input[type=email]:focus,
  .contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
  }
  
  .contact .php-email-form input[type=text]::placeholder,
  .contact .php-email-form input[type=email]::placeholder,
  .contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
  
  .contact .php-email-form input[type=text],
  .contact .php-email-form input[type=email] {
    height: 48px;
    padding: 10px 15px;
  }
  */
  .contact .php-email-form textarea {
    padding: 10px 12px;
    height: 290px;
  }
   /* 
  .contact .php-email-form button[type=submit] {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 0;
    padding: 13px 50px;
    transition: 0.4s;
    border-radius: 4px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  }
   */

  /*--------------------------------------------------------------
  # User Image
  --------------------------------------------------------------*/
   .circular-portrait-40 {
    width: 40px;
    height: 40px;
    border-radius: 50% 50%;
  }

  .circular-portrait-100 {
    width: 100px;
    height: 100px;
    border-radius: 0.5rem !important;
  }

  .file-field input[type=file] {
    max-width: 230px;
    position: absolute;
    cursor: pointer;
    filter: alpha(opacity=0);
    opacity: 0;
    padding-bottom: 30px;
}

  /*--------------------------------------------------------------
  # Category - Product / ECommerce_App
  --------------------------------------------------------------*/
  .ezy__epcategory11 {
    /* Bootstrap variables */
    --bs-body-color: #212529;
    --bs-body-bg: rgb(255, 255, 255);
  
    /* Easy Frontend variables */
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
  
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    overflow: hidden;
    position: relative;
    padding: 100px 0;
    z-index: 1;
  }
  
  /* Gray Block Style */
  .gray .ezy__epcategory11,
  .ezy__epcategory11.gray {
    /* Bootstrap variables */
    --bs-body-bg: rgb(246, 246, 246);
  }
  
  /* Dark Gray Block Style */
  .dark-gray .ezy__epcategory11,
  .ezy__epcategory11.dark-gray {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(30, 39, 53);
  }
  
  /* Dark Block Style */
  .dark .ezy__epcategory11,
  .ezy__epcategory11.dark {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(11, 23, 39);
  }
  
  .ezy__epcategory11-heading {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
  }
  
  @media (min-width: 768px) {
    .ezy__epcategory11-heading {
      font-size: 48px;
    }
  }
  
  .ezy__epcategory11-card-one {
    background-color: #f5910c;
    border-radius: 10px;
    min-height: 280px;
    color: #fff;
    z-index: 1;
  }
  .ezy__epcategory11-card-two {
    background-color: #e82727;
    border-radius: 10px;
    min-height: 280px;
    color: #fff;
    z-index: 1;
  }
  .ezy__epcategory11-card-three {
    background-color: #063a8f;
    border-radius: 10px;
    min-height: 585px;
    height: 100%;
    color: #fff;
    z-index: 1;
  }
  .ezy__epcategory11-img-one {
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: -1;
  }
  .ezy__epcategory11-img-three {
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: -1;
  }
  .ezy__epcategory11-card-one-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .ezy__epcategory11-card-three-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .ezy__epcategory11-btn-one,
  .ezy__epcategory11-btn-two,
  .ezy__epcategory11-btn-three {
    font-size: 16px;
    font-weight: bold;
    background-color: #fff;
    color: rgb(245, 145, 12);
    border-radius: 8px;
    padding: 13px 25px;
    line-height: 1;
    cursor: pointer;
  }
  .ezy__epcategory11-btn-two {
    color: #e82727;
  }
  .ezy__epcategory11-btn-three {
    background-color: #ff2556;
    color: #fff;
  }
  .ezy__epcategory11-btn-one:hover {
    color: rgb(245, 145, 12);
  }
  .ezy__epcategory11-btn-two:hover {
    color: #e82727;
  }
  .ezy__epcategory11-btn-three:hover {
    color: #fff;
  }
  
  .ezy__epcategory11-card-two-circle1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .ezy__epcategory11-card-two-circle2 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }

  /*-------------------------------*/
  .ezy__epcategory2 {
    /* Bootstrap variables */
    --bs-body-color: #23262f;
    --bs-body-bg: #fff;
  
    /* Easy Frontend variables */
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
    --ezy-card-bg: transparent;
    --ezy-card-border-color: #e5e5e5;
  
    background-color: var(--bs-body-bg);
    padding: 60px 0;
  }
  
  @media (min-width: 768px) {
    .ezy__epcategory2 {
      padding: 100px 0;
    }
  }
  
  /* Gray Block Style */
  .gray .ezy__epcategory2,
  .ezy__epcategory2.gray {
    /* Bootstrap variables */
    --bs-body-bg: rgb(246, 246, 246);
  }
  
  /* Dark Gray Block Style */
  .dark-gray .ezy__epcategory2,
  .ezy__epcategory2.dark-gray {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(30, 39, 53);
  
    /* Easy Frontend variables */
    --ezy-card-border-color: #1e324d;
  }
  
  /* Dark Block Style */
  .dark .ezy__epcategory2,
  .ezy__epcategory2.dark {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(11, 23, 39);
  
    /* Easy Frontend variables */
    --ezy-card-border-color: #1e324d;
  }
  
  .ezy__epcategory2-heading {
    font-size: 25px;
    line-height: 25px;
    font-weight: 700;
    color: var(--bs-body-color);
  }
  
  @media (min-width: 768px) {
    .ezy__epcategory2-heading {
      font-size: 40px;
      line-height: 45px;
    }
  }
  
  .ezy__epcategory2 a {
    text-decoration: none;
  }
  
  .ezy__epcategory2-card {
    border-radius: 10px;
    background-color: var(--ezy-card-bg);
    border-color: var(--ezy-card-border-color);
  }
  
  .ezy__epcategory2-card-img {
    height: 200px;
    width: auto;
    border-radius: 10px;
  }
  .ezy__epcategory2-card-img img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
  }
  
  .ezy__epcategory2-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: var(--bs-body-color);
  }
  
  .ezy__epcategory2-btn {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--bs-body-color);
  }
  
  .ezy__epcategory2-btn:hover {
    color: var(--ezy-theme-color);
  }

  /*-----------------------------------------*/
  .ezy__epgrid11 {
    /* Bootstrap variables */
    --bs-body-color: #212529;
    --bs-body-bg: rgb(255, 255, 255);
  
    /* Easy Frontend variables */
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
    --ezy-card-bg: #ffffff;
    --ezy-card-shadow: 0px 6px 44px rgba(173, 174, 197, 0.2);
    --ezy-img-bg: #f8f8f8;
    --ezy-border-color: #e8e7f3;
  
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    z-index: 1;
  }
  
  @media (min-width: 768px) {
    .ezy__epgrid11 {
      padding: 100px 0;
    }
  }
  
  /* Gray Block Style */
  .gray .ezy__epgrid11,
  .ezy__epgrid11.gray {
    /* Bootstrap variables */
    --bs-body-bg: rgb(246, 246, 246);
  }
  
  /* Dark Gray Block Style */
  .dark-gray .ezy__epgrid11,
  .ezy__epgrid11.dark-gray {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(30, 39, 53);
  
    /* Easy Frontend variables */
    --ezy-card-bg: rgb(30, 39, 53);
    --ezy-card-shadow: 0px 6px 44px rgba(0, 0, 0, 0.2);
    --ezy-img-bg: #242e3e;
    --ezy-border-color: rgba(255, 255, 255, 0.15);
  }
  
  /* Dark Block Style */
  .dark .ezy__epgrid11,
  .ezy__epgrid11.dark {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(11, 23, 39);
  
    /* Easy Frontend variables */
    --ezy-card-bg: rgb(30, 39, 53);
    --ezy-card-shadow: 0px 6px 44px rgba(0, 0, 0, 0.2);
    --ezy-img-bg: #242e3e;
    --ezy-border-color: rgba(255, 255, 255, 0.15);
  }
  
  .ezy__epgrid11-heading {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
  }
  
  @media (min-width: 768px) {
    .ezy__epgrid11-heading {
      font-size: 48px;
    }
  }
  
  .ezy__epgrid11-item {
    background-color: var(--ezy-card-bg);
    box-shadow: var(--ezy-card-shadow);
    border: 1px solid var(--ezy-border-color);
    border-radius: 10px;
    overflow: hidden;
  }
  .ezy__epgrid11-img {
    background-color: var(--ezy-img-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 265px;
  }
  
  .ezy__epgrid11-item-discount {
    background-color: #ff2556;
    color: #fff;
    position: absolute;
    top: 20px;
    left: 0;
    border-radius: 0 7px 7px 0;
  }
  
  .ezy__epgrid11-content a {
    text-decoration: none;
    color: var(--bs-body-color);
    transition: 0.4s;
  }
  .ezy__epgrid11-content a:hover {
    color: var(--ezy-theme-color);
  }
  .ezy__epgrid11-content h6 {
    font-size: 17px;
  }
  .ezy__epgrid11-rating {
    font-size: 14px;
    color: #ffd451;
  }
  
  .ezy__epgrid11-overlay {
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    opacity: 0;
  }
  .ezy__epgrid11-item-overlay {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .ezy__epgrid11-img:hover .ezy__epgrid11-overlay {
    opacity: 1;
  }
   /*----------------------------------------------------------*/
   .ezy__epgrid12 {
    /* Bootstrap variables */
    --bs-body-color: #212529;
    --bs-body-bg: rgb(255, 255, 255);
  
    /* Easy Frontend variables */
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
    --ezy-card-bg: #ffffff;
    --ezy-card-shadow: 0px 6px 44px rgba(173, 174, 197, 0.2);
    --ezy-img-bg: #f8f8f8;
    --ezy-border-color: rgba(0, 0, 0, 0.1);
  
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    z-index: 1;
  }
  
  @media (min-width: 768px) {
    .ezy__epgrid12 {
      padding: 100px 0;
    }
  }
  
  /* Gray Block Style */
  .gray .ezy__epgrid12,
  .ezy__epgrid12.gray {
    /* Bootstrap variables */
    --bs-body-bg: rgb(246, 246, 246);
  }
  
  /* Dark Gray Block Style */
  .dark-gray .ezy__epgrid12,
  .ezy__epgrid12.dark-gray {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(30, 39, 53);
  
    /* Easy Frontend variables */
    --ezy-card-bg: rgb(30, 39, 53);
    --ezy-card-shadow: 0px 6px 44px rgba(0, 0, 0, 0.2);
    --ezy-img-bg: #242e3e;
    --ezy-border-color: rgba(255, 255, 255, 0.15);
  }
  
  /* Dark Block Style */
  .dark .ezy__epgrid12,
  .ezy__epgrid12.dark {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(11, 23, 39);
  
    /* Easy Frontend variables */
    --ezy-card-bg: rgb(30, 39, 53);
    --ezy-card-shadow: 0px 6px 44px rgba(0, 0, 0, 0.2);
    --ezy-img-bg: #242e3e;
    --ezy-border-color: rgba(255, 255, 255, 0.15);
  }
  
  .ezy__epgrid12-heading {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
  }
  
  @media (min-width: 768px) {
    .ezy__epgrid12-heading {
      font-size: 48px;
    }
  }
  
  .ezy__epgrid12-item {
    background-color: var(--ezy-card-bg);
    box-shadow: var(--ezy-card-shadow);
    border-radius: 10px;
    border: 1px solid var(--ezy-border-color);
  }
  .ezy__epgrid12-img {
    background-color: var(--ezy-img-bg);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 265px;
  }
  
  .ezy__epgrid12-item-badge {
    background-color: var(--nav-hover-color);
    color: #fff;
    position: absolute;
    top: 15px;
    left: 0;
    border-radius: 0 7px 7px 0;
  }
  .ezy__epgrid12-fav-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: var(--ezy-card-bg);
    color: var(--nav-color);
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .ezy__epgrid12-content a {
    text-decoration: none;
    color: var(--bs-body-color);
    transition: 0.4s;
  }
  .ezy__epgrid12-content a:hover {
    color: var(--ezy-theme-color);
  }
  .ezy__epgrid12-content h6 {
    font-size: 17px;
  }
  .ezy__epgrid12-rating {
    font-size: 14px;
    color: #ffd451;
  }
  
  /* sidebar */
  .ezy__epgrid12-sidebar {
    background-color: var(--ezy-card-bg);
    border: 1px solid var(--ezy-border-color);
    border-radius: 10px;
  }
  .ezy__epgrid12-divider {
    background-color: var(--ezy-border-color);
    opacity: 1;
  }
  
  .ezy__epgrid12-sidebar .form-check-input:checked {
    background-color: var(--ezy-theme-color);
    border-color: var(--ezy-theme-color);
  }
  
  .ezy__epgrid12-sidebar .form-select {
    background-color: transparent;
    border-color: var(--ezy-border-color);
    color: var(--bs-body-color);
  }
  .ezy__epgrid12-sidebar .form-select option {
    background-color: var(--ezy-card-bg);
  }
  .ezy__epgrid12-btn {
    color: #fff;
    padding: 13px 35px;
    line-height: 1;
    background-color: var(--ezy-theme-color);
    border-radius: 7px;
  }
  .ezy__epgrid12-btn:hover {
    color: #fff;
    background-color: rgba(var(--ezy-theme-color-rgb), 0.9);
  }

  /*----------------------------------------------------------------*/
  .ezy__epgrid8 {
    /* Bootstrap variables */
    --bs-body-color: #000;
    --bs-body-bg: #fff;
  
    /* Easy Frontend variables */
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;
    --ezy-card-border: #d8e2ef;
    --ezy-success-color: #13e62f;
    --ezy-new-text-color: #ffffff;
    --ezy-warning-color: #f5803e;
    --ezy-not-available-color: #ca1133;
    --ezy-button-color: #fff;
    --ezy-rating-color: #eec200;
  
    background-color: var(--bs-body-bg);
    padding: 40px 0;
  }
  
  /* @media (min-width: 768px) {
    .ezy__epgrid8 {
      padding: 100px 0;
    }
  } */
  
  
  /* Gray Block Style */
  .gray .ezy__epgrid8,
  .ezy__epgrid8.gray {
    /* Bootstrap variables */
    --bs-body-bg: rgb(246, 246, 246);
  }
  
  /* Dark Gray Block Style */
  .dark-gray .ezy__epgrid8,
  .ezy__epgrid8.dark-gray {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(30, 39, 53);
  
    /* Easy Frontend variables */
    --ezy-card-border: rgb(51, 61, 79);
  }
  
  /* Dark Block Style */
  .dark .ezy__epgrid8,
  .ezy__epgrid8.dark {
    /* Bootstrap variables */
    --bs-body-color: #fff;
    --bs-body-bg: rgb(11, 23, 39);
  
    /* Easy Frontend variables */
    --ezy-card-border: rgb(30, 39, 53);
  }
  
  .ezy__epgrid8-row {
    margin-left: -16px;
    margin-right: -16px;
  }
  
  .ezy__epgrid8-row [class*="col-"] {
    padding: 16px;
  }
  
  .ezy__epgrid8-card {
    border: 1px solid var(--ezy-card-border) !important;
    background-color: transparent;
    border-radius: 5px;
    height: 100%;
    overflow: hidden;
  }
  .ezy__epgrid8 img{
    max-height: 300px;
  }
  .ezy__epgrid8-new-text {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--ezy-new-text-color);
    padding: 5px 10px;
    border-radius: 15px;
  }

  .featured {
    background-color: var(--nav-hover-color);
  }

  .new-product {
    background-color: var(--ezy-success-color);
  }

  .product-more-solded {
    background-color: var(--accent-color);
  }

  .ezy__epgrid8-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 15px;
    color: var(--ezy-theme-color);
    border-color: var(--ezy-theme-color);
  }
  
  .ezy__epgrid8-title {
    font-family: 'Baumans Regular';
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--accent-color);
  }
  
  /* .ezy__epgrid8-title:hover {
    text-decoration: underline;
  } */
  
  .ezy__epgrid8-sub-title {
    font-size: 14px;
    line-height: 1;
    color: var(--bs-body-color);
    opacity: 0.6;
  }
  
  /* .ezy__epgrid8-sub-title:hover {
    text-decoration: underline;
  } */
  
  .ezy__epgrid8-discount-price {
    color: var(--accent-color);
    font-size: 24px;
  }
  
  .ezy__epgrid8-real-price {
    color: var(--ezy-not-available-color);
    font-size: 15px;
    text-decoration: line-through;
    opacity: 0.7;
  }
  
  .ezy__epgrid8-details {
    color: var(--bs-body-color);
    opacity: 0.8;
  }
  
  .ezy__epgrid8-available {
    color: var(--ezy-success-color);
  }
  
  .ezy__epgrid8-not-available {
    color: var(--ezy-not-available-color);
  }
  
  .ezy__epgrid8-shipping,
  .ezy__epgrid8-stock {
    font-size: 14px;
  }
  
  .ezy__epgrid8-rating {
    color: var(--ezy-rating-color);
    font-size: 15px;
  }
  
  .ezy__epgrid8-rating .count {
    color: var(--bs-body-color);
    font-size: 18px;
    font-weight: 500;
    opacity: 0.7;
  }
  
  .ezy__epgrid8-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    height: 24px;
    width: 24px;
    color: var(--ezy-theme-color);
    border-color: var(--ezy-theme-color);
  }
  
  /* .ezy__epgrid8-fav:hover {
    background-color: var(--ezy-theme-color);
    border-color: var(--ezy-theme-color);
  } */
  
  .ezy__epgrid8-cart {
    color: var(--accent-color);
    
  }
  
  /* .ezy__epgrid8-cart:hover {
    background-color: rgba(var(--ezy-theme-color-rgb), 0.9);
    border-color: rgba(var(--ezy-theme-color-rgb), 0.9);
  } */
  
  .ezy__epgrid8 a {
    text-decoration: none;
  }

/*----------------------------------------------------------------*/
.ezy__epoverview16 {
  /* Bootstrap variables */
  --bs-body-color: #23262f;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-secondary-color-rgb: 237, 237, 237;
  --ezy-button-color: #fff;
  --ezy-rating-color: #ffc107;
  --ezy-product-color: rgba(var(--ezy-secondary-color-rgb), 0.5);

  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}

@media (min-width: 768px) {
  .ezy__epoverview16 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__epoverview16,
.ezy__epoverview16.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);

  /* Easy Frontend variables */
  --ezy-secondary-color-rgb: 225, 221, 221;
}

/* Dark Gray Block Style */
.dark-gray .ezy__epoverview16,
.ezy__epoverview16.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-secondary-color-rgb: 38, 63, 99;
}

/* Dark Block Style */
.dark .ezy__epoverview16,
.ezy__epoverview16.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-secondary-color-rgb: 38, 63, 99;
}

.ezy__epoverview16-heading {
  font-size: 24px;
  line-height: 25px;
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .ezy__epoverview16-heading {
    font-size: 35px;
    line-height: 35px;
  }
}

.ezy__epoverview16-price {
  font-size: 24px;
  color: rgb(var(--ezy-theme-color-rgb));
}

.ezy__epoverview16-title {
  font-size: 15px;
  color: var(--bs-body-color);
}

.ezy__epoverview16-review {
  font-weight: 500;
  color: rgb(var(--ezy-theme-color-rgb));
  text-decoration: none;
}

.ezy__epoverview16-price{
  font-weight: 500;
  color: rgb(var(--ezy-theme-color-rgb));
  text-decoration: none;
  font-size: larger;
}

.ezy__epoverview16-tag{
  font-weight: 500;
  color: rgb(var(--nav-dropdown-hover-color));
  text-decoration: none;
  font-size: larger;
}

/* .ezy__epoverview16-review:hover {
  color: rgb(var(--ezy-theme-color-rgb));
  text-decoration: underline;
} */

.ezy__epoverview16 .bi-star {
  color: var(--ezy-rating-color);
}

.ezy__epoverview16-qty {
  width: 180px;
}

.ezy__epoverview16-qty .btn {
  font-size: 20px;
  font-weight: bold;
  color: rgb(var(--ezy-theme-color-rgb));
}

.ezy__epoverview16-qty .btn:hover {
  background-color: rgb(var(--ezy-secondary-color-rgb));
}

.ezy__epoverview16-qty .btn:first-child {
  border-radius: 50rem 0 0 50rem !important;
}

.ezy__epoverview16-qty .btn:last-child {
  border-radius: 0 50rem 50rem 0 !important;
}

.ezy__epoverview16-qty .form-control {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-color: transparent;
  color: var(--bs-body-color);
}

.ezy__epoverview16-qty .btn,
.ezy__epoverview16-qty .form-control {
  border-color: rgb(var(--ezy-secondary-color-rgb));
  height: 48px;
}

.ezy__epoverview16-radios .btn {
  border-width: 2px;
  border-color: var(--bs-body-bg) !important;
  background-color: rgba(var(--ezy-secondary-color-rgb), 0.5);
  background-color: var(--ezy-product-color);
  color: var(--bs-body-color);
  min-width: 30px;
  min-height: 30px;
  border-radius: 50rem !important;
  outline: 1px solid transparent;
  padding: 0;
}

.ezy__epoverview16-radios .btn:hover {
  background-color: var(--ezy-product-color);
  outline-color: var(--ezy-product-color);
}

.ezy__epoverview16-radios .btn-check:checked + .btn {
  background-color: var(--ezy-product-color);
  outline-color: rgb(var(--ezy-theme-color-rgb));
}

.ezy__epoverview16-radios .btn-check:disabled + .btn {
  text-decoration: line-through;
  opacity: 0.5;
}

.ezy__epoverview16-btn,
.ezy__epoverview16-btn-outline {
  font-size: 14px;
  height: 42px;
  min-width: 42px;
}

.ezy__epoverview16-btn {
  border-color: rgb(var(--ezy-theme-color-rgb));
  background-color: rgb(var(--ezy-theme-color-rgb));
  color: var(--ezy-button-color);
}

.ezy__epoverview16-btn-outline {
  border-color: rgb(var(--ezy-theme-color-rgb));
  background-color: transparent;
  color: rgb(var(--ezy-theme-color-rgb));
}

.ezy__epoverview16-btn-outline:hover,
.ezy__epoverview16-btn:hover {
  background-color: rgba(var(--ezy-theme-color-rgb), 0.9) !important;
  color: var(--ezy-button-color);
}

.ezy__epoverview16-fav,
.ezy__epoverview16-share {
  color: rgb(var(--ezy-theme-color-rgb));
}

.ezy__epoverview16-fav:hover,
.ezy__epoverview16-share:hover {
  background-color: rgba(var(--ezy-theme-color-rgb), 0.1);
  color: rgb(var(--ezy-theme-color-rgb));
}

.ezy__epoverview16-content {
  color: var(--bs-body-color);
  opacity: 0.7;
}

.ezy__epoverview16 .rounded-3 {
  border-radius: 12px !important;
}

.ezy__epoverview16-row {
  margin-left: -8px;
  margin-right: -8px;
}

.ezy__epoverview16-row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}
.ezy__epoverview16-banner {
  max-height: 400px;
  width: auto;
  object-fit: cover;
}
.ezy__epoverview16-gallery img {
  max-height: 150px;
}


/** Clasification ***/
.fa-star {
  color: var(--ezy-rating-color);
}

.mdi--star-outline {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23efb810' d='m12 15.39l-3.76 2.27l.99-4.28l-3.32-2.88l4.38-.37L12 6.09l1.71 4.04l4.38.37l-3.32 2.88l.99 4.28M22 9.24l-7.19-.61L12 2L9.19 8.63L2 9.24l5.45 4.73L5.82 21L12 17.27L18.18 21l-1.64-7.03z'/%3E%3C/svg%3E");
}


.mdi--star {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23efb810' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2L9.19 8.62L2 9.24l5.45 4.73L5.82 21z'/%3E%3C/svg%3E");
}



/** Cart style ***/

@media(min-width: 1025px) {
  .h-custom {
    height: 100vh !important;
  }
}

.card-registration .select-input.form-control[readonly]:not([disabled]) {
  font-size: 1rem;
  line-height: 2.15;
  padding-left: .75em;
  padding-right: .75em;
}

.card-registration .select-arrow {
  top: 13px;
}