/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Lato", sans-serif;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
p {
  font-size: 17px;
  /* text-shadow: 0px 0px, 0px 0px, 0px 0px; */
}
a {
  color: #106eea;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", sans-serif;
  color: #232323;
  font-weight: 500;
}

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

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ea1824;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
}

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

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

.back-to-top:hover i {
  color: #ea1824;
}

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #000000;
  height: 40px;
  font-size: 12px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
  font-weight: 500;
  letter-spacing: 0.24px;
  color: #ffffff;
  text-transform: uppercase;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

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

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #ea1824;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
  margin-top: 0;
  /* position: fixed; */
  width: 100%;
  /* transition: all .2s linear; */
}

#header.fixed-top {
  height: 70px;
  margin-top: 0;
  background: #ea1824;
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
}
.fixed-top .navbar a {
  color: #fff;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 60px;
}

.scrolled-offset {
  margin-top: 70px;
}

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

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

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: normal;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #106eea;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff !important;
}

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

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

.navbar li.dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
  color: #000000 !important;
  font-weight: 500;
}

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

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

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  border-radius: 8px;
}

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

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

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

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

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

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

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

  .navbar ul {
    display: none;
  }
}

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

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

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

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

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

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

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

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

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

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

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 0px 0;
  color: #000000;
  font-size: 14px;
  background: #efeeee;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  /* background: #fff; */
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  position: relative;
  padding-bottom: 10px;
}

/* #footer .footer-top .footer-links {
  margin-bottom: 30px;
} */

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 600;
  font-size: 16px;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #b81d21;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #000000;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a img {
  width: 15px;
}
#footer .footer-top .social-links a:hover {
  background: #b81d21;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
  font-weight: 600;
}

#footer .credits {
  float: none;
  text-align: center;
  font-size: 13px;
  color: #000000;
  font-weight: 600;
}
#footer .credits a {
  color: #000000;
}
.footer-copyright {
  border-top: 1px solid #dbd6d6;
}
.footer-logo {
  gap: 20px;
  align-items: baseline;
}
.social-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

#footer .footer-top .social-links h3 {
  font-size: 16px;
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}
.cream {
  background: #fceee4;
}
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  position: relative;
  font-size: 40px;
  font-weight: bold;
  line-height: normal;
  color: #ea1824;
}
.section-title p {
  position: relative;
  font-size: 16px;
  font-weight: normal;
  line-height: normal;
  text-transform: capitalize;
  letter-spacing: 0;
  color: #423f3fcf;
}
.section-title p::after {
  content: "";
  position: absolute;
  background: #423f3fcf;
  width: 50px;
  height: 1px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

#press-release .section-title p::after {
  background-color: #fff;
}
/* the slides */
.slick-slide {
  margin: 20px 10px;
}

/* the parent */
.slick-list {
  margin: 0 -10px;
}

.banner-slider .slick-slide {
  margin: 0px 0px;
}

