@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

/* Fonts */
:root {
  --default-font: "Saira", sans-serif;
  ;
  --heading-font: "Saira", sans-serif;
  ;
  --nav-font: "Saira", sans-serif;
  ;
  --secondary-font: "Rubik", sans-serif;
}


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

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #32353a;
  --accent-color: #e84545;
  --contrast-color: #ffffff;
  --surface-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #3a3939;
  --nav-dropdown-hover-color: #e84545;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
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);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  min-height: 60px;
  /* padding: 10px 0; */
}

.header .topbar {
  background-color: #007bff;
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}



.header .logo img {
  height: 80px;
  width: 189px;
  margin-right: 8px;
}


.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: #007bff;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  min-height: 60px;
}

/* .scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .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;
  }
}

/* Mobile Navigation */
@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 {
    background-color: #fff;
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    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;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* height: 70vh; */
  /* padding: 40px 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  z-index: 3;
}

.hero .welcome h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.hero .welcome p {
  font-size: 24px;
  margin: 0;
  color: #fff;
}

.hero .content {
  margin-top: 20px;
}

.hero .content .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 20px;
  border-radius: 4px;
}

.hero .content .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 10px;
  text-align: center;
}

.hero .content .why-box p {
  margin-bottom: 10px;
}

.hero .content .why-box .more-btn {
  color: var(--contrast-color);
  background-color: #007bff;
  /* background: color-mix(in srgb, var(--contrast-color), transparent 80%); */
  display: inline-block;
  padding: 8px 30px 8px 30px;
  border-radius: 5px;
  width: 100%;
  transition: all ease-in-out 0.4s;
}

.hero .content .why-box .more-btn i {
  font-size: 14px;
}

.hero .content .why-box .more-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .content .icon-box {
  text-align: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 15px;
  width: 100%;
}

.hero .content .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.hero .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0 20px 0;
}

