:root {
  --main-color: #DE232C;
  --main-color-dark: #A61B21;
  --main-color-light: #FFF3E4;
  --secondary-color: #838486;
  --secondary-color-dark: #5C5D5E;
  --secondary-color-light: #EDEDED;
  --white: #ffffff;
  --black: #000000;
  --bs-primary-rgb: 222, 35, 44;
  --bs-dark-rgb: 166, 27, 33;
  --bs-light-rgb: 255, 227, 228;
  --black-rgb: 0, 0, 0;
  --footer-grey: #2D323D;
}

.btn {
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--main-color);
  --bs-btn-border-color: var(--main-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--main-color-dark);
  --bs-btn-hover-border-color: var(--main-color-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--main-color-dark);
  --bs-btn-active-border-color: var(--main-color-dark);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--main-color);
  --bs-btn-disabled-border-color: var(--main-color);
}

.navbar {
  --bs-navbar-toggler-icon-bg: url("data: image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' ><path stroke='rgba%28222, 35, 44, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h14M4 23h8' /></svg>");
}

@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 200;
  src: url("fonts/Nunito/NunitoSans-ExtraLight.ttf") format("ttf");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/Nunito/NunitoSans-Light.ttf") format("ttf");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Nunito/NunitoSans-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/Nunito/NunitoSans-SemiBold.ttf") format("ttf");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Nunito/NunitoSans-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 800;
  src: url("fonts/Nunito/NunitoSans-ExtraBold.ttf") format("ttf");
}
@font-face {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 900;
  src: url("fonts/Nunito/NunitoSans-Black.ttf") format("ttf");
}
body {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
}

@keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}
@keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 70px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}
@keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}
a {
  color: var(--black);
  text-decoration: none;
}

a:hover {
  color: var(--main-color);
}

button:focus:not(:focus-visible) {
  box-shadow: none;
}

.section-title {
  position: relative;
}

.section-title .title-short {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--main-color);
  padding-bottom: 15px;
}

.section-title .title-main {
  font-size: 28px;
  text-transform: capitalize;
  font-weight: 800;
  line-height: 1.3;
  padding-bottom: 4px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.text-center::after {
  animation: section-title-run-center 5s infinite linear;
}

.bg-primary-dark {
  background-color: var(--main-color-dark);
}

.swiper-arrows {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px 0;
  margin-top: 10px;
}

.swiper-arrow {
  padding: 0 10px;
}

.swiper-arrow i {
  font-size: 22px;
}

.swiper-button-disabled {
  opacity: 0.5;
}

.di_image > div::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.di_image .content-in {
  z-index: 2;
  color: var(--white);
  padding: 40px;
}

.di_image .h2 {
  font-size: 32px;
  font-weight: 800;
  padding-bottom: 10px;
}

.di_image .content-in .para {
  font-size: 15px;
  line-height: 33px;
  text-align: justify;
  font-weight: 500;
}

.category_full_in .article .image img {
  width: 100%;
  height: auto;
  background-color: #000;
}

.category_full_in .article .content-in .name {
  font-size: 22px;
  font-weight: 700;
}

.page-header {
  position: relative;
}

.page-header:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.page-header .image {
  height: 300px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-header .image img {
  height: 100%;
  width: auto;
}

.page-header .title {
  position: absolute;
  min-width: 320px;
  text-align: center;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.page-header .title h2 {
  color: var(--white);
  font-size: 35px;
  font-weight: 900;
}

.page-header .breadcrumb {
  width: 100%;
  justify-content: center;
  padding-top: 10px;
}

.page-header .breadcrumb li {
  color: var(--white);
}

.page-header .breadcrumb li:after {
  content: ">";
  padding: 0 15px;
}

.page-header .breadcrumb li:last-child:after {
  display: none;
}

.page-header .breadcrumb li a {
  color: var(--white);
}

nav[role=navigation] div:last-child {
  display: none;
}

@media screen and (min-width: 768px) {
  .page-header .image {
    height: 370px;
  }
  .page-header .image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page-header .title h2 {
    font-size: 50px;
  }
}
.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}

.navbar .navbar-nav .nav-link {
  padding: 6px 22px;
  color: var(--black);
  font-weight: 700;
}

.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover {
  color: var(--main-color);
}

.navbar .navbar-nav .nav-link:after {
  content: "";
  width: 100%;
  height: 1px;
  border: 0 !important;
  display: block;
  background: var(--white);
  top: -3px;
  position: relative;
  transition: top 0.15s linear;
  opacity: 0.5;
}

.navbar .navbar-nav .nav-link:hover:after {
  background: var(--main-color);
  top: 0px;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu.dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: -7px;
}

.dropdown-menu.dropdown-submenu-left {
  right: 100%;
  left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

.dropdown-menu .dropdown-item {
  padding-top: 8px;
  padding-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .dropdown-menu.dropdown-submenu {
    position: relative;
    left: 0;
    top: 0px;
  }
}
.banner {
  height: 482px;
}

.banner .item::before,
.static-slider .item::before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.banner .item img {
  height: 480px;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
}

.swiper-pagination-bullet {
  background: transparent;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--main-color);
  border-color: var(--main-color);
}

.banner .item .captions {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  transform: translate(0, -50%);
  padding: 28px 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner .item .captions .text1 {
  font-size: 18px;
  font-weight: 600;
  padding-left: 5px;
}

.banner .item .captions .text2 {
  display: block;
  font-size: 40px;
  font-weight: 700;
  padding: 3px 0 8px;
}

.banner .item .captions .para {
  display: block;
  width: 100%;
  font-size: 14px;
}

.static-slider .item {
  position: relative;
  height: 200px;
  margin-bottom: 2px;
}

.static-slider img {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .banner,
  .banner .item img {
    height: 482px;
  }
  .banner .item .captions .text1 {
    font-size: 26px;
  }
  .banner .item .captions .text2 {
    font-size: 70px;
  }
  .banner .item .captions .para {
    font-size: 16px;
  }
  .static-slider-block {
    padding-left: 2px;
  }
  .static-slider-block .col-md-12:first-child .static-slider .item {
    margin-bottom: 2px;
  }
  .static-slider .item {
    height: 240px;
    margin-bottom: 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 1200px) {
  .banner,
  .banner .item img {
    height: 602px;
  }
  .banner .item .captions .text1 {
    font-size: 36px;
  }
  .banner .item .captions .text2 {
    font-size: 110px;
  }
  .banner .item .captions .para {
    font-size: 20px;
    width: 760px;
  }
  .static-slider-block {
    padding-left: 2px;
  }
  .static-slider .item {
    height: 300px;
  }
}
.about-para {
  width: 100%;
}

#about-us-page .h3 {
  font-size: 30px;
}

#about-us-page .h3 span {
  color: var(--main-color);
}

@media screen and (min-width: 768px) {
  .about-para {
    width: 75%;
  }
}
@media screen and (min-width: 992px) {
  #about-us-page .h3 {
    font-size: 38px;
  }
}
#categories .background {
  background-color: var(--secondary-color-light);
  background-color: var(--main-color-light);
}