/* the parent */
.banner-slider .slick-list {
  margin: 0 0px;
}
.know-more {
  color: #ea1824;
  background: transparent;
  border: 2px solid #ea1824;
  border-radius: 61px;
  padding: 15px 40px;
  line-height: 1;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  /* border: 1px solid black; */
  /* border-radius: 3px; */
  /* width: 100px; */
  /* height: 30px; */
  /* display: block; */
  background: linear-gradient(to right, #ea1824 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.5s ease-out;
}
.know-more:hover {
  background-position: left bottom;
  color: #fff;
}
.view-all {
  color: #ea1824;
  background: transparent;
  border: 2px solid #ea1824;
  border-radius: 61px;
  padding: 10px 40px;
  line-height: 1;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 700;
  display: block;
  align-items: center;
  gap: 5px;
  justify-content: center;
  margin: 0 auto;
  width: max-content;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.product-rating {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
}

.start-price {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

.product-price {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
}
.product-card {
  background: #ffffff;
  border-radius: 10px;
}

.product-name {
  text-align: center;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
}

.product-detail {
  padding: 20px 20px 30px;
  text-align: center;
}

.product-detail .know-more {
  padding: 8px 20px;
  font-size: 13px;
  border: 1px solid #000000;
  border-radius: 61px;
  background: transparent;
  color: #000;
  font-weight: 800;
}
.product-detail .know-more:hover {
  background: #004a76;
  border: 1px solid #004a76;
  color: #fff;
  font-weight: 500;
}
.product-card .product-img {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.product-card .product-img img {
  transition: transform 0.5s ease;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.product-card .product-img img:hover {
  transform: scale(1.1);
}
ul.slick-dots li button {
  background-color: #ffffff;
  border: 1px solid rgba(85, 188, 85, 0.5);
  border-radius: 50%;
  height: 6px;
  width: 6px;
  opacity: 0.5;
  outline: none;
  padding: 0;
  text-indent: -999999px;
  /* font-size: 13px; */
  /* padding: 0; */
  margin: 0 auto;
  display: block;
  transition: all 0.2s linear;
  transform-origin: left;
}

#main-banner ul.slick-dots li button {
  box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 40%);
}

ul.slick-dots li.slick-active button {
  border: 1px solid #ea1824;
  background-color: #ea1824;
  border-radius: 10px;
  opacity: 1;
  width: 16px;
}
.main-banner .banner-slider .slick-dots,
.aplusContnet .banner-slider .slick-dots {
  bottom: 15px;
  right: 20px;
  margin: auto;
  /* display: flex; */
  /* justify-content: flex-end; */
}
.main-banner .banner-img img {
  width: 100%;
  height: auto;
}
.inner-page {
  background: transparent linear-gradient(180deg, #e31e25 0%, #aa1c1f 100%) 0% 0% no-repeat padding-box;
  height: 250px;
  /* margin-top: 85px; */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.inner-page .banner-txt h1 {
  text-transform: capitalize;
  color: #fff;
  font-weight: 600;
  position: relative;
}
.inner-page .banner-txt h1::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background: #fff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.inner-page .banner-txt p {
  color: #fff;
  padding-top: 15px;
  margin-bottom: 0;
}
.inner-page .banner-img img {
  height: auto;
}
.contact-info a {
  color: #fff;
}
#thankYou .modal-body {
  padding: 50px;
}
#thankYou .close {
  position: absolute;
  right: 0;
  background-image: none;
  background-color: red;
  opacity: 1;
  color: #fff;
  padding: 10px;
  display: grid;
  z-index: 99;
  border-radius: 0;
}
#thankYou .modal-content {
  border-radius: 0;
}
h2#thankYouMsg1 {
  font-weight: 700;
}
.slick-next:before,
.slick-prev:before {
  color: #ea1824;
}

.slick-next,
.slick-prev {
  z-index: 9;
}

#where-to-buy ul.slick-dots li button,
#testimonial ul.slick-dots li button {
  background-color: rgb(234 24 36);
  border: 1px solid rgb(234 24 36);
}

#where-to-buy ul.slick-dots li.slick-active button,
#testimonial ul.slick-dots li.slick-active button {
  background-color: rgb(234 24 36);
  border: 1px solid rgb(234 24 36);
}
.product-slider ul.slick-dots li button {
  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 40%);
}

.product-slider ul.slick-dots li.slick-active button {
  border: 1px solid #fff;
  background-color: #fff;
}

.slick-dots li {
  width: 12px;
  height: 12px;
}

/* .aplusContnet .banner-slider  ul.slick-dots {
  display: flex;
  justify-content: flex-end;
}

.aplusContnet .banner-slider  ul.slick-dots li button {
  box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 40%);
} */
.navbar li.dropdown a {
  color: #fff;
}
#header.fixed-top .navbar li.dropdown ul li a {
  color: #000;
}
