:root {
  --color1: var(--primary-light-color);
  --color2: var(--primary-color);
  --color3: var(--primary-dark-color);
  --color4: var(--secondary-light-color);
  --color5: var(--secondary-color);
  --color6: var(--secondary-dark-color);
  --color7: var(--main-background);
  --color8: var(--footer-background);
  --color9: var(--footer-text);
}

/*p{
  float:$left;
  padding-left:20px;
}*/
/* *******************************  slider  ************************************ */
.lazy-slider {
  width: 100vw;
  min-height: 343px;
  background-color: #dedede;
  background-image: linear-gradient(90deg, #f4f4f4 100px, #e5e5e5cc 150px, #F4F4F4 200px);
  animation: shine-lines 3s 1s infinite ease-in-out;
  transition: all 0.65s ease;
  z-index: 1;
  position: relative;
  border-radius: 16px;
}
@media screen and (min-width: 1440px) {
  .lazy-slider {
    min-height: 400px;
  }
}
@media screen and (max-width: 1200px) {
  .lazy-slider {
    min-height: 275px;
  }
}
@media screen and (max-width: 992px) {
  .lazy-slider {
    min-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .lazy-slider {
    min-height: 150px;
  }
}
@media screen and (max-width: 320px) {
  .lazy-slider {
    min-height: 145px;
  }
}

@keyframes shine-lines {
  0% {
    background-position: 0vw;
  }
  100% {
    background-position: 99vw;
  }
}
.owl-slide {
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .img-slide {
    min-height: 45%;
  }
}
@media (min-width: 768px) {
  .img-slide {
    min-height: 38%;
  }
}
@media (min-width: 576px) {
  .img-slide {
    min-height: 31%;
  }
}

.slider-handler {
  margin-top: 15px;
}

.ad-block {
  display: block;
}
@media screen and (max-width: 992px) {
  .ad-block {
    width: calc(50% - 8px);
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.ad-block img {
  border-radius: 16px;
}
@media screen and (max-width: 992px) {
  .ad-block img {
    border-radius: 10px;
  }
}

.pr16 {
  padding-right: 16px !important;
}

.mb16 {
  padding-bottom: 16px;
}

@media screen and (max-width: 992px) {
  .ad-wrapper {
    display: flex;
    padding: 0 !important;
    align-items: center;
    justify-content: space-between;
  }
}

/* *******************************  latest-product  ************************************ */
.sections__title {
  font-weight: bold;
  font-size: 2.9rem;
  font-family: Casablanca;
  color: var(--color2);
}
.sections__nav-pills {
  border-bottom: 1px solid #c5c5c5;
  margin-top: 1.5rem;
}
.sections__link {
  font-size: 1.5rem;
  border-radius: 0;
  color: #b8b8b8;
  font-weight: 600;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.sections__link.active {
  color: var(--color4) !important;
  background-color: transparent !important;
  position: relative;
}
.sections__link.active::after {
  content: "";
  position: absolute;
  width: 103px;
  height: 2px;
  background-color: var(--color5);
  right: 0;
  bottom: -1.8px;
}
.sections__link:hover {
  color: var(--color5);
}

.products-sections {
  margin-top: 2rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .products-sections {
    margin: 0 auto;
  }
}

/* *******************************  article  ************************************ */
.article-section {
  margin-bottom: 45px;
  margin-top: 16px;
}
@media screen and (max-width: 992px) {
  .article-section {
    margin: 15px 0;
  }
}
.article-section .article-section__title {
  font-weight: bold;
  font-size: 2.9rem;
  line-height: 2;
  color: var(--color2);
  margin-top: 4.5rem;
}

.owl-item-category-wrapper {
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: 0.5s all;
}
.owl-item-category-wrapper:hover {
  transform: scale(1.02);
}
@media screen and (max-width: 992px) {
  .owl-item-category-wrapper:last-child {
    display: none;
  }
}

.owl-item-category {
  transition: 0.5s all;
  overflow: hidden;
}
.owl-item-category:hover:before {
  left: 180%;
  transition: 2s all;
}
.owl-item-category:hover:after {
  left: 180%;
  transition: 2s all;
}

.owl-item-category:before {
  position: absolute;
  left: -170%;
  top: 0%;
  width: 300%;
  content: "";
  height: 18%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(8px);
  transform: rotate(-45deg);
}

.owl-item-category:after {
  position: absolute;
  left: -150%;
  top: 0%;
  width: 300%;
  content: "";
  height: 5%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(10px);
  transform: rotate(-45deg);
}

.owl-important-category-wrapper {
  border-radius: 16px;
  background: #fff;
  margin-top: 16px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 45px;
  padding: 30px;
}
@media screen and (max-width: 992px) {
  .owl-important-category-wrapper {
    margin: 15px 0;
    padding: 15px 0px;
  }
}
.owl-important-category-wrapper .item {
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
}
.owl-important-category-wrapper .owl-item-category-img {
  border: 1px solid var(--color4);
  box-shadow: 0 0 0 7px #fff, 0 0 0 8px var(--color4);
  object-fit: cover;
  border-radius: 100%;
  width: 140px !important;
  height: 140px;
  margin: 35px 17px;
}
@media screen and (min-width: 1440px) {
  .owl-important-category-wrapper .owl-item-category-img {
    margin: 35px;
    box-shadow: 0 0 0 10px #fff, 0 0 0 11px var(--color4);
  }
}
@media screen and (max-width: 992px) {
  .owl-important-category-wrapper .owl-item-category-img {
    margin: 10px auto;
  }
}
.owl-important-category-wrapper .owl-item-category-title {
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #585858;
  margin: 20px 0;
}
@media screen and (max-width: 992px) {
  .owl-important-category-wrapper .owl-item-category-title {
    font-size: 10px;
  }
}

.product-slogan {
  font-size: 2.4rem;
  color: #585858;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}
.product-slogan .bold-slogan {
  font-size: 2.8rem;
}

.slogan-wrapper {
  margin-bottom: 45px;
}

.slogan-wrapper-type2 {
  margin-bottom: 30px;
  margin-top: 20px;
}
.slogan-wrapper-type2 .product__wrapper {
  border-radius: 16px;
  background: #fff;
  margin-top: 16px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 0 10px;
  display: flex;
}
.slogan-wrapper-type2 .product__img {
  width: 60px;
  margin-right: 15px;
}
.slogan-wrapper-type2 .product__title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.slogan-wrapper-type2 .product__content {
  font-size: 1.2rem;
  line-height: 2rem;
}
.slogan-wrapper-type2 .product__link-details {
  width: calc(100% - 80px);
}

.product-card-off-percent {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color2);
  color: #fff;
  z-index: 2;
  text-align: center;
  position: absolute;
  top: 0;
  padding: 0 10px 0 22px;
  font-size: 1.1rem;
  left: -50px;
  right: auto;
  width: auto;
  height: 20px;
  border-radius: 30px;
}
.product-card-off-percent:after {
  content: attr(data-sign);
  position: absolute;
  left: 12px;
}

.decoration {
  border-radius: 16px;
  background: #fff;
  margin-top: 16px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 45px;
}
@media screen and (max-width: 992px) {
  .decoration {
    margin: 15px 0;
  }
}

.index-about-us {
  line-height: 1.8;
  color: #585858;
  text-align: justify;
  padding-left: 15px;
  font-size: 1.3rem;
  margin-top: 16px;
  margin-bottom: 45px;
}
@media screen and (max-width: 992px) {
  .index-about-us {
    margin: 15px 0;
  }
}
.index-about-us .about-title {
  line-height: 1.8;
  color: #585858;
  text-align: justify;
  font-size: 1.6rem;
  margin: 0 42px 8px 16px;
  font-weight: 600;
}
.index-about-us .about-desc {
  line-height: 30px;
  color: #585858;
  text-align: justify;
  font-size: 1.5rem;
  margin: 0 42px 16px 16px;
  font-weight: 300;
}
.index-about-us .about-img-wrapper {
  position: relative;
  top: 55px;
}
.index-about-us .about-img-wrapper:before {
  content: "";
  position: absolute;
  background-color: var(--color4);
  width: 85%;
  height: calc(100% + 100px);
  top: -50px;
  left: -15px;
  border-radius: 16px;
}
.index-about-us .about-img-wrapper img {
  position: relative;
  right: 45px;
}
.index-about-us .about-details {
  height: 360px;
  overflow: auto;
}

.standards {
  position: relative;
  padding: 0 60px;
  top: 0px;
}
@media screen and (min-width: 1440px) {
  .standards {
    top: -120px;
    padding: 0 60px;
  }
}
.standards .owl-item {
  margin: 0 auto;
}
.standards .owl-standards-item {
  position: relative;
  display: block;
}
.standards .owl-standards-item:before {
  content: "";
  position: absolute;
  background-color: var(--color2);
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.standards .owl-standards-img {
  position: relative;
  padding: 16px;
}

.grid {
  column-count: 2;
  column-gap: 30px;
  margin: 30px 0 120px 0;
  -webkit-column-break-inside: avoid;
  height: auto;
}

.category-img {
  width: 100%;
  border-radius: 16px 16px 0 0;
}

.category-title {
  padding: 10px;
  font-size: 10px;
  line-height: 20px;
  color: #585858;
}

.grid-item {
  -webkit-column-break-inside: avoid;
  height: auto;
  position: relative;
  box-shadow: 0 3px 0 0 #eee, 0 0 0 1px #f5f4fa;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 30px;
  display: block;
}

/* *******************************   owl-carousel for most ************************************ */
.owl-carousel.owl-product .owl-stage-outer {
  padding: 0px;
  margin-top: 20px;
}
.owl-carousel.owl-product .owl-stage-outer .owl-stage .owl-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.owl-theme .owl-dots {
  margin-top: 0px;
}
.owl-theme .owl-dots .owl-dot.active span {
  background-color: var(--color2);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.owl-slide .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  height: 0;
}
@media screen and (max-width: 992px) {
  .owl-slide .owl-nav {
    display: none;
  }
}
.owl-slide .owl-nav .owl-prev span, .owl-slide .owl-nav .owl-next span {
  position: absolute;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.owl-slide .owl-nav .owl-next:hover span {
  color: var(--color2);
}
.owl-slide .owl-nav .owl-next span {
  left: 2%;
  font-size: 3rem;
  font-weight: bold;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  color: white;
}
.owl-slide .owl-nav .owl-prev:hover span {
  color: var(--color2);
}
.owl-slide .owl-nav .owl-prev span {
  right: 2%;
  font-size: 3rem;
  font-weight: bold;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  color: white;
}
.owl-slide .owl-dots {
  position: absolute;
  width: 100%;
  height: 0;
}
.owl-slide .owl-dots .owl-dot {
  left: 50%;
}
.owl-slide .owl-dots .owl-dot span {
  margin-top: -60px;
  position: relative;
  z-index: 100;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  width: 12.5px;
  height: 12.5px;
}
.owl-slide .owl-dots .owl-dot.active span,
.owl-slide .owl-dots .owl-dot:hover span {
  width: 27px;
  background-color: var(--color2);
}

.owl-color .owl-nav, .owl-important-category-wrapper .owl-nav, .owl-related .owl-nav, .owl-decor .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  height: 0;
}
@media screen and (max-width: 1440px) {
  .owl-color .owl-nav, .owl-important-category-wrapper .owl-nav, .owl-related .owl-nav, .owl-decor .owl-nav {
    margin-top: -20px;
  }
}
@media screen and (max-width: 992px) {
  .owl-color .owl-nav, .owl-important-category-wrapper .owl-nav, .owl-related .owl-nav, .owl-decor .owl-nav {
    display: none;
  }
}
.owl-color .owl-nav .owl-prev span, .owl-color .owl-nav .owl-next span, .owl-important-category-wrapper .owl-nav .owl-prev span, .owl-important-category-wrapper .owl-nav .owl-next span, .owl-related .owl-nav .owl-prev span, .owl-related .owl-nav .owl-next span, .owl-decor .owl-nav .owl-prev span, .owl-decor .owl-nav .owl-next span {
  position: absolute;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.owl-color .owl-nav .owl-next, .owl-important-category-wrapper .owl-nav .owl-next, .owl-related .owl-nav .owl-next, .owl-decor .owl-nav .owl-next {
  box-shadow: 4px 0px 2px 0px #bbb;
  width: 50px;
  height: 50px;
  left: -15px;
  position: absolute;
  background: #fff !important;
}
.owl-color .owl-nav .owl-next.disabled, .owl-important-category-wrapper .owl-nav .owl-next.disabled, .owl-related .owl-nav .owl-next.disabled, .owl-decor .owl-nav .owl-next.disabled {
  filter: grayscale(1) !important;
  background-color: #fff;
  box-shadow: 4px 0px 2px 0px #ddd;
}
.owl-color .owl-nav .owl-next.disabled span, .owl-important-category-wrapper .owl-nav .owl-next.disabled span, .owl-related .owl-nav .owl-next.disabled span, .owl-decor .owl-nav .owl-next.disabled span {
  color: var(--color4) !important;
}
.owl-color .owl-nav .owl-next:hover, .owl-important-category-wrapper .owl-nav .owl-next:hover, .owl-related .owl-nav .owl-next:hover, .owl-decor .owl-nav .owl-next:hover {
  background-color: #fff;
  box-shadow: 4px 0px 2px 0px #ccc;
}
.owl-color .owl-nav .owl-next:hover span, .owl-important-category-wrapper .owl-nav .owl-next:hover span, .owl-related .owl-nav .owl-next:hover span, .owl-decor .owl-nav .owl-next:hover span {
  color: var(--color2);
}
.owl-color .owl-nav .owl-next span, .owl-important-category-wrapper .owl-nav .owl-next span, .owl-related .owl-nav .owl-next span, .owl-decor .owl-nav .owl-next span {
  left: 0;
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  color: var(--color4);
}
.owl-color .owl-nav .owl-prev, .owl-important-category-wrapper .owl-nav .owl-prev, .owl-related .owl-nav .owl-prev, .owl-decor .owl-nav .owl-prev {
  box-shadow: -4px 0px 2px 0px #bbb;
  width: 50px;
  height: 50px;
  right: -15px;
  position: absolute;
  background: #fff !important;
}
.owl-color .owl-nav .owl-prev.disabled, .owl-important-category-wrapper .owl-nav .owl-prev.disabled, .owl-related .owl-nav .owl-prev.disabled, .owl-decor .owl-nav .owl-prev.disabled {
  background-color: #fff;
  filter: grayscale(1);
  box-shadow: -4px 0px 2px 0px #ddd;
}
.owl-color .owl-nav .owl-prev.disabled span, .owl-important-category-wrapper .owl-nav .owl-prev.disabled span, .owl-related .owl-nav .owl-prev.disabled span, .owl-decor .owl-nav .owl-prev.disabled span {
  color: var(--color4) !important;
}
.owl-color .owl-nav .owl-prev:hover, .owl-important-category-wrapper .owl-nav .owl-prev:hover, .owl-related .owl-nav .owl-prev:hover, .owl-decor .owl-nav .owl-prev:hover {
  background-color: #fff;
  box-shadow: -4px 0px 2px 0px #ccc;
}
.owl-color .owl-nav .owl-prev:hover span, .owl-important-category-wrapper .owl-nav .owl-prev:hover span, .owl-related .owl-nav .owl-prev:hover span, .owl-decor .owl-nav .owl-prev:hover span {
  color: var(--color2);
}
.owl-color .owl-nav .owl-prev span, .owl-important-category-wrapper .owl-nav .owl-prev span, .owl-related .owl-nav .owl-prev span, .owl-decor .owl-nav .owl-prev span {
  right: 0px;
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  color: var(--color4);
}
.owl-color .owl-dots, .owl-important-category-wrapper .owl-dots, .owl-related .owl-dots, .owl-decor .owl-dots {
  margin-top: 30px;
}

.owl-standards .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  height: 0;
}
.owl-standards .owl-nav .owl-prev span, .owl-standards .owl-nav .owl-next span {
  position: absolute;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.owl-standards .owl-nav .owl-next:hover span {
  color: var(--color2);
}
.owl-standards .owl-nav .owl-next span {
  left: -15px;
  top: -12px;
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  color: var(--color4);
}
.owl-standards .owl-nav .owl-prev:hover span {
  color: var(--color2);
}
.owl-standards .owl-nav .owl-prev span {
  right: -15px;
  top: -12px;
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  color: var(--color4);
}

.owl-color .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.owl-color .owl-prev span {
  font-size: 1rem !important;
  right: 0 !important;
  padding: 5px;
  top: -16px;
}
.owl-color .owl-next span {
  font-size: 1rem !important;
  left: 0 !important;
  padding: 5px;
  top: -16px;
}

@media screen and (max-width: 992px) {
  .owl-stage {
    padding-right: 0 !important;
  }
}

.color-wrapper .owl-next, .color-wrapper .owl-prev {
  background: #fff !important;
  width: 30px !important;
  height: 30px !important;
  margin-top: -6px !important;
}
.color-wrapper .owl-next:hover, .color-wrapper .owl-prev:hover {
  background: #fff;
}
.color-wrapper .owl-next span, .color-wrapper .owl-prev span {
  top: 0;
  color: #999 !important;
}
@media screen and (max-width: 1439.98px) {
  .color-wrapper .owl-nav {
    margin-top: 8px !important;
    position: absolute !important;
    top: 50% !important;
  }
}
@media screen and (max-width: 1280px) {
  .color-wrapper .owl-nav {
    margin-top: 6px !important;
  }
}

.product {
  margin-top: 30px;
  position: relative;
}
@media (max-width: 757.98px) {
  .product .row {
    justify-content: center;
  }
}
.product:before {
  content: "";
  position: absolute;
  top: -55px;
  left: 0;
  right: 0;
  z-index: 10;
  height: 26px;
  background: url(../images/content/bg-top.png) center center no-repeat;
  background-size: cover;
}
.product__wrapper {
  padding: 45px 0 30px 0;
}
@media (max-width: 991.98px) {
  .product__wrapper {
    padding: 15px 0px;
  }
}
.product__wrapper:hover .product__title {
  color: var(--color1);
}
.product__wrapper:hover .Product__first {
  opacity: 0;
}
.product__wrapper:hover .product__second {
  opacity: 1;
}
.product__img {
  width: 110px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  min-height: 100px;
}
.product__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product__first {
  opacity: 1;
}
.product__second {
  opacity: 0;
  position: absolute;
}
.product__title {
  margin-top: 4rem;
  margin-bottom: 1.4rem;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color2);
  text-align: center;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.product__content {
  margin-top: 0;
  font-weight: 300;
  font-size: 1.6rem;
  text-align: center;
  color: #787878;
  line-height: 2.6rem;
  padding: 0 20px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* autoprefixer: off */
}
@media (max-width: 991.98px) {
  .product__content {
    padding: 0px 0px;
  }
}
@media (max-width: 575.98px) {
  .product__content {
    padding: 0px 65px;
  }
}
@media (max-width: 380.98px) {
  .product__content {
    padding: 0px 35px;
  }
}

.product-slogan {
  font-size: 2.4rem;
  color: #585858;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}
.product-slogan .bold-slogan {
  font-size: 2.8rem;
}

.slogan-wrapper {
  margin-bottom: 45px;
}

.slogan-wrapper-type2 {
  margin-bottom: 30px;
  margin-top: 20px;
}
.slogan-wrapper-type2 .product__wrapper {
  border-radius: 16px;
  background: #fff;
  margin-top: 16px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 0 10px;
  display: flex;
}
.slogan-wrapper-type2 .product__img {
  width: 60px;
  margin-right: 15px;
}
.slogan-wrapper-type2 .product__title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.slogan-wrapper-type2 .product__content {
  font-size: 1.2rem;
  line-height: 2rem;
}
.slogan-wrapper-type2 .product__link-details {
  width: calc(100% - 80px);
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
  margin: 30px auto;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
}

.flip-card-front {
  background-color: #f5f5f5;
}

.flip-card-back {
  background-color: #fff;
  color: #585858;
  font-size: 13px;
  overflow: hidden;
  text-align: right;
  padding: 20px 25px;
  line-height: 31px;
  transform: rotateY(180deg);
}

.owl-product .item {
  padding: 20px 20px 5px 20px;
}

.product-grid8 {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  border: 1px solid transparent;
  background-color: white;
  width: 100%;
  position: relative;
  transition: 0.5s all;
}
.product-grid8 img {
  transition: 0.5s all;
}
.product-grid8:hover {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  position: relative;
  z-index: 2;
  transition: 0.5s all;
  transform: scale(1.02);
}
.product-grid8:hover .product-content .title {
  color: var(--color2);
}
.product-grid8 .product-image8 {
  position: relative;
  transition: all 0.3s ease 0s;
}
.product-grid8 .product-image8 img {
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
.product-grid8 .product-discount-label {
  display: block;
  padding: 7px;
  color: #fff;
  background-color: var(--color2);
  position: absolute;
  top: 10px;
  right: 3px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.product-grid8 .product-content {
  height: 175px;
  padding: 10px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  position: relative;
  border-bottom: 1px solid #f1f1f1;
}
.product-grid8 .product-content .product-details {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  bottom: 12px;
  padding-top: 12px;
  border-top: #eee solid 1px;
  right: 0;
}
.product-grid8 .product-content .product-details .icon {
  padding-left: 5px;
  font-size: 16px;
  top: -3px;
  position: relative;
}
.product-grid8 .product-content .product-details-item {
  display: flex;
  color: #bdbdbd;
}
.product-grid8 .product-content .product-details-item span {
  display: inline-block;
}
.product-grid8 .product-content .size-title {
  color: #c5c5c5;
  font-size: 12px;
  font-weight: 300;
  top: 5px;
  position: relative;
}
.product-grid8 .product-content .price {
  color: #8a0a0a;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 5px;
  transition: all 0.3s;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  flex-direction: column;
}
.product-grid8 .product-content .price span {
  color: lightgrey;
  font-size: 1.3rem;
  text-decoration: line-through;
  margin-left: 7px;
  margin-right: 2px;
  display: inline-block;
}
.product-grid8 .product-content .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* autoprefixer: off */
  line-height: 1.7;
  font-size: 1.4rem;
  margin: 0;
  color: #585858;
  font-weight: 400;
  transition: all 0.3s ease 0s;
  text-align: right;
}
.product-grid8 .social {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  bottom: 13px;
  transform: translate(-50%, 0);
  z-index: 1;
  display: block;
}
@media (max-width: 767.98px) {
  .product-grid8 .social {
    right: -14px;
  }
}
.product-grid8 .social li {
  opacity: 0;
  transform: translateY(3px);
  transition: all 0.5s ease 0s;
}
.product-grid8 .social li a {
  color: var(--color2);
  background-color: #e4ece0;
  font-size: 17px;
  line-height: 40px;
  text-align: center;
  height: 40px;
  width: 40px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.product-grid8 .social li a:hover {
  color: var(--color5);
}
@media (max-width: 767.98px) {
  .product-grid8 .social li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
@media (max-width: 767.98px) {
  .product-grid8 .social li {
    opacity: 1;
    transform: translateY(0);
    margin: 0 0 13px;
  }
}

.article {
  padding: 10px;
}
@media screen and (max-width: 992px) {
  .article {
    padding: 5px 10px;
  }
}
.article .article__items-wrapper {
  background: #fff;
  -webkit-box-shadow: 0 2px 4px 0 #0000001a;
  box-shadow: 0 2px 4px 0 #0000001a;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  display: block;
  overflow: hidden;
}
.article__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  background-color: white;
  border: 0;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.article__img-wrapper {
  height: auto;
  padding: 15px;
}
.article__date {
  color: #bbbbbb;
  position: absolute;
  top: 0;
  right: 35px;
  font-size: 11px;
}
@media screen and (max-width: 992px) {
  .article__date {
    right: 33px;
    font-size: 9px;
  }
}
.article__date .icon {
  right: -25px;
  position: absolute;
  font-size: 16px;
  top: -2px;
}
.article__img {
  width: 100%;
  height: auto;
}
.article .media-body {
  padding: 0 8px;
  position: relative;
  height: 180px;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 992px) {
  .article .media-body {
    height: 130px;
  }
}
.article__title {
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 600;
  margin: 20px 0 5px 0px;
  color: var(--color2);
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* autoprefixer: off */
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 992px) {
  .article__title {
    font-size: 11px;
  }
}
.article__content {
  line-height: 1.8;
  color: #444;
  text-align: justify;
  padding-left: 15px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* autoprefixer: off */
  font-size: 1.3rem;
}
@media screen and (max-width: 992px) {
  .article__content {
    font-size: 9px;
    line-height: 1.7;
  }
}
.article__button {
  background-color: transparent;
  color: var(--color2);
  justify-content: flex-end;
  display: flex;
  padding: 5px 15px;
  margin-bottom: 1.5rem;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 10px;
  font-size: 12px;
}
.article__icon {
  font-size: 1rem;
  margin-right: 7px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
@media screen and (max-width: 992px) {
  .article__icon {
    position: relative;
    right: 15px;
  }
}
.article:hover .article__icon,
.article:hover .article__button,
.article:hover .article__title {
  color: var(--color1);
}
.article:hover .article__icon {
  opacity: 1;
}

@media screen and (max-width: 992px) {
  .article__button-text {
    display: none;
  }
}

.row-article .article__items {
  margin: 0;
  width: 222px;
}
@media screen and (min-width: 1440px) {
  .row-article .article__items {
    width: 252px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .row-article .article__items {
    width: 200px;
  }
}
.row-article .media-body {
  height: 206px;
  margin-top: 16px;
}
@media screen and (min-width: 1440px) {
  .row-article .media-body {
    height: 230px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .row-article .media-body {
    height: 183px;
  }
}
.row-article .article__content {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  /* autoprefixer: off */
}
.row-article .article__img-wrapper {
  width: 245px;
  padding: 0;
}
.row-article .article__items-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  margin-bottom: 16px;
}

.article__comment {
  color: #bbbbbb;
  position: absolute;
  bottom: 19px;
  right: 35px;
  font-size: 11px;
}
@media screen and (max-width: 992px) {
  .article__comment {
    font-size: 9px;
    bottom: 17px;
  }
}
.article__comment .icon {
  right: -25px;
  position: absolute;
  font-size: 16px;
  top: -2px;
}

.article__items-wrapper {
  transition: 0.2s all;
}
.article__items-wrapper.aos-animate:hover {
  -webkit-box-shadow: 0 2px 15px 0 #0000001a;
  box-shadow: 0 2px 15px 0 #0000001a;
  transform: scale(1.01) !important;
  -webkit-transform: scale(1.01) !important;
}

.blog .blog__title {
  margin-top: 0;
}
.blog .blog__img {
  max-width: 400px;
  margin-bottom: 15px;
}

.page .page-item {
  border-radius: 16px;
  background: #fff;
  text-align: justify;
  margin-top: 0;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 45px;
  padding: 30px;
}

@media screen and (max-width: 992px) {
  .article-right-item {
    padding-left: 5px;
  }
}

@media screen and (max-width: 992px) {
  .article-left-item {
    padding-right: 5px;
  }
}

@media screen and (max-width: 991.98px) {
  .editor .blog__img {
    width: 100%;
  }
}

/*# sourceMappingURL=index.css.map */
