body {
  font-family: sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
}

.red {
  color: #d22a09;
}

.table-responsive {
  height: 450px;
}

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

table {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}
table thead th {
  font-size: 18px;
  font-style: normal;
  line-height: normal;
  background-color: #d22a09 !important;
  color: #ffffff !important;
  font-weight: 700;
  padding: 15px !important;
}

header {
  background: #fff;
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0px 1px 8px 4px rgba(0, 0, 0, 0.1490196078);
  position: relative;
}
header .navbar .navbar-brand img {
  width: 100%;
  height: 60px;
  max-width: 449px;
}
header .navbar .navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .navbar .navbar-nav .nav-item {
  display: inline;
  margin: 0 15px;
}
header .navbar .navbar-nav .nav-item .nav-link {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}
header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: #d22a09;
}

section {
  margin-bottom: 20px;
}

#home {
  background: #e2e2e2;
  text-align: center;
  position: relative;
}
#home .carousel-item {
  min-height: 460px;
}
#home .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 1;
}
#home .carousel-item > img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#home .carousel-item .carousel-caption {
  max-width: 50%;
  margin: auto;
  z-index: 1;
  left: 0;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  bottom: unset;
}
#home .carousel-item .carousel-caption h1 {
  font-size: 45px;
  font-weight: 700;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.5411764706);
}

#products .nav-tabs {
  justify-content: center;
  gap: 8px;
  border: none;
}
#products .nav-tabs .nav-item .nav-link {
  color: #d22a09;
  border: 2px solid;
  border-color: #d22a09;
  padding: 5px 8px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
}
#products .nav-tabs .nav-item .nav-link:hover, #products .nav-tabs .nav-item .nav-link.active {
  background: #d22a09;
  color: #fff;
}
#products .tab-content {
  border: none;
}
#products .tab-content .row {
  row-gap: 16px;
}
#products .tab-content .box {
  border: 1px solid #969696;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
}
#products .tab-content .box img {
  height: 296px;
}
#products .tab-content .box .caption {
  background: #d22a09;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
#products .tab-content .box:hover {
  border: 1px solid #d22a09;
}

#clients marquee img {
  width: 100% !important;
  border: 1px solid #d7d7d7;
  max-width: 225px;
  padding: 10px 20px;
  background: #fff;
  height: 110px;
  border-radius: 5px;
  margin: 0 10px;
}

#gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
  margin: auto;
}
#gallery .grid-item {
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#gallery .grid-item:hover {
  transform: scale(1.05);
}
#gallery #lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
#gallery #lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}
#gallery #lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

#contact ul {
  list-style: none;
}
#contact ul li {
  font-size: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}
#contact ul li p {
  margin: 0;
}
#contact ul li i {
  color: #d22a09;
  font-size: 24px;
}
#contact .mapouter, #contact .gmap_canvas {
  width: 100% !important;
}

footer {
  text-align: center;
  padding: 1rem 0;
  background: #000;
  color: #fff;
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */