main {
  padding: 0;
}

.nav-tabs {
  flex-wrap: nowrap;
  grid-gap: 40px;
  border: none;
  margin-bottom: 60px;
}
.nav-tabs .nav-item {
  width: 100%;
}
.nav-tabs .nav-item button {
  height: 100%;
  width: 100%;
  font-family: "Oswald";
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  padding: 12px 40px;
  border: 2px solid #DDDDDD;
  border-radius: 5px;
}
.nav-tabs .nav-item button.active {
  color: #fff;
  background: #DA291C;
  border-color: #DA291C;
}
.nav-tabs .nav-item button:not(.active):hover {
  border-color: #AAAAAA;
}

.tab-content {
  margin-bottom: 60px;
}

.cat-summary {
  margin-bottom: 40px;
  font-size: 16px;
}
.cat-summary p:last-child {
  margin-bottom: 0;
}

.a-detail {
  padding: 10px 30px;
  display: inline-flex;
  align-items: center;
  grid-gap: 10px;
  color: #fff;
  background: #DA291C;
  font-size: 16px;
  border-radius: 30px;
  border: 1px solid #DA291C;
}
.a-detail svg {
  transition: 0.1s ease-in-out;
}
.a-detail:hover {
  color: #DA291C;
  background: #fff;
}

.cat-detail {
  text-align: center;
}

.item-product .item-image {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.item-product .item-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-color: transparent;
  border-width: 0;
  border-style: solid;
  width: 0;
  background: transparent;
  z-index: 1;
  transition: 0.3s ease;
}
.item-product .item-image img {
  transition: 0.3s ease-in-out;
}
.item-product .item-image .item-back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  transition: 0.3s ease-in-out;
}
.item-product .item-image .item-detail {
  padding: 10px 30px;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  color: #DA291C;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #DA291C;
  border-radius: 30px;
  transition: 0.1s ease-in-out;
}
.item-product .item-image .item-detail:hover {
  color: #fff;
  background: #DA291C;
}
.item-product .item-title {
  font-size: 18px;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.item-product .item-summary {
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: #666666;
}
.item-product a:hover .item-image::before {
  border-color: transparent #da291c #da291c transparent;
  background: #fff;
  border-width: 20px;
}
.item-product a:hover .item-image img {
  transform: scale(1.02);
}
.item-product a:hover .item-image .item-back {
  opacity: 1;
}

.owl-products {
  margin-bottom: 40px;
}
.owl-products .owl-nav {
  margin: 0 !important;
  position: absolute;
  top: 190px;
  width: 100%;
  height: 0;
}
.owl-products .owl-nav button {
  width: 40px;
  height: 40px;
  color: #fff;
  margin: 0 !important;
  border-radius: 100% !important;
  background: #DA291C !important;
  border: none;
  outline: none;
  position: absolute;
  transition: 0.1s ease-in-out;
}
.owl-products .owl-nav button.owl-next {
  right: 0;
}
.owl-products .owl-nav button.owl-prev {
  left: 0;
}
.owl-products .owl-nav button:hover {
  transform: scale(1.25);
}

.grid-product {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  grid-gap: 40px;
}
.grid-product .grid-image img {
  width: 100%;
}
.grid-product .oswald-text {
  text-align: left;
  margin-bottom: 30px;
}
.grid-product .summary {
  font-size: 16px;
  margin-bottom: 50px;
}
.grid-product .summary p:last-child {
  margin-bottom: 0;
}

.gallery-cat {
  margin-bottom: 60px;
}
.gallery-cat:last-child {
  margin-bottom: 0;
}
.gallery-cat .gallery-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
  margin-bottom: 40px;
}
.gallery-cat .gallery-item {
  display: block;
  position: relative;
}
.gallery-cat .gallery-item img {
  border-radius: 20px;
}
.gallery-cat .gallery-item .gallery-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid #FFFFFF;
  color: #fff;
  background: transparent;
  z-index: 1;
  transition: 0.3s ease-in-out;
}
.gallery-cat .gallery-item .gallery-content {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: end;
  transition: 0.3s ease-in-out;
}
.gallery-cat .gallery-item .gallery-content .c-content {
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.gallery-cat .gallery-item .gallery-content .gallery-name {
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  line-height: normal;
}
.gallery-cat .gallery-item .gallery-content .gallery-summary {
  margin-top: 15px;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
}
.gallery-cat .gallery-item:hover .gallery-btn {
  background: #fff;
  color: #DA291C;
}
.gallery-cat .gallery-item:hover .gallery-content {
  background: rgba(0, 0, 0, 0.5);
}
.gallery-cat .gallery-item:hover .gallery-content .c-content {
  opacity: 1;
}

@media (max-width: 960px) {
  .nav-tabs {
    overflow-x: auto;
    margin-bottom: 20px;
    grid-gap: 20px;
    white-space: nowrap;
  }
  .nav-tabs br {
    display: none;
  }
  .tab-content {
    margin-bottom: 30px;
  }
  .cat-summary {
    font-size: 14px;
  }
  .item-product .item-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .item-product .item-summary {
    font-size: 14px;
  }
  .a-detail {
    font-size: 14px;
  }
  .owl-products {
    margin-bottom: 20px;
  }
  .grid-product {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .grid-product .summary {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .grid-product .grid-image img {
    display: block;
    width: auto;
    margin: auto;
  }
  .gallery-cat .gallery-list {
    grid-gap: 10px;
    margin-bottom: 20px;
  }
  .gallery-cat .gallery-item .gallery-content .gallery-name {
    font-size: 14px;
  }
  .gallery-cat .gallery-item .gallery-content .gallery-summary {
    font-size: 12px;
    margin-top: 8px;
  }
  .gallery-cat .gallery-item img {
    border-radius: 10px;
  }
  .gallery-cat .gallery-item .gallery-content {
    padding: 10px;
    border-radius: 10px;
  }
  .gallery-cat {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=home.css.map */