.hero .content .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #f5f5f5;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 55px;
  margin-right: 6px;
  width: 130px;
  height: 55px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-icons a {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-icons a img {
  height: 100%;
  width: 100%;
}

.footer .social-icons a:hover {
  transform: translateY(-5px);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  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 {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}


.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .copyright p {
  max-width: 1000px;
  margin-bottom: 0;
}

.footer .credits {
  text-align: center;
  font-size: 13px;
  color: #18202D;
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.bi-heart-fill {
  animation: beat .5s infinite alternate !important;
  color: red;
  transform-origin: center;
  margin: 0 2px;
}



.footer .payment-card{
  background-color: #fff;
  max-width: 200px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .payment-card img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* .footer .cards-img {
  max-width: 200px;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards-img-apple {
  max-width: 150px;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards-img-apple img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.footer .cards-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
} */

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #fff;
  background-color: var(--default-color);
  position: relative;
  /* margin-top: 100px; */
  padding: 20px 0;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title h1 {
  font-size: 38px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 0;
}

.page-title nav {
  /* background-color: color-mix(in srgb, var(--default-color), transparent 95%); */
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

ol {
  padding-left: 0;
}

.page-title nav ol li+li {
  padding-left: 0px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: #fff;
}

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* .hero {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  min-height: 85vh;
  position: relative;
  padding: 160px 0 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 54px;
  font-weight: 700;
}

.hero p {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 20px;
  font-weight: 200;
}

.hero .sign-up-form {
  margin-top: 20px;
  padding: 10px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

.hero .sign-up-form .form-control {
  border: none;
}

.hero .sign-up-form .form-control:active,
.hero .sign-up-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero .sign-up-form input[type=submit] {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
}

.hero .sign-up-form input[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
} */

.benefit-sectiion {
  background: rgba(249, 249, 250, 1) radial-gradient(rgba(0, 0, 0, 0.561) 10%, transparent 1%);

  /* background: #f9f9fa radial-gradient(rgba(29, 31, 32, 0.904), transparent 1%); */
  background-size: 11px 11px;
}

/*--------------------------------------------------------------
# Plates
--------------------------------------------------------------*/
#container-three {
  padding: 10px;
  width: 100%;
  height: 400px;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items:center;
}

#container-three canvas {
  width: 100% !important;
  object-fit: cover;
  /* height: 500px !important; */
  background-color: red;
}

.plates {
  padding-top: 0px;
  padding-bottom: 20px;
}

.plates-slider {
  /* height: 100px; */
  margin: 0;
}

.swiper-button-prev {
  display: none;
}

.swiper-button-next {
  display: none;
}

.plates .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.plates .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.plates .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/* .testimonials{
  height: 22rem;
} */
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonial-box {
  position: relative;
  margin-top: -6.4em;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonial-bg {
  padding: 100px;
  position: relative;
  box-sizing: border-box;
  background-image: url('../../img/about/about-2.jpeg') !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}


.testimonials .testimonial-item {
  box-shadow: 0px 2px 15px color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  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 60%);
  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: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.px-10{
padding-right: 10rem!important;
padding-left: 10rem!important;
}

@media only screen and (max-width: 767px) {
  #container-three {
    height: 290px;
  }
  .px-10{
    padding-right: 1rem!important;
    padding-left: 1rem!important;
  }
  .style-card .style-text {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  #container-three {
    /* padding: 10px; */
    width: 100%;
    height: 290px;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items:center;
  }

  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Benefit Section
--------------------------------------------------------------*/
.benefit-card {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s all;
  border: 0.5px solid #d5d5d5;
}

.benefit-card img {
  height: 100px;
  width: 100%;
}

.benefit-card p {
  margin-top: 10px;
  color: #212529;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-weight: 500;
  text-align: center;
  transition: 0.3s all;
}

.benefit-card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.benefit-card:hover p {
  color: #007bff;
}


/*--------------------------------------------------------------
# Best Seller Section
--------------------------------------------------------------*/
.best-seller .post-item {
  background-color: #fff;
  box-shadow: 0px 2px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: 0.3s;
  border-radius: 5px;
}

.best-seller .post-item .post-img img {
  transition: 0.5s;
}

.best-seller .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #007bff;
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.best-seller .post-item .post-content {
  padding: 30px;
  background-color: #f8f8f8;
}

.best-seller .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
  margin-bottom: 15px;
}

.best-seller .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.best-seller .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.best-seller .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.best-seller .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.best-seller .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.best-seller .post-item:hover .post-title,
.best-seller .post-item:hover .readmore {
  color: var(--accent-color);
}

.best-seller .post-item:hover .post-img img {
  transform: scale(1.1);
}

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

.testimonial:nth-child(1) {
  background-color: #7541c8;
}

.testimonial:nth-child(2) {
  background-color: #48556a;
}

.testimonial:nth-child(3) {
  background-color: #fff;
}

.testimonial:nth-child(4) {
  background-color: #19212e;
}

.testimonial:nth-child(5) {
  background-color: #fff;
}

.outerdiv {
  width: 100%;
  min-height: 100vh;
  background: #EDF2F8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.innerdiv {
  transform: scale(0.9);
  display: grid;
  grid-gap: 1.5rem;
  grid-template-rows: repeat(2, 22rem);
  grid-template-columns: repeat(4, 22rem);
}

.eachdiv {
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  box-shadow: 5px 5px 20px #6d6b6b6b;
  color: white;
}

.div1 {
  background: #007bff;
  grid-column: 1/3;
  grid-row: 1/2;
  background-image: url(../img/home/bg-pattern-quotation.svg);
  background-repeat: no-repeat;
  background-position-x: 38rem;
  background-position-y: 1rem;
}

.div2 {
  background: #49556B;
  grid-column: 3/4;
  grid-row: 1/2;
}

.div3 {
  background: white;
  grid-column: 4/5;
  grid-row: 1/3;
  color: black;
}

.div4 {
  background: white;
  grid-column: 1/2;
  grid-row: 2/3;
  color: black;
}

.div5 {
  background: #18202D;
  grid-column: 2/4;
  grid-row: 2/3;
}

.userdetails {
  display: flex;
}

.imgbox {
  margin-right: 1rem;
}

.imgbox img {
  border-radius: 50%;
  width: 2rem;
  border: 2px solid #cec5c5;
}

.detbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detbox p {
  margin: 0;
}

.detbox .name {
  color: hsl(0, 0%, 81%);
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.detbox .name.dark {
  color: #49505A;
}

.detbox .designation {
  color: hsl(0, 0%, 81%);
  opacity: 50%;
  font-size: 0.8rem;
}

.detbox .designation.dark {
  color: #49505A;
}

.review h4 {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.review.dark h4 {
  color: #4B5258;
}

.review p {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
  opacity: 50%;
  line-height: 1.5;
}

.review.dark p {
  color: #0e0e0e;
}

@media only screen and (max-width: 1000px) {
  .innerdiv {
    transform: scale(0.7);
  }
}

@media only screen and (max-width: 800px) {
  .innerdiv {
    transform: scale(0.6);
  }
}

@media only screen and (max-width: 600px) {
  .div1 {
    background-position-x: 10rem;
  }

  .innerdiv {
    display: flex;
    flex-direction: column;
    transform: scale(1);
    margin: 2rem;
    margin-bottom: 5rem;
  }
}

/* CSS */
.button-82-pushable {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-82-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition:
    transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.button-82-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(to left,
      hsl(340deg 100% 16%) 0%,
      hsl(340deg 100% 32%) 8%,
      hsl(340deg 100% 32%) 92%,
      hsl(340deg 100% 16%) 100%);
}

.button-82-front {
  display: block;
  position: relative;
  padding: 12px 27px;
  border-radius: 12px;
  font-size: 0.5rem;
  color: white;
  background: hsl(345deg 100% 47%);
  will-change: transform;
  transform: translateY(-4px);
  transition:
    transform 600ms cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
  .button-82-front {
    font-size: 1rem;
    padding: 12px 42px;
  }
}

.button-82-pushable:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.button-82-pushable:hover .button-82-front {
  transform: translateY(-6px);
  transition:
    transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.button-82-pushable:hover .button-82-shadow {
  transform: translateY(4px);
  transition:
    transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-82-pushable:active .button-82-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.button-82-pushable:focus:not(:focus-visible) {
  outline: none;
}

/*--------------------------------------------------------------
# Blogs Section
--------------------------------------------------------------*/
.tab-space2 {
  margin-left: -2px;
  margin-right: -2px;
}

.img-overlay-70 {
  position: relative;
}

.img-scale-animate {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Whatsapp Button
--------------------------------------------------------------*/
.whatsapp-btn {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #00db5e;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  transition: all 0.4s;
}

.whatsapp-btn i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.whatsapp-btn:hover {
  background-color: color-mix(in srgb, #00db5e, transparent 20%);
  color: var(--contrast-color);
}

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

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

.back-to-top:hover {
  background: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Instagram Section
--------------------------------------------------------------*/

#instagram-section {
  width: 100%;
  height: 100%;

  background: #000000;
  --gap: 5em;
  --line: 1px;
  --color: rgba(255, 255, 255, 0.2);

  background-image: linear-gradient(-90deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 1px),
      var(--color) var(--gap)),
    linear-gradient(0deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 1px),
      var(--color) var(--gap));
  background-size: var(--gap) var(--gap);
}

/* Classes */
.space {
  margin: 1em 0;
}

/* User Header */
.user-header-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
}

.user-header-inner {
  width: 80%;
  min-height: 15vh;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.uh-left {
  width: 100%;
  height: 100%;
  padding: 0 2em 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uh-image {
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.uh-image-inner {
  width: 10.5rem;
  height: 10.5rem;
  border: .3em solid #ecedf3;
  object-fit: cover;
  border-radius: 50%;
  z-index: 2;
}

.gradient {
  width: 100%;
  height: 100%;
  padding: .3em;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(214, 41, 118, 1) 0%, rgba(250, 126, 30, 1) 100%);
}

.gradient-gray {
  width: 100%;
  height: 100%;
  padding: .3em;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(236, 237, 243, 1) 0%, rgba(228, 229, 233, 1) 100%);
}

.uh-right {
  padding: 1em;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}

.user-info {
  font-size: 2em;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uname-verified {
  height: 1.8rem;
}

.user-links a {
  margin: 0 1em 0 0;
  cursor: pointer;
}

.user-info h3 {
  color: #fff;
}

.user-links a span {
  color: #fff;
  font-weight: bolder;
}

.user-bio-name {
  font-weight: bold;
  margin: 1.75em 0 0 0;
  line-height: 0;
}

/* User stories */
.user-stories {
  margin: 3em 0 1em 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-stories-inner {
  width: 80%;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 4em;
}

/* User Page */
.user-page-wrapper {
  display: flex;
  justify-content: center;
  margin: 3em 0;
}

.user-page-inner {
  width: 80%;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.image-wrapper:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.image {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.img-overlay-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3ms ease;
  background: rgba(0, 0, 0, 0.5);
}

.image-wrapper:hover .img-overlay-wrapper {
  opacity: 1;
}

.img-btns {
  color: #fff;
  font-size: 18px;
}

.image {
  width: 100%;
  display: block;
}

.img-btns {
  font-size: 1.3em;
  color: #fff;
  z-index: 10;
}

.img-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, .4);
  z-index: 9;
}

/* User Loader */
.user-loader {
  min-height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  position: relative;
  width: 75px;
}

.circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  width: 100%;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

/* Keyframes */
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes color {

  100%,
  0% {
    stroke: #da2c4d;
  }

  40% {
    stroke: #007bff;
  }

  66% {
    stroke: #28a745;
  }

  80%,
  90% {
    stroke: #f8ab37;
  }
}

@media (max-width: 1024px) {
  .user-header-inner {
    width: 85%;
  }

  .uh-image {
    width: 10rem;
    height: 10rem;
  }

  .uh-image-inner {
    width: 9.5rem;
    height: 9.5rem;
  }

  .user-stories-inner {
    width: 85%;
    grid-column-gap: 2em;
  }

  .story-wrapper {
    margin: 0 1em;
  }

  .user-page-inner {
    width: 85%;
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
  }

  .img-btns {
    font-size: 1.1em;
  }
}

@media (max-width: 936px) {
  .user-header-inner {
    width: 90%;
  }

  .uh-left {
    padding: 0 1em 0 0;
  }

  .uh-image {
    width: 9rem;
    height: 9rem;
  }

  .uh-image-inner {
    width: 8.5rem;
    height: 8.5rem;
  }

  .user-stories-inner {
    width: 90%;
    grid-column-gap: .75em;
  }

  .story-wrapper {
    margin: 0 .5em;
  }

  .user-page-inner {
    width: 90%;
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
  }

  .img-btns {
    font-size: 1em;
  }
}

@media (max-width: 767px) {
  .uh-left {
    padding: 0;
  }

  .uh-image {
    width: 8.5rem;
    height: 8.5rem;
  }

  .uh-image-inner {
    width: 8rem;
    height: 8rem;
  }

  .story-wrapper {
    margin: 0 .25em;
  }

  .user-page-inner {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .img-btns {
    font-size: .8em;
  }
}

/*--------------------------------------------------------------
# plate builder Section
--------------------------------------------------------------*/
.builder-pills {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.builder-pills li {
  flex: 1;
  display: flex;
}

.builder-pills a {
  flex: 1;
  /* padding: 10px 15px; */
  /* background-color: #fff; */
  /* border-radius: 10px; */
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid #c9c9c9;
}

.builder-pills a.active {
  border-color: #007bff;
  color: #007bff;
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}

.tab-pills {
  background-color: #F6F6F6;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.tab-pills li {
  flex: 1;
  display: flex;
}

.tab-pills a {
  flex: 1;
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 10px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-pills a.active {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* .card-list {
  display: flex;
  flex-direction: column;
  max-height: 320px;
  overflow: auto;
}

.card-item {
  flex: 1 1 auto;
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  .card-list {
    flex-direction: row;
    max-height: 200px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .card-item {
    flex: 0 0 50%;
    box-sizing: border-box;
    margin-right: 8px;
  }

  .card-item:nth-child(2n) {
    margin-right: 0;
  }
} */

.card-list {
  display: flex;
  flex-direction: column;
  max-height: 320px;
  overflow: auto;
}

@media (max-width: 767.98px) {
  .card-list {
    flex-direction: row;
    gap: 10px;
    max-height: 200px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .card-item {
    /* flex: 0 0 50%; */
    /* width: 200px; */
    box-sizing: border-box;
    margin-right: 8px;
  }

  .style-card {
    width: 158px;
    height: 192px;
  }

  .card-custom h5 {
    font-size: 12px !important;
  }
}



.card-custom {
  padding: 20px;
  border-radius: 10px;
  background-color: #18202D;
  color: #fff;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.card-custom h5 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
}

.card-custom .divider {
  border-top: 1px solid #ddd;
  margin: 15px 0;
}

.card-custom .text-bold {
  font-weight: bold;
}

.btn-custom {
  background-color: var(--accent-color);
  color: #fff;
  font-weight: bold;
}

.btn-custom:hover {
  background-color: #005ec3 !important;
  color: #fff;
}

.card-start {
  padding: 20px;
  border-radius: 10px;
  background-color: #007bff;
  color: #fff;
}

.card-start h5,
.card-start h6,
.card-start label {
  color: #fff;
}

.divider {
  border-top: 1px solid #fff;
  margin: 15px 0;
}

.btn-start {
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  border: none;
}

.btn-custom:hover {
  background-color: #da2c4d;
}

.style-card {
  background-color: #18202D;
  color: #fff;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  border: 3px solid #f8f8f8;
}

/* .style-title {
  color: #fff !important;
} */

.selected-badge {
  background-color: #007bff;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  position: absolute;
  top: 10px;
  padding: 2px 5px;
  display: none;
}

.style-card img {
  width: 100%;
  border-bottom: 1px solid #18202D;
  background-color: #f8f8f8;
  /* background: linear-gradient(#ECEAE6, #FBFAF8); */
}

.style-card .style-text {
  margin-bottom: 0;
  font-size: 14px;
}

.style-card .style-body {
  padding: 0 15px 20px 15px;
}

.selected-card {
  border: 3px solid #007bff;
}

.selected-card .style-title {
  color: #fff;
}

.selected-card .selected-badge {
  display: block;
}

.build-plate-card {
  background-color: #007bff;
}

.img-wrapper {
  background-color: #f8f8f8;
}

.build-plate-card .style-title {
  color: #fff;
}

/*--------------------------------------------------------------
# Text Content Section
--------------------------------------------------------------*/
.text-content {
  margin-bottom: 20px;
}

.text-content h1 {
  font-size: 18px;
  font-weight: 600;
  color: #18202D;
}

.text-content p {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 15px;
  color: #48556a;
  font-weight: 100;
  line-height: 20px;
  font-family: var(--secondary-font);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
  background-color: transparent;
  background-image: radial-gradient(#0000003f 1px, #fff 1px);
  background-size: 30px 30px;
  width: 100%;
  height: 100%;

}

.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  /* margin: 30px 0; */
  color: #da2c4d;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 30px 0;
  }
}

.about .our-story {
  font-family: var(--secondary-font);
  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 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  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: #007bff;
}

.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: #007bff;
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}


/*--------------------------------------------------------------
# Workshop Section
--------------------------------------------------------------*/
.workshop .workshop-item {
  box-shadow: 0px 2px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: 0.3s;
}

.workshop .workshop-item .workshop-img img {
  min-height: 300px;
  object-fit: cover;
  transition: 0.5s;
}

.workshop .workshop-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.workshop .workshop-item .workshop-content {
  padding: 30px;
}

.workshop .workshop-item .workshop-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 0px;
}

.workshop .workshop-item:hover .workshop-title {
  color: var(--accent-color);
}

.workshop .workshop-item:hover .workshop-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call on Action Section
--------------------------------------------------------------*/
.call-on-action {
  background-image: url('../../img/about/about-bg.jpeg') !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 30px 0px;
}

/* .call-on-action .content-wrapper {
  height: 25em;
} */

.main-title {
  font-size: 5.714em;
  color: #fff;
  line-height: 1.2em;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
}

.testi-title {
  font-size: 70px;
  color: #fff;
  line-height: 1.2em;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
}

.testi-sub-title {
  font-size: 40px;
  color: #007bff;
  line-height: 1.2em;
  font-weight: 700;
  font-style: normal;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  word-wrap: break-word;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .testimonial-bg {
    padding: 50px 50px 100px 20px;
  }

  #testimonials .testi-title {
    font-size: 40px;
  }

  #testimonials .testi-sub-title {
    font-size: 20px !important;
  }

  .offer-bar p {
    font-size: 10px !important;
  }
}

/* Example styles for navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 60px;
  height: 60px;
  background-color: #007bff;
  /* Background color */
  color: #fff;
  /* Text color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.swiper-button-next{
 top: 110%;
 right: 45%;
}

.swiper-button-prev {
  top: 110%;
  left: 45%;
} 
.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 16px;
}

@media (max-width: 1200px) {
  .swiper-button-next{
    top: 110%;
    right: 29%;
   }
   
   .swiper-button-prev {
     top: 110%;
     left: 29%;
   } 
   .style-card .style-text {
    font-size: 10px;
  }
}


.sub-content {
  margin-top: -1em !important;
}

.sub-content .sub-title {
  font-size: 7.857em !important;
  color: #007bff;
  line-height: 1.2em;
  font-weight: 700;
  font-style: normal;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  word-wrap: break-word;
  text-transform: uppercase;
}

.content-desc {
  font-family: var(--secondary-font);
  text-transform: capitalize;
  color: #fff;
  font-weight: 400;
  font-size: 30px;
}

.call-on-action-btn {
  margin-top: 30px;
  background-color: #ffffff6d;
  border: 1px solid #fff;
  padding: 10px 30px;
  max-width: 280px;
  border-radius: 500px;
  cursor: pointer;
  transition: 0.3s;
}

.call-on-action-btn p {
  text-align: center;
  color: #fff;
  font-size: 15px;
  text-transform: capitalize;
  text-decoration: none;
}

.call-on-action-btn:hover {
  background-color: #fff;
}

.call-on-action-btn:hover p {
  color: #007bff;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px color-mix(in srgb, #212529, transparent 90%);
}

.contact .info-item i {
  color: #007bff;
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, #007bff, transparent 40%);
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item a {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #0e0e0e;
  transition: 0.3s;
  cursor: pointer;
  font-family: var(--secondary-font);
}

.contact .info-item a:hover {
  color: #007bff;
}

.contact .contact-form {
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 575px) {
  .contact .contact-form {
    padding: 20px;
  }
}

.contact .contact-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .contact-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .contact-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #007bff;
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .contact-form input[type=text],
.contact .contact-form input[type=email],
.contact .contact-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form input[type=text]:focus,
.contact .contact-form input[type=email]:focus,
.contact .contact-form textarea:focus {
  border-color: #007bff;
}

.contact .contact-form input[type=text]::placeholder,
.contact .contact-form input[type=email]::placeholder,
.contact .contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form button[type=submit] {
  color: var(--contrast-color);
  background: #007bff;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .contact-form button[type=submit]:hover {
  background: color-mix(in srgb, #007bff, transparent 20%);
}

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

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

/*--------------------------------------------------------------
# 3D vs. 4D Section
--------------------------------------------------------------*/

.horizontal-card {
  transition: 0.5s;
  cursor: pointer;
  display: flex;
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
}

.horizontal-card img {
  height: 150px;
  width: 200px;
  object-fit: cover;
}

.horizontal-card-title {
  font-size: 22px;
  transition: 1s;
  cursor: pointer;
  color: #007bff;
  font-weight: 600;
}

.horizontal-card:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.136);
}


.horizontal-card::before,
.horizontal-card::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale3d(0, 0, 1);
  transition: transform .3s ease-out 0s;
  background: rgba(255, 255, 255, 0.1);
  content: '';
  pointer-events: none;
}

.horizontal-card::before {
  transform-origin: left top;
}

.horizontal-card::after {
  transform-origin: right bottom;
}

.horizontal-card:hover::before,
.horizontal-card:hover::after,
.horizontal-card:focus::before,
.horizontal-card:focus::after {
  transform: scale3d(1, 1, 1);
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-heading {
  color: #fff;
  font-size: 3.125rem;
  letter-spacing: -.08125rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

.cta-description {
  color: #fff;
  line-height: 1.67;
  text-align: center;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  font-weight: 500;
}

.cta-description span a {
  color: #007bff;
  transition: 0.3s;
}

.cta-description span a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/

#accordionFlushExample {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 20px;
  border: none;
}

.accordion-flush>.accordion-item {
  border: none;
}

.accordion-button {
  border: 1px solid #e6e6e6 !important;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 20px;
  font-weight: 500;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  ;
}

.accordion-button:not(.collapsed) {
  background-color: #007bff;
  color: #ffffff;
  border: 1px solid #ddd;
}

.accordion-button::after {
  color: black;
}

.accordion-body {
  border: 1px solid #ddd;
}

.accordion-button:focus {
  box-shadow: none;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Modal CSS
--------------------------------------------------------------*/
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0 0 0 / 65%);
}

.modal-content {
  background-color: #fefefe;
  margin: 3% auto;
  padding: 20px;
  border: 2px solid var(--accent-color);
  max-width: 600px;
}

.modal-content h1 {
  color: #151515;
  font-size: 22px;
  font-weight: 500;
}

.modal-content .sub-title {
  margin-top: 10px;
  text-transform: uppercase;
  color: #151515;
  font-size: 14px;
  font-weight: 600;
}

.modal-content .modal-description {
  color: #151515;
  font-size: 14px;
  font-weight: 300;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: var(--accent-color);
  text-decoration: none;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Style Page CSS
--------------------------------------------------------------*/
.form-control-borderless {
  border: none;
}

.form-control-borderless:hover,
.form-control-borderless:active,
.form-control-borderless:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.custom-style-card {
  margin-top: 20px;
  background-color: #f5f5f5;
  /* padding: 15px; */
  border-radius: 15px;
}

.custom-style-card img {
  max-height: 300px;
  width: 100%;
  object-fit: cover;
  /* border-radius: 15px; */
}

.custom-style-card h5 {
  font-size: 30px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0;
}

.custom-style-card p {
  margin: 20px 0;
  color: #49556B;
  font-weight: 300;
}

.detail-btn {
  background-color: #18202D;
  padding: 13px 40px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s all;
  border-radius: 5px;
}

.detail-btn a {
  margin: 0;
  color: #fff;
}

.detail-btn:hover {
  background-color: var(--accent-color);
}

.order-btn {
  background-color: #007bff;
  padding: 13px 40px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s all;
  border-radius: 5px;

}

.order-btn a {
  margin: 0;
  color: #fff;
}

.order-btn:hover {
  background-color: #00db5e;
}

/*--------------------------------------------------------------
# Accessories CSS
--------------------------------------------------------------*/
.user-select-none {
  user-select: none;
}

a {
  text-decoration: none;
  color: unset;
}

.product-single-card {
  padding: 20px;
  border-radius: 5px;
  box-shadow: 1px 1px 15px #cccccc40;
  transition: 0.5s ease-in;
}

.product-single-card:hover {
  -webkit-box-shadow: 1px 1px 28.5px -7px #d6d6d6;
  -moz-box-shadow: 1px 1px 28.5px -7px #d6d6d6;
  box-shadow: 1px 1px 28.5px -7px #d6d6d6;
}

.product-single-card .product-info {
  padding: 15px 0 0 0;
}

.product-single-card .product-top-area {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.product-single-card .product-top-area .product-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #007bff;
  border-radius: 3px;
  padding: 5px 10px;
  box-shadow: 1px 1px 28.5px -7px #dddddd;
  user-select: none;
  z-index: 9;
  color: #fff;
}

.product-single-card .product-top-area .product-img {
  overflow: hidden;
  background-color: #f4f4f4;
  transition: 0.5s ease-in;
  padding: 20px;
}

.product-single-card .product-top-area .product-img img {
  width: 100%;
  transition: transform 0.5s ease-in;
}

.product-single-card:hover .product-img img {
  transform: scale(1.1);
}

.product-single-card .product-info .product-category {
  font-weight: 300;
  opacity: 60%;
}

.product-single-card .product-info .product-title a {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}

.product-single-card .product-info .product-title:hover a {
  color: #007bff;
}

.product-single-card .product-info .old-price {
  padding-right: 15px;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 1px;
  text-decoration: line-through;
  opacity: 70%;
}

.product-single-card .product-info .new-price {
  padding-right: 15px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.add-to-cart-btn {
  margin-top: 20px;
  padding: 10px 30px;
  background-color: var(--accent-color);
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 100px;
}

.add-to-cart-btn p {
  margin: 0;
  text-align: center;
  color: #fff;
}

.add-to-cart-btn:hover {
  background-color: var(--default-color);
}


select.orderby {
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border: 1px solid lightgray;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 20 20'%3E%3Cpath fill='%23333' d='M0 0l10 10 10-10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

select.orderby:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
}

select.orderby option {
  padding: 10px;
}

/*---------------------
  Shop Cart
-----------------------*/

.shoping-cart {
  padding-top: 80px;
  padding-bottom: 80px;
}

.shoping__cart__table {
  margin-bottom: 30px;
}

.shoping__cart__table table {
  width: 100%;
  text-align: center;
}

.shoping__cart__table table thead tr {
  border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table thead th {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  padding-bottom: 20px;
}

.shoping__cart__table table thead th.shoping__product {
  text-align: left;
}

.shoping__cart__table table tbody tr td {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table tbody tr td.shoping__cart__item {
  width: 630px;
  text-align: left;
}

.shoping__cart__table table tbody tr td.shoping__cart__item img {
  display: inline-block;
  margin-right: 25px;
  max-width: 100px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item h5 {
  color: #1c1c1c;
  display: inline-block;
}

.shoping__cart__table table tbody tr td.shoping__cart__price {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  width: 100px;
}

.shoping__cart__table table tbody tr td.shoping__cart__total {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  width: 110px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close {
  text-align: right;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close span {
  font-size: 24px;
  color: #b2b2b2;
  cursor: pointer;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity {
  width: 220px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty {
  width: 120px;
  height: 40px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input {
  color: #1c1c1c;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input::placeholder {
  color: #1c1c1c;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty .qtybtn {
  width: 15px;
}

.primary-btn.cart-btn {
  color: #6f6f6f;
  padding: 14px 30px 12px;
  background: #f5f5f5;
}

.primary-btn.cart-btn span {
  font-size: 14px;
}

.primary-btn.cart-btn.cart-btn-right {
  float: right;
}

.shoping__discount {
  margin-top: 45px;
}

.shoping__discount h5 {
  font-size: 20px;
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 25px;
}

.shoping__discount form input {
  width: 255px;
  height: 46px;
  border: 1px solid #cccccc;
  font-size: 16px;
  color: #b2b2b2;
  text-align: center;
  display: inline-block;
  margin-right: 15px;
}

.shoping__discount form input::placeholder {
  color: #b2b2b2;
}

.shoping__discount form button {
  padding: 15px 30px 11px;
  font-size: 12px;
  letter-spacing: 4px;
  background: #6f6f6f;
}

.shoping__checkout {
  background: #f5f5f5;
  padding: 30px;
  padding-top: 20px;
  margin-top: 50px;
}

.shoping__checkout h5 {
  color: #1c1c1c;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 28px;
}

.shoping__checkout ul {
  margin-bottom: 28px;
  padding-left: 0;
}

.shoping__checkout ul li {
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 700;
  list-style: none;
  overflow: hidden;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 13px;
  margin-bottom: 18px;
}

.shoping__checkout ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.shoping__checkout ul li span {
  font-size: 18px;
  color: #dd2222;
  float: right;
}

.shoping__checkout .primary-btn {
  display: block;
  text-align: center;
}

.primary-btn {
  display: inline-block;
  font-size: 14px;
  padding: 10px 28px 10px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  background: #007bff;
  letter-spacing: 2px;
  transition: all 0.4s;
}

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

.site-btn {
  font-size: 14px;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  padding: 13px 30px 12px;
  background: var(--accent-color) !important;
  border: none;
  transition: all 0.4s;
}

.site-btn:hover {
  background-color: #007bff !important;
}

.quantity {
  display: flex;
  border: 2px solid #007bff;
  border-radius: 4px;
  overflow: hidden;
  width: 100px;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quantity button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  width: 30px;
  height: auto;
  text-align: center;
  transition: background-color 0.2s;
}

.quantity button:hover {
  background-color: #007bff;
}

.input-box {
  width: 40px;
  text-align: center;
  border: none;
  padding: 8px 10px;
  font-size: 16px;
  outline: none;
}

/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

.shipment-select {
  width: 100%;
  border: none;
  padding: 10px;
  outline: none;
}


/*---------------------
  Shop Checkout ------------------------
-----------------------*/

.stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.step {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  color: #777;
  font-weight: bold;
}

.step-panel h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #007bff;
}

.step.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.step-line {
  flex: 1;
  height: 1px;
  background-color: #ccc;
}

.step-line.active {
  background-color: #007bff;
}

.step-content .step-panel {
  display: none;
}

.step-content .step-panel.active {
  display: block;
}

.btn-container {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.next-btn {
  padding: 10px 50px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.next-btn:hover {
  background-color: #007bff;
}

.back-btn {
  padding: 10px 50px;
  background-color: var(--default-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.back-btn:hover {
  background-color: #007bff;
}

.form-group {
  margin-bottom: 25px;
}

.form-group>label {
  display: block;
  font-size: 18px;
  color: #000;
}

.custom-control-label {
  color: #000;
  font-size: 16px;
}

.form-control {
  height: 40px;
  width: 100%;
  background: #ecf0f4;
  border-color: transparent;
  padding: 0 15px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form-control:focus {
  border-color: #007bff;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, .1);
}

textarea.form-control {
  height: 160px;
  padding-top: 15px;
  resize: none;
}

.order-summery-card {
  background-color: #007bff;
  padding: 20px;
  border-radius: 8px;
}

.order-summery-card h2 {
  color: #fff;
}

.product-summary-card {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.product-summary-card img {
  max-width: 130px;
  max-height: 100px;
  border-radius: 5px;
  object-fit: cover;
}

.product-summary-card h6 {
  color: #fff;
  margin-bottom: 0;
  font-weight: 500;
}

.product-summary-card p {
  color: #fff;
  font-size: 14px;
}



/*--------------------------------------------------------------
# Login & Register CSS
--------------------------------------------------------------*/

.form-container {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 20px;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; */
}

.form-title {
  font-family: var(--default-font);
  color: var(--default-color);
  font-size: 25px;
  font-weight: 500;
}

.input-group-password {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #ecf0f4;
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.password-link {
  color: #000;
  text-decoration: underline;
}

.password-link:hover {
  color: #007bff;
  text-decoration: underline;
}

.table-responsive {
  margin-top: 20px;
}

.no-data {
  text-align: center;
  color: #777;
  padding: 20px;
}

.table-heading {
  background-color: var(--default-color);
  color: #fff;
}

.plate-card {
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
  border-radius: 20px;
  border: 0.5px solid #dddddd;
  /* padding: 20px; */
}

.plate-card img {
  max-height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.plate-description {
  background: #fefefe;
  padding: 20px;
  border-radius: 0 0 20px 20px;
}

.plate-description h4 {
  color: var(--heading-color);
  font-size: 19px;
}

.plate-description h4 {
  margin-bottom: 0;
}

.nav-pills-tabs .nav-link {
  background-color: #fff;
  color: #151515;
}

.nav-pills-tabs .nav-pills .nav-link.active {
  background-color: #007bff !important;
  color: #fff;
}


.plate-pills {
  background-color: #F6F6F6;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.plate-pills li {
  flex: 1;
  display: flex;
}

.plate-pills a {
  flex: 1;
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 10px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plate-pills a.active {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


.sections {
  background-color: #F6F6F6;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.section-link {
  flex: 1;
  background-color: #fff;
  color: #18202D;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.section-link.active {
  background-color: #007bff;
  color: #fff;
}

.section-content {
  display: none;
}

.section-content.active {
  display: block;
}

.section-content h2 {
  margin-top: 0;
}

.order-plate .product-card {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f8f8;
}

.order-plate .product-card img {
  max-width: 150px;
  max-height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.order-plate .product-info {
  flex: 1;
  margin-left: 15px;
}

.order-plate .product-info h5 {
  margin: 0;
  font-weight: bold;
}

.order-plate .product-info p {
  margin: 0;
  color: #666;
}

.order-plate .product-price {
  font-size: 18px;
  font-weight: bold;
  margin-right: 30px;
}

.order-plate .add-btn {
  padding: 10px 20px;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Help Page CSS
--------------------------------------------------------------*/
.help-box a {
  display: flex;
  justify-items: center;
  align-items: center;
  background-color: #007bff;
  border-radius: 8px;
  padding: 15px 20px;
  width: 100%;

}

.help-box a p {
  font-size: 22px;
  line-height: 22px;
  text-align: center;
  color: #fff;
  width: 100%;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 500;
}

.help-box:hover a {
  background-color: #007bff;
}

/* Sticky Offer Note CSS */
.offer-bar {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: top 0.3s ease, background-color 0.3s ease;
}

.offer-bar.sticky {
  position: sticky;
  top: 0;
  background-color: #007bff;
}

.offer-bar p {
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 15px;
  width: 100%;
}

.offer-bar a {
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

.offer-bar a:hover {
  text-decoration: underline;
}

.offer-bar i {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offer-bar i:hover {
  color: #ff0000;
}

.hidden {
  display: none;
}



.accesory_gallery {
  display: block;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
}

.accesory_gallery a {
  display: block;
  margin-bottom: 15px;
}

.accesory_gallery .gallery-top {
  border: 1px solid #ebebeb;
  margin-bottom: 5px;
}

.accesory_gallery .gallery-top .swiper-slide {
  position: relative;
  overflow: hidden;
}

.accesory_gallery .gallery-top .swiper-slide a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.accesory_gallery .gallery-top .swiper-slide a img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.accesory_gallery .gallery-top .swiper-slide .easyzoom-flyout img {
  min-width: 100%;
  min-height: 100%;
}

.accesory_gallery .gallery-thumbs .swiper-slide {
  position: relative;
  transition: border .15s linear;
  border: 1px solid #ebebeb;
  cursor: pointer;
  overflow: hidden;
  height: 60px;
  width: 60px !important;
}

.accesory_gallery .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: #000;
}

.accesory_gallery .gallery-thumbs .swiper-slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}

.accesories_main .row {
  padding: 60px 0 20px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 60px;
}

.accesory_content h2 {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 40px;
}

.accesories_form {
  max-width: 260px;
}

.accesories_form input[type=text],
.accesories_form .form-select {
  font-size: 16px;
}

.accesories_form button {
  background: #212529;
  border: none;
  color: #fff;
  padding: 10px 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.accesory_content p {
  color: #898989;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 50px;
}


@media(max-width: 1023px) {
  .accesory_gallery {
    margin: 30px 0;
  }
}

@media(max-width: 767px) {
  .accesories_main .row {
    padding: 40px 0 0;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 30px;
  }

  .accesory_content h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .accesory_content p {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .accesory_gallery .gallery-top .swiper-slide a img {
    height: 300px;
  }

  .accesory_gallery .gallery-thumbs .swiper-slide {
    height: 52px;
    width: 52px !important;
  }
}