/* ===================================
   Logistics 
====================================== */
/* font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); /* variable */
:root {
 --alt-font: "Poppins", serif;
 --primary-font: "Poppins", serif;
 --base-color: #c62828;
 --dark-gray: #141414;
 --medium-gray: #707070;
 --aluminium-grey: rgba(255, 255, 255, 0.4);
}
/* reset */
body {
 font-size: 18px;
 line-height: 30px;
}
a:hover {
 color: var(--dark-gray);
}
/* header */
.navbar .navbar-nav .nav-link {
 font-size: 16px;
 text-transform: uppercase;
 font-weight: 500;
}
.navbar .navbar-nav .dropdown.open .dropdown-menu {
 background-color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
 font-size: 17px;
 font-weight: 500;
 color: var(--white);
 border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .navbar-brand img {
 max-height: 30px;
}
.header-top-bar div > a {
 color: var(--light-gray);
}
.header-top-bar div > a:hover {
 color: var(--white);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
 font-size: 30px;
}
.navbar .navbar-nav .dropdown .dropdown-menu a i {
 width: 35px;
}
header .btn.btn-box-shadow.btn-base-color,
.btn.btn-base-color {
 color: var(--dark-gray);
}
header .btn.btn-box-shadow.btn-base-color:hover,
.btn.btn-box-shadow.btn-base-color:hover {
 color: var(--dark-gray);
}
header .btn.btn-small {
 font-size: 15px;
 padding: 10px 18px;
}
/* btn */
.btn.btn-hover-animation-switch.btn-link {
 padding-top: 0;
}
.btn {
 text-transform: inherit;
 font-weight: 600;
 letter-spacing: 0;
}
.btn.btn-extra-large {
 font-size: 18px;
 padding: 16px 32px;
}
.btn.btn-large {
 font-size: 17px;
 padding: 14px 28px;
}
.btn.btn-medium {
 font-size: 16px;
 padding: 12px 24px;
}
.btn.btn-small {
 font-size: 15px;
}
.btn.btn-very-small {
 font-size: 14px;
 padding: 9px 20px;
}

/* counter style */
.counter-style-04 .vertical-counter:after {
 color: var(--base-color);
}
.review-star-icon i {
 color: var(--base-color);
}

/* footer style */
footer ul li {
 margin-bottom: 1px;
}
footer p {
 line-height: 28px;
}
/* page title */
.page-title-double-large h1 {
 font-size: 4.375rem;
 line-height: 4.688rem;
}
.page-title-double-large h2 {
 font-size: 16px;
 line-height: 28px;
}

/* top bottom left right class */
.right-12 {
 right: 12%;
}

.bg-jungle-green {
 background-color: #2ebb79;
}
/* Outside box */
.outside-box-top-205px {
 margin-top: -205px;
}
/* Transparent background color */
.bg-gradient-gray-light-dark-transparent {
 background-image: linear-gradient(to top, #f7f7f7 0%, transparent 100%);
}

/* TimeLine */
.timeline-with-icons {
 list-style: none;
 padding: 0;
 position: relative;
}

.timeline-item {
 position: relative;
}

.timeline-icon {
 width: 50px;
 height: 50px;
 position: relative;
 z-index: 1;
}

.bg-danger {
 background-color: #e20d17 !important; /* Custom red color for other icons */
}

/* Timeline */

ul.timeline {
 list-style-type: none;
 position: relative;
 padding-left: 0;
 margin: 0;
}

ul.timeline:before {
 content: "";
 background: #d4d9df;
 display: block;
 position: absolute;
 left: 30px;
 width: 2px;
 height: 100%;
 z-index: 1;
}

ul.timeline > li {
 position: relative;
 margin: 20px 0;
 padding-left: 50px;
}

ul.timeline > li:before {
 content: "";
 background: #fff;
 display: inline-block;
 position: absolute;
 border-radius: 50%;
 border: 3px solid var(--base-color);
 left: 20px;
 top: 5px;
 width: 20px;
 height: 20px;
 z-index: 2;
}

ul.timeline > li a {
 color: var(--base-color);
 font-weight: bold;
 text-decoration: none;
}

ul.timeline > li a:hover {
 text-decoration: underline;
}

ul.timeline > li p {
 margin: 10px 0 0;
 color: #6c757d;
 font-size: 0.95em;
 line-height: 1.5;
}

ul.timeline > li .timeline-date {
 position: absolute;
 right: 0;
 top: 0;
 color: var(--base-color);
 font-size: 0.9em;
 white-space: nowrap;
}

@media (max-width: 1399px) {
 .xl-h-180px {
  height: 180px;
 }
 .xl-w-180px {
  width: 180px;
 }
}
@media (max-width: 1199px) {
 .outside-box-top-200px {
  margin-top: -150px;
 }
}
@media (max-width: 991px) {
 .outside-box-top-200px {
  margin-top: 0;
 }
 .navbar .navbar-nav .dropdown.open .dropdown-menu {
  padding-bottom: 15px;
 }
}

.shop-image {
 filter: grayscale(0.3); /* Initial grayscale */
/* padding: 10px;*/
 transition: filter 0.3s ease; /* Smooth transition */
}

.shop-box:hover .shop-image {
 filter: none; /* Remove grayscale on hover */
}


@media only screen and (max-width: 768px) {
  .shop-image {
    padding: 10px;
  }
}