.category-box {
  min-height: 220px;
}

.category-box .category {
  overflow: hidden;
}

.category-box .category img {
  transition: all 0.3s linear;
}

.category-box .category img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  display: block;
  z-index: 3;
}

.category-box.category-title-box {
  min-height: 0;
}

.category-box .category-info-box {
  bottom: 15px;
  padding: 0 10px;
}

.category-box .category-info-box .info {
  background: rgba(var(--black-rgb), 0.5);
  background: none;
}

.category-box .category-info-box .info {
  background: none;
  transition: all 0.3s linear;
}

.category-box .info .name {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  width: 80%;
  padding: 10px 0 10px 13px;
}

.category-box .info .view-btn {
  height: 41px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  right: 12px;
  position: relative;
  opacity: 0;
  transition: all 0.3s linear, background 0.15s linear;
}

.category-box .category:hover img {
  transform: scale(1.03);
}

.category-box .category:hover .category-info-box .info {
  background: rgba(var(--black-rgb), 0.5);
}

.category-box .category:hover .category-info-box .info .view-btn {
  right: 0;
  opacity: 1;
}

.category-box .info .view-btn:hover {
  background: var(--main-color);
}

.category_full_in .short-description {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
  line-height: 32px;
}

.contact-now p {
  font-size: 19px;
  font-weight: 600;
  color: #ffffff;
}

.contact-now p.number {
  font-size: 31px;
}

.contact-now p.number i {
  font-size: 40px;
  padding-right: 17px;
}

.contact-now p span a {
  color: #ffffff;
}

@media (min-width: 768px) {
  .contact-now p.number {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .contact-now p.number {
    font-size: 42px;
  }
}
@media (min-width: 1200px) {
  .contact-now p.number {
    font-size: 48px;
  }
  .contact-now p.number i {
    font-size: 42px;
  }
}
.product-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-image img {
  width: 100%;
  height: auto;
}

.product-name {
  font-weight: 700;
}

#footer {
  background: var(--footer-grey);
  color: var(--white);
}

.footer-links a,
.footer-links .address {
  color: #98a2aa;
}

.footer-links a:hover,
.footer-links a:hover i {
  color: var(--white);
}

.footer-links i {
  padding-top: 6px;
  padding-right: 11px;
  font-size: 16px;
  color: #98a2aa;
}

.footer-links .link {
  transition: 0.2s all ease-in-out;
}

.footer-links .link i {
  padding-top: 5px;
}

.footer-links .link:hover {
  padding-left: 8px;
  transition: 0.2s all ease-in-out;
}

#footer .section-title .title-main {
  font-size: 24px;
}

.footer-copyright p,
.footer-copyright a {
  color: #98a2aa;
}

.footer-copyright a:hover {
  color: #ffffff;
}

.product-details .product-name {
  font-size: 28px;
}

.product-details .sub-title {
  font-size: 16px;
  color: var(--main-color);
  padding: 10px 0;
}/*# sourceMappingURL=style.css.map */