@font-face {
  font-family: 'Vazirmatn';
  src: url('../fonts/Vazirmatn[wght].woff2') format('woff2 supports variations'),
    url('../fonts/Vazirmatn[wght].woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* base  */

:root {
  --color1: #FE0000;
  --color2: #000;
  --back: #fff;
  --font1: 'Vazirmatn';
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font1);
  direction: rtl;
  background-color: var(--back);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--color1)
}

.ltr {
  direction: ltr;
}

.rtl {
  direction: rtl;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

@media (max-width: 767px) {
  .d-m-none {
    display: none !important;
  }

}

.col-20 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .col-lg-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 767.98px) {

  .navbar-expand-md>.container,
  .navbar-expand-md>.container-fluid,
  .navbar-expand-md>.container-lg,
  .navbar-expand-md>.container-md,
  .navbar-expand-md>.container-sm,
  .navbar-expand-md>.container-xl {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* navbar */


.navbar-toggler {
  display: none;
}

.navbar-top::after {
  content: '';
  display: block;
  background-image: linear-gradient(90deg, #F5F5F5 0%, #FE0000 50.48%, #F5F5F5 100%);
  height: 2px;
}

.navbar-top {
  background-color: #fff;
  position: relative;
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.navbar-custom {
  height: 55px;
  padding: 0;
  z-index: 999;
  transition: 0.3s;
  background-color: #fff;
  border-bottom: 1px solid #213F2E1A;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo-img {
  height: 47px;
  object-fit: contain;
}

.navbar-logo-title {
  color: #000;
  line-height: 1.7;
  font-weight: 500;
  margin-right: 15px;
}

.nav-item {
  margin: 0 10px;
  white-space: nowrap;
}

.nav-item i {
  padding-top: 5px;
  padding-left: 5px;
  font-size: 16px;
}

.nav-item a {
  display: flex;
  align-items: center;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 400;
  color: #292D32;
}

.nav-item a:hover {
  color: var(--color2) !important;
}

.navbar-category-first {
  background: #213F2E1A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 12px 0 0;
  color: #292D32;
  min-width: 133px;
  height: 45px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
}

.navbar-search {
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  width: 50%;
  max-width: 600px;
  background: #F5F5F5;
  padding: 10px;

}

.navbar-search input {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 0;
  outline: none;
  padding: 10px;
  font-size: 14px;
  background: transparent;
}

.navbar-search button {
  background: transparent;
  border: 0;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  width: 26px;
  padding: 0;
  line-height: 1;
  font-size: 18px;
  color: var(--color2);
}

.navbar-right {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.navbar-left {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-grow: 1;
}

.navbar-btn {
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  color: var(--color2);
  font-size: 16px;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  padding: 0 15px;
}

.navbar-btn i {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 20px;
  margin-left: 7px;
}

.navbar-btn:hover {
  color: var(--color1);
}

.navbar-btn-border {
  background: #000;
  width: 1px;
  height: 24px;
  display: block;
}


@media (max-width:767.5px) {
  .navbar-top::after {
    content: unset;
  }

  .navbar-right {
    flex-grow: unset;
  }

  .navbar-left {
    flex-grow: unset;
  }

  .navbar-btn {
    font-size: 14px;
    padding: 0 5px;
  }

  .navbar-btn span {
    display: none;
  }

  .navbar-btn i {
    margin: 0;
  }

  .navbar-custom .container {
    flex-wrap: nowrap;
  }

  .navbar-custom .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-custom .container-lg {
    flex-wrap: nowrap;
  }

  .navbar-top {
    position: unset;
  }

  .navbar-custom {
    height: 0px;
  }

  .navbar-logo {
    margin-left: auto;
  }

  .navbar-logo-img {
    height: 24px;
  }

  .navbar-logo img {
    height: 24px;
  }

  .navbar-logo-title {
    font-size: 14px;
  }

  .navbar-inner {
    height: auto;
    padding: 10px 0;
    flex-wrap: wrap;
  }

  .navbar-search {
    max-width: 100%;
    order: 4;
    margin-top: 7px;
    height: 40px;
    margin-right: 0;
  }

  .navbar-search input {
    font-size: 12px;
  }

  .navbar-btn-border {
    height: 22px;
    margin: 0 5px;
  }

  .navbar-toggler {
    border: 0;
    margin: 0;
    padding: 0;
    color: #7b7b7b !important;
    display: flex;
    margin-left: 15px;
  }

  .offcanvas-nav .navbar-logo {
    margin-left: unset;
    margin-right: auto;
  }

  .navbar-btn-badge {
    width: 14px !important;
    height: 14px !important;
    top: -2px !important;
  }

  .navbar-social {
    justify-content: center;
    margin-top: 15px;
  }
}


@media (min-width:767px) and (max-width:991px) {
  .nav-item {
    margin-left: 0;
  }

  .nav-item a {
    font-size: 12px;
  }

  .navbar-category-first {
    min-width: auto;
    padding: 10px;
  }

}

@media (min-width:992px) and (max-width:1100px) {
  .nav-item {
    margin-left: 10px;
  }

  .navbar-btn-login span {
    display: none;
  }

  .navbar-btn span {
    display: none;
  }

}

@media (min-width:768.5px) {
  .navbar-controll {
    display: flex;
    align-items: center;
  }

  .navbar-nav {
    justify-content: center;
    width: 100%;
  }
}




/* dropdown */
.dropdown a::after {
  margin-top: -2px;
  margin-right: 10px;
  border: 0;
  font-family: "raya-icon";
  content: '\f107';
}

.dropdown ul li a::after {
  content: unset;
}

.dropdown .dropdown>a:after {
  display: block;
  content: " ";
  float: left;
  border: 0;
  font-family: "raya-icon";
  content: '\f104';
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown ul {
  left: 0;
  z-index: 1000;
  display: none;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  color: #212529;
  text-align: right;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  position: absolute;
  border: 0;
  border-radius: 5px;
  margin-top: 0px;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  min-width: 200px;
  border-radius: 8px;
  font-size: 14px;
  transition: opacity 0.3s ease-in-out;
  right: 0;
}

.dropdown ul li a {
  color: #444;
  font-size: 14px;
  display: block;
  white-space: nowrap;
  width: 100%;
  padding: 7px 14px;
  font-weight: normal;
}

.dropdown ul li a:hover {
  color: var(--color1);
}

@media (min-width:767.5px) {
  .dropdown ul::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 5px;
    transform: translateX(-50%) rotate(180deg);
    border-top: 10px solid var(--color2);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }

  .dropdown .dropdown ul::before {
    content: unset;
  }

  .dropdown .dropdown {
    position: relative;
  }

  .dropdown .dropdown>ul {
    top: 0;
    right: 100%;
  }

  .dropdown .dropdown:hover>a:after {
    border-left-color: #000;
  }

  .dropdown .dropdown:hover>ul {
    display: block;
  }

  .dropdown:hover>ul {
    display: block;
  }

  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -20;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0.1s, 0.4s;
  }

  #overlay.active {
    visibility: visible;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0s, 0s;
    background: rgba(72, 72, 72, 0.6);
    z-index: 100;
  }

}




/* offcanvas */
@media (max-width: 767.5px) {
  .dropdown ul::before {
    content: unset;
  }

  .dropdown a::after {
    content: '\f104';
    font-size: 16px;
    margin-right: auto;
  }

  .dropdown .dropdown>a:after {
    margin-top: -2px;
    font-size: 16px;
  }

  .offcanvas-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
  }

  .dropdown ul {
    left: unset;
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    margin: 0;
    padding: 0;
    overflow: auto;
  }

  .dropdown ul.active {
    right: 0;
  }

  .offcanvas-nav.active {
    right: 0;
  }


  .offcanvas-header {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #575757;
    background-color: #fff;
    padding: 0 15px;
    margin-bottom: 10px;
  }


  .offcanvas-header .close {
    background: transparent;
    border: 0;
    color: #575757;
    font-size: 20px;
  }

  .offcanvas-header .back {
    background: transparent;
    border: 0;
    color: #575757;
    font-size: 20px;
  }

  .nav-item {
    padding: 10px 20px;
    margin-left: 0px;
    display: flex;
  }

  .dropdown ul li a {
    padding: 10px 20px;
  }

  .nav-item a {
    padding: 0;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    font-size: 14px;
    font-weight: normal;
  }

  .navbar-category-first i {
    font-size: 16px;
    margin-left: 0;
  }

  .navbar-category-first {
    height: auto;
    min-width: auto;
    background: transparent;
    color: #323232;
    font-weight: 500;
  }

}


@media (min-width:768px) {
  .offcanvas-header {
    display: none;
  }
}



/* basket */

.dropdown-new .dropdown-menu {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
}

.dropdown-new a::after {
  display: none;
}

.basket-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color1);
  padding-bottom: 10px;
  padding-top: 10px;
}

.basket-item:first-child {
  padding-top: unset;

}

.basket-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}

.basket-total-title {
  font-size: 14px;
  font-weight: 600;
}

.basket-item-img {
  width: 70px;
  border-radius: 10px;
}

.basket-item-info {
  margin-right: 15px;
  white-space: nowrap;
}

.basket-item-count {
  margin-top: 5px;
  display: flex;
  align-items: end;
}

.basket-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.basket-item-count span {
  color: var(--color1);
  font-size: 16px;
}

.basket-item-discount {
  color: #545454 !important;
  text-decoration: line-through;
  font-size: 14px !important;
}

.basket-link {
  background: var(--color1);
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid var(--color1);
  transition: 0.3s;
}

.basket-link:hover {
  background-color: #fff;
  color: var(--color1);
}

.navbar-btn-badge {
  background: var(--color2);
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0px;
  top: -4px;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-top: 2px;
}

.btn.btn-custom {
  background: var(--color1);
  color: #fff;
}

/* jconfirm  */
.btn.btn-custom:hover {
  opacity: 0.8;
}

.jconfirm-box {
  border-radius: 10px !important;
}



@media (min-width:768px) {

  .navbar-category a::after {
    content: unset;
  }

  .navbar-category.dropdown ul {
    min-width: 300px;
    border-radius: 10px;
    background-color: #fff;
    padding: 4px 0;
    margin-top: -15px;
  }

  .navbar-category.dropdown ul ul {
    margin-top: 0px;
  }

  .navbar-category.dropdown ul ul ul {
    margin-top: 0px;
  }

  .navbar-category.dropdown ul li {
    padding: 0px 20px;
  }

  .navbar-category.dropdown ul li:last-child a {
    border-bottom: 0;
  }

  .navbar-category.dropdown .dropdown ul li a {
    border-bottom: solid 1px #dcdcdc;
  }



  .navbar-category.dropdown .dropdown ul {
    right: 100%;
  }

  .navbar-category.dropdown ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #646464;
    font-size: 14px;
    padding: 10px 14px;
    border-bottom: solid 1px #dcdcdc;
  }

  .navbar-category.dropdown .dropdown>a:after {
    margin-top: 0;
  }

  .navbar-category.dropdown ul::before {
    content: unset;
  }

  .navbar-category.dropdown .dropdown ul {
    width: 800px;
    flex-wrap: wrap;
    direction: rtl;
    height: 358px;
    overflow-y: auto;
    margin-top: -1px;
  }

  .navbar-category.dropdown .dropdown ul li a {
    font-weight: bold;
    color: var(--color2);
  }

  .navbar-category.dropdown .dropdown ul ul li a {
    font-weight: normal;
  }

  .navbar-category.dropdown .dropdown ul li {
    width: 25%;
  }

  .navbar-category.dropdown .dropdown ul a::after {
    content: unset;
  }

  .navbar-category.dropdown .dropdown:hover>ul {
    display: flex;
  }

  .navbar-category.dropdown .dropdown ul ul {
    width: auto;
    position: relative;
    width: auto;
    min-width: auto;
    height: auto;
    display: flex;
    right: 0;
    flex-direction: column;
    box-shadow: unset;
    overflow: unset;
    border: 0;
    margin: 0;
  }

  .navbar-category.dropdown .dropdown ul ul li {
    width: auto;
    padding: 0;
  }

  .navbar-category.dropdown .dropdown ul ul li a {
    border-bottom: 0;
    color: #323232;
  }

  .navbar-category.dropdown .dropdown {
    position: unset;
  }

  .mega-scroll {
    height: 350px;
    overflow-y: auto;
    direction: ltr;
  }
}

@media (min-width:767px) and (max-width:991px) {
  .navbar-category.dropdown .dropdown ul {
    width: 385px;
  }

  .navbar-category.dropdown .dropdown ul li {
    width: 33%;
  }
}





/* basket offcanvas */

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  /* visibility: hidden; */
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform .3s ease-in-out;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 350px;
  border-right: 1px solid rgba(0, 0, 0, .2);
  transform: translateX(-100%);
}

.offcanvas.show {
  transform: none;
}

.offcanvas-body {
  padding: 20px 0;
  height: 100%;
  overflow: auto;
}

.offcanvas-head {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}

.offcanvas-footer {
  padding: 15px;
  border-top: 1px solid #ccc;
}

.offcanvas-close {
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #444;
  padding: 0;
}


.basket-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  padding-top: 10px;
}

.basket-item:first-child {
  padding-top: unset;

}

.basket-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}

.basket-total-title {
  font-size: 14px;
  font-weight: 600;
}

.basket-item-img {
  width: 90px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
}

.basket-item-info {
  margin-right: 15px;
  white-space: nowrap;
}

.basket-item-count {
  margin-top: 5px;
  display: flex;
  align-items: end;
}

.basket-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.basket-item-count span {
  color: var(--color1);
  font-size: 16px;
}

.basket-item-discount {
  color: #545454 !important;
  text-decoration: line-through;
  font-size: 14px !important;
}

.basket-link {
  background: var(--color1);
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid var(--color1);
  transition: 0.3s;
}

.basket-link:hover {
  background-color: #fff;
  color: var(--color1);
}


.basket-item {
  padding: 15px;
}

.basket-total {
  margin-top: 0;
}

.offcanvas-title {
  font-weight: 600;
  color: #444;
  font-size: 18px;
}

#overlay-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -20;
  transition: background 0.1s ease, z-index 0s;
  transition-delay: 0.1s, 0.4s;
}

#overlay-offcanvas.active {
  visibility: visible;
  transition: background 0.1s ease, z-index 0s;
  transition-delay: 0s, 0s;
  background: rgba(72, 72, 72, 0.6);
  z-index: 1000;
}

/* swiper */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-center {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-custom {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-1 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-3 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-4 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-5 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-6 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}


.swiper-pagination-bullet {
  border-radius: 20px;
  width: 10px;
  height: 10px;
}


.swiper-pagination-bullet-active {
  width: 20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color1);
}


.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  font-weight: 600;
  color: var(--color1);
}

.swiper-button-next {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 1px solid var(--color1);
  border-radius: 50px;
  transition: 0.3s;
}

.swiper-button-prev {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 1px solid var(--color1);
  border-radius: 50px;
  transition: 0.3s;
}

.swiper-button-next:hover {
  background: var(--color1);
}

.swiper-button-prev:hover {
  background: var(--color1);
}

.swiper-button-next:hover::after {
  color: #fff;
}

.swiper-button-prev:hover::after {
  color: #fff;
}




@media (max-width:767px) {
  .swiper-button-next {
    width: 30px;
    height: 30px;
    top: 55%;
  }

  .swiper-button-prev {
    width: 30px;
    height: 30px;
    top: 55%;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px;
  }
}


/* animate */
.myAnim1 {
  animation: myAnim1 10s linear 0s infinite normal forwards;
}

.myAnim2 {
  animation: myAnim2 15s linear 0s infinite normal forwards;
}

.myAnim2-2 {
  animation: myAnim2 30s linear 0s infinite normal forwards;
}

.myAnim3 {
  animation: myAnim3 10s linear 0s infinite normal forwards;
}

.myAnim4 {
  animation: myAnim4 10s linear 0s infinite normal forwards;
}

@keyframes myAnim1 {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 0;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes myAnim2 {

  0%,
  100% {
    transform: translateY(0);
  }

  10%,
  30%,
  50%,
  70% {
    transform: translateY(-8px);
  }

  20%,
  40%,
  60% {
    transform: translateY(8px);
  }

  80% {
    transform: translateY(6.4px);
  }

  90% {
    transform: translateY(-6.4px);
  }
}

@keyframes myAnim3 {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes myAnim4 {
  0% {
    animation-timing-function: ease-out;
    transform: scale(1);
    transform-origin: center center;
  }

  10% {
    animation-timing-function: ease-in;
    transform: scale(0.91);
  }

  17% {
    animation-timing-function: ease-out;
    transform: scale(0.98);
  }

  33% {
    animation-timing-function: ease-in;
    transform: scale(0.87);
  }

  45% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
}

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
  will-change: opacity, transform;
}

.animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}



/* home */

.home-wrap-1::before {
  content: '';
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 41.66%, rgba(0, 0, 0, 0.5) 71.46%);
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-wrap-1 {
  min-height: 500px;
  height: calc(100vh - 142px);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 50px 0;
}

.home-wrap-1-inner {
  width: 40%;
}

.home-wrap-1-title {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}

.home-warp-1-text {
  font-size: 22px;
  color: #fff;
  margin-top: 20px;
  line-height: 1.6;
}

.home-wrap-1-btn-body {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.home-wrap-1-btn-a {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  min-width: 232px;
  background: var(--color1);
  border: 1px solid #C62E50;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  transition: 0.3s;
}

.home-wrap-1-btn-a:hover {
  background: #fff;
  color: var(--color1);
}

.home-wrap-1-btn-b {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  min-width: 232px;
  background: #FFFFFF4D;
  border: 1px solid #FFFFFF;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  transition: 0.3s;
}

.home-wrap-1-btn-b:hover {
  background: #fff;
  color: var(--color1);
}

/* 2 */

.home-wrap-2 {
  position: relative;
  margin-top: 100px;
  overflow: hidden;
}

.home-wrap-2-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.home-wrap-2-title::after {
  content: '';
  display: block;
  background-image: linear-gradient(90deg, #F5F5F5 0%, #FE0000 50.48%, #F5F5F5 100%);
  height: 2px;
  margin-top: 40px;
}

.home-wrap-2-box {
  padding: 40px;
  background: #F5F5F5;
  border-radius: 24px;
}

.home-wrap-2-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  transition: 0.3s;
  color: #000;
  background: #fff;
  box-shadow: 0px 0px 2px 0px #00000040;
  border-radius: 12px;
  padding-bottom: 15px;
}

.home-wrap-2-item-cover {
  width: 104px;
  height: 104px;
  background: #F1F1F1;
  border: 2px solid #FE0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -52px;
}

.home-wrap-2-item-icon {
  width: 88px;
  height: 54px;
  object-fit: contain;
}

.home-wrap-2-item-title {
  font-size: 15px;
  margin-top: 15px;
}

.home-wrap-2-item:hover {
  background: var(--color1);
  color: #fff;
}

/* 3 */

.home-wrap-3 {
  margin-top: 100px;
}

.home-wrap-3-box {
  background: var(--color1);
  border-radius: 24px;
  position: relative;
  height: 100%;
  max-height: 299px;
}

.home-wrap-3-icon img {
  width: 36px;
  height: 36px;
}

.home-wrap-3-icon {
  padding-left: 20px;
  padding-bottom: 20px;
  background: #fff;
  width: max-content;
  border-radius: 0 0 0 40px;
  position: relative;
}

.home-wrap-3-icon::before {
  content: '';
  width: 50px;
  height: 50px;
  border-radius: 0px 0px 20px 0px;
  box-shadow: 31px 21px 0px 0px #ffffff;
  position: absolute;
  left: -50px;
  transform: rotate(270deg);
  top: 0;
}

.home-wrap-3-icon::after {
  content: '';
  width: 50px;
  height: 50px;
  border-radius: 0px 0px 20px 0px;
  box-shadow: 10px 30px 0px 0px #ffffff;
  position: absolute;
  right: 0;
  transform: rotate(270deg);
  bottom: -50px;
}

.home-wrap-3-info {
  padding: 25px;
  padding-top: 10px;
}

.home-wrap-3-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.home-wrap-3-text {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

.home-wrap-3-img {
  width: 100%;
  margin-top: 15px;
  height: 127px;
  object-fit: contain;
}


.card-product {
  border-radius: 16px;
  display: block;
  padding: 15px;
  background: #fff;
  box-shadow: 0px 0px 0px 0px #00000040;
  border: 1px solid #ddd;
  position: relative;
  transition: 0.3s;
}

.card-product:hover {
  border-color: #ccc;
}

.card-product-img-body {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  /*background: #F5F5F5;*/
  background: linear-gradient(180deg, #8080805c, transparent);
  height: 138px;
  /*padding: 15px;*/
}

.card-product-img-body:hover img {
  transform: scale(1.05);
}


.card-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-product-title {
  font-size: 16px;
  color: #000;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  margin-top: 10px;
  font-weight: 700;
  height: 48px;
  text-align: center;
}

.card-product-text {
  color: #000;
  margin-top: 10px;
  line-height: 1.7;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  height: 54px;
}

.card-product-flex {
  margin-top: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.card-product-price-discunt {
  display: flex;
  height: 22px;
  position: absolute;
  border: 1px solid #FE0000;
  top: 20px;
  left: 20px;
  background: #fff;
  font-size: 14px;
  padding: 0 4px;
  align-items: center;
  line-height: 1;
  font-weight: bold;
  color: #000;
  border-radius: 4px;
  padding-top: 3px;
}

.card-product-price {
  display: flex;
  flex-direction: column;
  align-items: end;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  height: 42px;
}


.card-product-btn {
  width: 26px;
  height: 26px;
  background: var(--color1);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  padding-top: 2px;
}

.card-product-btn:hover {
  background: var(--color2);
}


.card-product-price-before {
  text-decoration: line-through;
  color: #959595;
}

.swiper-4-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color1);
  border-radius: 50px;
  transition: 0.3s;
  font-size: 20px;
  color: #fff;
  margin: 0 8px;
}

.swiper-4-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid #000;
  font-size: 20px;
  color: var(--color1);
  margin: 0 8px;
}

.swiper-4-next:after {
  font-family: "raya-icon";
  content: '\f104';
}

.swiper-4-prev:after {
  font-family: "raya-icon";
  content: '\f105';
}

.swiper-4-next:hover {
  color: #fff;
  background: var(--color2);
}

.swiper-4-prev:hover {
  color: #fff;
  background: var(--color2);
}

.swiper-section-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 40px;
}

.swiper-section-btns::before {
  content: '';
  display: block;
  background-image: linear-gradient(90deg, #FE0000 0%, #FFFFFF 100%);
  height: 2px;
  width: 70px;
  margin: 0 5px;
}

.swiper-section-btns::after {
  content: '';
  display: block;
  background-image: linear-gradient(270deg, #FE0000 0%, #FFFFFF 100%);
  height: 2px;
  width: 70px;
  margin: 0 5px;
}

.home-wrap-4 {
  margin-top: 100px;
}

.banner-home {
  width: 100%;
}

/* wrap 5 */

.home-wrap-5 {
  margin-top: 30px;
}

.home-section-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.home-section-flex.custom-bg {
  background: var(--color1);
  color: #fff;
  padding: 10px 15px;
  border-radius: 12px;
}

.home-section-flex.custom-bg .home-section-title {
  color: #fff;
}

.home-section-btns {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
}

.home-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.swiper-5-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color1);
  border-radius: 50px;
  transition: 0.3s;
  font-size: 20px;
  color: #fff;
  border: 1px solid #fff;
}

.swiper-5-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid #000;
  font-size: 20px;
  color: var(--color1);
}

.swiper-5-next:after {
  font-family: "raya-icon";
  content: '\f104';
}

.swiper-5-prev:after {
  font-family: "raya-icon";
  content: '\f105';
}

.swiper-5-next:hover {
  color: #fff;
  background: var(--color2);
}

.swiper-5-prev:hover {
  color: #fff;
  background: var(--color2);
}

/* wrap 6 */


.home-wrap-6 {
  margin-top: 100px;
}

.home-wrap-6-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #000;
  /*height: 220px;*/
}

.home-wrap-6-text {
  font-size: 23px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 40px;
}

.card-comment {
  background: #F5F5F5;
  border-radius: 12px;
  box-shadow: 0px 0px 0px 0px #00000040;
  border: 1px solid #ddd;
  padding: 24px;
}

.card-comment-title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.card-comment-text {
  margin-top: 15px;
  height: 70px;
}

.card-comment-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.card-comment-user {
  width: 50px;
  height: 50px;
}

.card-comment-rate {
  display: flex;
  font-size: 18px;
  color: var(--color1);
}

/* wrap 7 */

.home-wrap-7 {
  margin-top: 100px;
}

.home-wrap-7-box {
  background: #f5f5f5;
  border-radius: 24px;
  padding: 40px;
  padding-top: 0;
}

.home-warp-7-center {
  background: #fff;
  width: 100%;
  margin: auto;
  max-width: 500px;
  text-align: center;
  padding: 15px;
  padding-top: 10px;
  margin-bottom: 35px;
  position: relative;
}

.home-wrap-7-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  position: relative;
  z-index: 1;
}

.home-wrap-7-left {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  left: -35px;
  transform: scaleX(-1);
}

.home-wrap-7-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  right: -35px;
}

.home-wrap-8 {
  margin-top: 100px;
}

.home-wrap-9 {
  margin-top: 100px;
}

.home-wrap-9-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.card-blog {
  border-radius: 24px;
  display: block;
  padding: 24px;
  background: #F5F5F5;
}

.card-blog-img-body {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.card-blog-img-body:hover img {
  transform: scale(1.05);
}

.card-blog-img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-blog-title {
  font-size: 20px;
  color: #000;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  margin-top: 20px;
  font-weight: 700;
}

.card-blog-mute {
  text-align: end;
  color: #000;
  font-weight: 700;
  font-size: 18px;
}

.card-blog-text {
  color: #000;
  margin-top: 10px;
  line-height: 1.7;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  height: 54px;
}


.card-blog-btn {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color1);
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  border-radius: 16px;
  gap: 5px;
  transition: 0.3s;
  font-weight: 700;
}

.card-blog-btn:hover {
  background: var(--color2);
}

.home-wrap-10 {
  margin-top: 100px;
}

.home-wrap-10-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.home-wrap-10-img {
  width: 100%;
  margin-top: auto;
}

.faq-body {
  margin-top: 40px;
}

.faq-item {
  background: #F5F5F5;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 25px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: 600;
  font-size: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: #fff;
  background: #000;
  transition: transform 0.3s ease;
  min-width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding-top: 0px;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
  padding-top: 1px;
  background: #fff;
  color: #000;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  padding: 0 20px;
}

.faq-answer-content {
  padding-bottom: 25px;
}

.faq-item.active {
  background: var(--color1);
  color: #fff;
}


/* responsive home */

@media (max-width:767px) {
  .home-wrap-1 {
    height: auto;
    min-height: auto;
  }

  .home-wrap-1::before {
    background: rgba(0, 0, 0, 0.5);
  }

  .home-wrap-1-inner {
    width: 100%;
    text-align: center;
  }

  .home-wrap-1-btn-body {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .home-wrap-1-title {
    font-size: 20px;
  }

  .home-warp-1-text {
    font-size: 16px;
  }

  .home-wrap-1-btn-a {
    min-width: auto;
    height: 44px;
    font-size: 16px;
    padding: 10px 15px;
  }

  .home-wrap-1-btn-b {
    min-width: auto;
    height: 44px;
    font-size: 16px;
    padding: 10px 15px;
  }

  .home-wrap-2 {
    margin-top: 30px;
  }

  .home-wrap-2-box {
    padding: 20px;
    border-radius: 16px;
  }

  .home-wrap-2-title {
    font-size: 20px;
  }

  .home-wrap-2-title::after {
    margin-top: 20px;
  }

  .home-wrap-2-item-cover {
    width: 80px;
    height: 80px;
    margin-top: -40px;
    padding: 10px;
  }

  .home-wrap-2-item-icon {
    width: 100%;
    height: 100%;
  }

  .home-wrap-2-item {
    margin-top: 60px;
  }

  .home-wrap-2-item-title {
    font-size: 14px;
    margin-top: 10px;
  }

  .home-wrap-3 {
    margin-top: 30px;
  }

  .home-wrap-3-box {
    border-radius: 16px;
    display: flex;
    align-items: start;
    height: auto;
    margin-bottom: 15px;
  }

  .home-wrap-3-title {
    font-size: 20px;
  }

  .home-wrap-3-text {
    font-size: 14px;
  }

  .home-wrap-3-img {
    height: 80px;
  }

  .home-wrap-3-info {
    padding: 10px 20px;
  }

  .home-wrap-4 {
    margin-top: 30px;
  }

  .swiper-section-btns {
    margin-top: 25px;
  }

  .home-section-title {
    font-size: 18px;
  }

  .home-wrap-6 {
    margin-top: 30px;
  }

  .home-wrap-6-title {
    font-size: 20px;
  }

  .home-wrap-6-text {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .card-comment-title {
    font-size: 16px;
  }

  .card-comment-text {
    margin-top: 15px;
    font-size: 14px;
  }

  .card-comment-user {
    width: 42px;
    height: 42px;
  }

  .card-comment-flex {
    margin-top: 15px;
  }

  .home-wrap-7-title {
    font-size: 18px;
  }

  .home-warp-7-center {
    max-width: 210px;
  }

  .home-wrap-7-box {
    padding: 15px;
    padding-top: 0;
  }

  .home-wrap-7 {
    margin-top: 35px;
  }

  .home-wrap-8 {
    margin-top: 30px;
  }

  .home-wrap-9 {
    margin-top: 30px;
  }

  .home-wrap-9-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .card-blog {
    border-radius: 20px;
    padding: 15px;
  }

  .card-blog-img-body {
    border-radius: 16px;
  }

  .card-blog-img {
    height: 180px;
  }

  .card-blog-title {
    font-size: 16px;
  }

  .card-blog-text {
    font-size: 14px;
    height: 47px;
  }

  .card-blog-btn {
    height: 43px;
    font-size: 14px;
    border-radius: 12px;
  }

  .home-wrap-10-title {
    font-size: 20px;
    text-align: center;
  }

  .home-wrap-10 {
    margin-top: 30px;
  }

  .faq-question {
    padding: 20px;
    font-size: 14px;
  }

  .faq-body {
    margin-top: 20px;
  }

  .faq-answer-content {
    padding-bottom: 25px;
    font-size: 14px;
  }

}

/* footer */

.footer {
  margin-top: 100px;
  background-color: #F5F5F5;
  padding-top: 30px;
  padding-bottom: 60px;
  position: relative;
}

.footer-logo-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  width: 204px;
  height: 93px;
  object-fit: contain;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a {
  width: 38px;
  height: 38px;
  margin: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.footer-social .icon-instagram {
  padding-top: 1px;
  padding-right: 2px;
}

.footer-social .icon-telegram {
  font-size: 14px;
}

.footer-social .icon-phone {
  padding-top: 3px;
}

.footer-social a:hover {
  color: var(--color1);
}

.footer-namad {
  display: flex;
  flex-wrap: wrap;
}

.footer-namad img {
  margin-top: 25px;
  width: 100px;
  height: 110px;
  object-fit: contain;
}

.footer-header {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-top: 40px;
}

.footer-header::after {
  content: '';
  width: 100%;
  background: linear-gradient(270deg, #000000 0%, #FFFFFF 100%);
  height: 0.8px;
  display: block;
  margin-top: 20px;
}

.footer-text {
  text-align: justify;
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.7;
  color: #040C20;
  max-width: 90%;
}

.footer-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.footer-ul.footer-wrap {
  display: flex;
  flex-wrap: wrap;
}

.footer-ul.footer-wrap li {
  width: 50%;
}

.footer-link {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #000;
}

.footer-link:hover {
  color: var(--color1);
}

.footer-link i {
  width: 24px;
  margin-left: 10px;
  display: flex;
  font-size: 16px;
  color: #000;
}

.footer-link img {
  width: 24px;
  margin-left: 10px;
}

.footer-bottom {
  background-color: var(--color2);
  padding: 15px 0px;
}

.footer-bottom-item {
  font-size: 14px;
  color: #fff;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 2px;
  font-weight: 600;
}

.footer-bottom-item span {
  font-size: 14px;
  color: #fff;
}

.footer-bottom-item a {
  color: #fff;
}

.footer-bottom-item a:hover {
  color: var(--color1);
}

@media (max-width:767px) {
  .footer {
    margin-top: 40px;
    padding: 20px 0;
  }

  .footer-text {
    font-size: 12px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-header {
    font-size: 14px;
    margin-top: 15px;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-bottom-item {
    font-size: 12px;
    justify-content: center;
  }

  .footer-social {
    margin-top: 15px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }
}

/* inner */

/* breadcrumb */

.breadcrumb {
  font-size: 18px;
  margin: 0;
  padding: 0;
  background: transparent;
  margin-top: 25px;
  margin-bottom: 20px;
}

li.breadcrumb-item a {
  color: #000;
  font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #000;
  content: ">";
}

.breadcrumb-item.active a {
  color: #000;
  font-weight: bold;
}

li.breadcrumb-item a:hover {
  color: var(--color1);
}

@media (max-width:767px) {
  li.breadcrumb-item {
    white-space: nowrap;
  }

  .breadcrumb {
    font-size: 14px;
    flex-wrap: nowrap;
    height: 35px;
    overflow: auto;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}


.banner-wrapper.big {
  height: 500px;
}

.banner-wrapper {
  height: 349px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.banner-wrapper::before {
  content: '';
  background: #00000066;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.banner-wrapper-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.banner-wrapper-text {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-top: 15px;
}

.product-list {
  background: #F5F5F5;
  padding: 25px;
  border-radius: 24px;
}

.product-list-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}

.product-list-btn {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 25px;
  background: var(--color1);
  color: #fff;
  width: 100%;
  max-width: 348px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.3s;
}

.product-list-btn:hover {
  background: var(--color2);
  color: #fff;
}



@media (max-width:767px) {
  .banner-wrapper {
    height: auto !important;
    min-height: 180px;
    padding: 20px 0;
  }

  .banner-wrapper-title {
    font-size: 20px;
  }

  .banner-wrapper-text {
    font-size: 13px;
    text-align: justify;
    text-align-last: center;
    margin-top: 10px;
  }

  .product-list-title {
    font-size: 20px;
  }

  .product-list {
    padding: 20px 15px;
  }

  .product-list-btn {
    height: 48px;
    font-size: 14px;
  }

}

/* single product */

.product-img-body {
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-main-img {
  background-color: #fff;
  border: 1px solid #eee;
  text-align: center;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.product-other-img {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: -15px;
}

.product-other-img a {
  width: 100%;
}

.product-other-img img {
  display: flex;
  width: 100%;
  height: 115px;
  object-fit: cover;
  border-radius: 15px;
  border: solid 1px #eee !important;
  background-color: #fff !important;
}

.mz-thumb-selected img {
  border: solid 1px var(--color1) !important;
  filter: unset !important;
}

/* owl */

.product-other-img .owl-next {
  position: absolute;
  left: 5px;
  top: 28%;
  z-index: 9;
  border-radius: 40px !important;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27) !important;
  background-color: #fff !important;
  color: #000 !important;
  width: 32px;
  height: 32px;
}

.product-other-img .owl-prev {
  position: absolute;
  right: 5px;
  top: 28%;
  z-index: 9;
  border-radius: 40px !important;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27) !important;
  background-color: #fff !important;
  color: #000 !important;
  width: 32px;
  height: 32px;
}

.product-other-img .owl-next span {
  display: none;
}

.product-other-img .owl-prev span {
  display: none;
}

.product-other-img .owl-next:after {
  content: " ";
  font-family: "raya-icon";
  content: '\f104';
  font-size: 18px;
}

.product-other-img .owl-prev:after {
  content: " ";
  font-family: "raya-icon";
  content: '\f105';
  font-size: 18px;
}

.owl-theme .owl-nav .disabled {
  opacity: 0;
}

@media (max-width:767px) {
  .product-other-img img {
    height: 80px;
  }

  .product-other-img .owl-next {
    top: 22%;
  }

  .product-other-img .owl-prev {
    top: 22%;
  }
}

/* magic zoom */

.mz-hint-message {
  font-family: var(--font1);
}

.mz-hint-message::before {
  content: unset;
}

.mz-hint-message {
  display: inline-block;
  background: rgba(49, 51, 61, 0.7);
  border-radius: 2em;
  padding: .7em 1.1em;
  font-family: var(--font1);
}

a#productImgae>.mz-figure>img {
  height: 500px !important;
  max-height: 500px !important;
  object-fit: cover !important;
  max-width: 100% !important;
}

.MagicZoom>img,
.mz-figure>img {
  height: 500px !important;
  max-height: 500px !important;
  object-fit: cover !important;
  max-width: 100% !important;
}

.MagicZoom {
  /* width: auto; */
  width: 100%;
}

.MagicZoom figure {
  /* width: auto; */
  width: 100%;
}

@media (max-width:767px) {
  a#productImgae>.mz-figure>img {
    height: 200px !important;
    max-height: 200px !important;
    object-fit: cover !important;
  }

  .MagicZoom>img,
  .mz-figure>img {
    height: 200px !important;
    max-height: 200px !important;
    object-fit: cover !important;
  }
}



.product-info {
  padding: 0px;
  padding-left: 0;
}

.product-title {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.product-mute {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.product-item-body {
  position: relative;
  line-height: 2;
  margin: 20px 0;
}

.product-item-body::before {
  content: '';
  display: block;
  background-image: linear-gradient(90deg, #F5F5F5 0%, #FE0000 50.48%, #F5F5F5 100%);
  height: 2px;
  margin: 20px 0;
}

.product-item-body::after {
  content: '';
  display: block;
  /*background-image: linear-gradient(90deg, #F5F5F5 0%, #FE0000 50.48%, #F5F5F5 100%);*/
  height: 2px;
  margin: 20px 0;
}

.product-item{
  margin:10px 0;
}

.product-item span:first-child {
  font-weight: 700;
  margin-left: 5px;
}



.product-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.product-order-count {
  display: flex;
  align-items: center;
  max-width: 150px;
  height: 48px;
  border-radius: 16px;
  background: #F5F5F5;
  padding: 5px 15px;
}

.product-order-count input {
  width: 100%;
  text-align: center;
  height: 100%;
  border: 0;
  outline: none;
  cursor: unset;
  font-size: 21px;
  font-weight: 600;
  background: transparent;
  color: var(--color3);
}


.product-order-count button {
  width: 100%;
  text-align: center;
  height: 100%;
  background: transparent;
  border: 0;
  padding-top: 5px;
  font-size: 14px;
  min-width: 26px;
  max-width: 26px;
  height: 26px;
  background: #333333;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}


.product-order-count button:hover {
  background: var(--color1);
}

.product-price {
  display: flex;
  align-items: end;
  gap: 20px;
}

.product-price-title {
  font-size: 24px;
  font-weight: 700;
}


.product-price-main {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.product-price-before {
  font-weight: 700;
  text-decoration: line-through;
  font-size: 26px;
  text-align: end;
  color: #999;
}

.product-price-main {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.product-btn-add {
  height: 68px;
  background: var(--color1);
  width: 100%;
  max-width: 263px;
  border: 0;
  border-radius: 16px;
  font-size: 24px;
  color: #fff;
  margin-top: 20px;
  transition: 0.3s;
}

.product-btn-add:hover {
  background: var(--color2);
  color: #fff;
}

.product-price-discunt {
  display: flex;
  height: 22px;
  position: absolute;
  border: 1px solid #FE0000;
  top: 20px;
  left: 20px;
  background: #fff;
  font-size: 14px;
  padding: 0 4px;
  align-items: center;
  line-height: 1;
  font-weight: bold;
  color: #000;
  border-radius: 4px;
  padding-top: 3px;
}

.product-box {
  background: #F5F5F5;
  padding: 50px 0;
  margin-top: 20px;
}

.product-row-title {
  font-size: 30px;
  font-weight: 700;
  margin-top: 100px;
}

.product-content {
  font-size: 16px;
  text-align: justify;
  line-height: 2;
  margin-top: 15px;
}

@media (max-width:767px) {
  .product-info {
    padding: 0;
    margin-top: 20px;
  }

  .product-title {
    font-size: 18px;
  }

  .product-item-body {
    font-size: 14px;
  }

  .product-price-title {
    display: none;
  }

  .product-price-before {
    font-size: 20px;
  }

  .product-price-main {
    font-size: 22px;
  }

  .product-btn-add {
    width: 100%;
    max-width: 100%;
    height: 48px;
    border-radius: 10px;
    font-size: 18px;
  }

  .product-row-title {
    font-size: 20px;
    margin-top: 30px;
  }

  .product-content {
    font-size: 14px;
    margin-top: 10px;
  }

  .product-box {
    padding: 30px 0;
    margin-top: 40px;
  }


}

/* about */

.about-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.about-text {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.8;
}

.about-text ul {
  line-height: 2;
  color: #666;
  padding-right: 20px;
}

.about-img {
  width: 100%;
  border-radius: 16px;
}

.about-card {
  background: #F5F5F5;
  padding: 24px;
  border-radius: 24px;
}

.about-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  margin-top: 20px;
  background: var(--color1);
  color: #fff;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.3s;
}

.about-card-btn:hover {
  background: var(--color2);
  color: #fff;
}

.banner-wrappper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  margin-top: 20px;
  background: var(--color1);
  color: #fff;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.3s;
  width: 100%;
  max-width: 288px;
  margin: auto;
  margin-top: 20px;
}


.banner-wrappper-btn:hover {
  background: var(--color2);
  color: #fff;
}


.about-aside {
  border-left: 3px solid var(--color1);
  padding-left: 10px;
}

@media (max-width:767px) {
  .about-title {
    font-size: 20px;
  }

  .about-text {
    font-size: 14px;
    margin-top: 10px;
  }

  .about-card-title {
    font-size: 18px;
  }

  .about-card-text {
    font-size: 14px;
  }

  .about-card-btn {
    font-size: 14px;
    height: 44px;
  }

}


/* contact */


.responsive-map {
  overflow: hidden;
  padding-bottom: 400px;
  position: relative;
  height: 0;
  border-radius: 24px;
  height: 100%;
}

.responsive-map iframe {
  left: 0;
  top: 0;
  height: 400px;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 24px;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.contact-text {
  font-size: 20px;
  margin-top: 20px;
  line-height: 1.8;
  border-bottom: 1px solid #ccc;
  padding-bottom: 25px;
}

.contact-item {
  background: #F0F0F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  color: #000;
  height: 100%;
}

.contact-item i {
  font-size: 20px;
}

.contact-item div {
  direction: ltr;
}

.contact-box {
  background: #F0F0F0;
  border-radius: 24px;
  margin: 100px 0;
  padding: 80px;
}

.contact-box-title {
  text-align: center;
  font-size: 32px;
  color: #000;
  font-weight: 700;
}

.contact-box-text {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
  line-height: 1.8;
  position: relative;
  margin-bottom: 20px;
}

.contact-box-text::after {
  content: '';
  display: block;
  background-image: linear-gradient(90deg, #F5F5F5 0%, #FE0000 50.48%, #F5F5F5 100%);
  height: 2px;
  margin-top: 20px;
}

.contact-box input {
  height: 57px;
  border-radius: 12px;
  width: 100%;
  border: 0;
  outline-color: var(--color1);
  background: #fff;
  margin-top: 25px;
  padding: 15px;
}

.contact-box textarea {
  border-radius: 12px;
  width: 100%;
  border: 0;
  outline-color: var(--color1);
  background: #fff;
  margin-top: 25px;
  padding: 15px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  background: var(--color1);
  color: #fff;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.3s;
  width: 100%;
  max-width: 288px;
  margin: auto;
  margin-top: 20px;
  border: 0;
}

.contact-btn:hover {
  background: var(--color2);
  color: #fff;
}

@media (max-width:767px) {
  .contact-title {
    font-size: 18px;
  }

  .contact-text {
    font-size: 14px;
    margin-top: 15px;
    padding-bottom: 15px;
  }

  .contact-box {
    margin-top: 40px;
    padding: 20px;
    margin: 30px 0;
  }

  .contact-box-title {
    font-size: 20px;
  }

  .contact-box-text {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 0;
  }

  .responsive-map {
    padding-bottom: 220px;
  }

  .responsive-map iframe {
    height: 220px;
  }

}


.card-news {
  border-radius: 24px;
  display: block;
  padding: 24px;
  background: #F5F5F5;
}

.card-news-img-body {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.card-news-img-body:hover img {
  transform: scale(1.05);
}

.card-news-img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-news-title {
  font-size: 20px;
  color: #000;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  margin-top: 20px;
  font-weight: 700;
}

.card-news-mute {
  text-align: end;
  color: #000;
  font-weight: 700;
  font-size: 18px;
}

.card-news-text {
  color: #000;
  margin-top: 10px;
  line-height: 1.7;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  height: 54px;
}

.card-news-flex {
  border-top: 1px solid #00000045;
  margin-top: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #00000045;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 20px 0;
  font-size: 14px;
  font-weight: bold;
}

.card-news-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  gap: 5px;
  height: 46px;
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
  font-weight: 700;
  background: var(--color1);
  margin-top: 10px;
}

.card-news-btn:hover {
  color: #fff;
  background: #000;
}


@media (max-width:767px) {

  .backgrand {
    overflow: hidden;
  }

  .card-news {
    padding: 15px;
  }

  .card-news-img {
    height: 158px;
  }

  .card-news-title {
    font-size: 16px;
  }

  .card-news-flex {
    font-size: 12px;
  }

  .card-news-text {
    font-size: 14px;
    margin-top: 5px;
    height: 46px;
  }

  .card-news-btn {
    font-size: 14px;
  }
}


.pagination {
  justify-content: center;
  padding-top: 60px;
  margin-bottom: 0;
  padding-bottom: 20px;
}

.page-link {
  width: 38px;
  height: 38px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color1);
  margin: 0 5px;
  background: unset;
  padding-top: 10px;
  background: #0000000D;
  border: 0;
  border-radius: 12px !important;
  transition: 0.3s;
}

a.page-link:hover {
  background: var(--color1);
  color: #fff;
}


.page-item:first-child .page-link {
  margin-right: 6px;
}

span.page-link:hover {
  background: #fff;
  color: var(--color1);
}

.page-link:focus {
  box-shadow: unset;
}

.page-item.active .page-link {
  color: #fff;
  background-color: var(--color1);
}

.page-item-title .page-link {
  height: 38px;
  font-size: 14px;
  width: 38px;
  color: var(--color1);
}

.page-item-title .page-link:hover {
  background: var(--color1);
  color: #fff;
}

@media (max-width:767px) {
  .pagination {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .page-link {
    margin: 0;
  }

  .page-link span {
    display: none;
  }


  .page-item-title {
    display: none;
  }

  .page-link {
    width: 30px;
    height: 30px;
    margin: 0 3px;
  }

  .blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: auto;
    margin: 20px auto;
  }
}



.blog-img {
  max-width: 100%;
  width: 100%;
  border-radius: 8px;
  display: block;
  margin: auto;
  margin-bottom: 15px;
}


.blog-content p {
  font-size: 16px;
  line-height: 2.14;
  text-align: justify;
  color: #000;
  margin-top: 15px;
}

.blog-content img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
  margin: auto;
  margin: 20px auto;
}

.blog-content video {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  background: #000;
  max-height: 300px;
}

.blog-content table,
td,
th {
  border: solid 1px #c8c8c8;
  text-align: center;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
}

.blog-title {
  font-size: 24px;
  font-weight: 800;
  color: #000;
  margin-top: 35px;
  margin-bottom: 20px;
}

.blog-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.blog-title h2 {
  font-size: 24px;
  font-weight: 700;
}

.blog-info {
  font-size: 18px;
  margin-top: 24px;
}

.blog-mute {
  color: #999999;
  font-size: 16px;
  margin-top: 15px;
}

.blog-box {
  border: 2px solid #E6E8E8;
  border-radius: 15px;
  background: #f5f5f5;
}

.blog-box-head {
  padding: 20px;
  border-bottom: 2px solid #E6E8E8;
  font-size: 18px;
  font-weight: 600;
}

.blog-box-body {
  padding: 20px;
}

.blog-box-item {
  border-bottom: 1px solid #E6E8E8;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #000;
  font-weight: 600;
  line-height: 1.7;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}

.blog-box-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.blog-box-item img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 10px;
  margin-left: 15px;
}


.b-comment {
  margin-top: 50px;
  background: #fff;
  border: 1px solid #0000001A;
  box-shadow: 0px 2px 4px 0px #0000001F;
  border-radius: 15px;
  padding: 20px;
  margin-top: 25px;
}

.comment-item {
  margin-top: 20px;
  border: 2px solid #E6EAED;
  padding: 20px;
  border-radius: 20px;
}


.comment-item-info {
  display: flex;
  align-items: center;
}

.comment-item-info i {
  background: #C9C9C9;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin-left: 15px;
}

.comment-item-user {
  font-size: 16px;
  font-weight: 600;
  color: #7A7A7A;
  margin-left: 10px;
}

.comment-item-date {
  font-size: 14px;
  color: #7A7A7A;
}

.comment-item-text {
  font-size: 14px;
  margin-top: 15px;
}

.comment-item-action {
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.comment-item-action button {
  margin: 0;
  padding: 0;
  line-height: 1;
  margin-left: 15px;
  border: 0;
  background: transparent;
  color: #7A7A7A;
  display: flex;
  align-items: center;
}

.comment-item-action button:hover {
  color: #000;
}

.comment-head {
  color: #292D32;
  font-size: 16px;
  font-weight: 700;
}

.com-box-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-top: 10px;
}

.com-box-text {
  font-weight: 300;
  margin-top: 10px;
  color: #000;
}

.com-box-form {
  display: flex;
  flex-direction: column;
}

.com-box-form input {
  height: 50px;
  border: 1px solid #00000033;
  margin-top: 5px;
  padding: 10px;
  outline-color: var(--color1);
  border-radius: 10px;
  background: #F0F0F0;
}

.com-box-form textarea {
  border: 1px solid #00000033;
  margin-top: 5px;
  padding: 10px;
  outline-color: var(--color1);
  border-radius: 10px;
  background: #F0F0F0;
}

.com-box-form label {
  font-size: 18px;
}

.com-box-code input {
  border: 0;
  height: 40px;
  border: 1px solid #00000033;
  margin-right: 10px;
  text-align: center;
  outline-color: var(--color1);
  width: 100%;
  border-radius: 10px;
  max-width: 150px;
  background: #F0F0F0;
}

.com-box-code img {
  width: 140px;
}

.com-box-code {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.com-box-recode {
  font-size: 14px;
  margin-top: 15px;
  display: block;
  color: var(--color1);
}

.com-box-submit {
  height: 50px;
  background: var(--color1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
  border-radius: 50px;
  transition: 0.3s;
  margin-top: 15px;
  border: 1px solid var(--color1);
}

.com-box-submit:hover {
  background: #fff;
  color: var(--color1);
}

.wrapper-star input {
  display: none;
}

.wrapper-star label {
  margin: 0;
}

i.icon-star-empty {
  color: #7D7D7D;
}

i.icon-star {
  color: #f9bc00;
}

.comment-form-rate {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



@media (max-width:767px) {

  .blog-content p {
    font-size: 13px;
  }

  .blog-box {
    margin-top: 17px;
  }

  .blog-title {
    font-size: 18px;
    margin-top: 20px;
  }

  .blog-title h1 {
    font-size: 18px;
  }

  .blog-title h2 {
    font-size: 18px;
  }

  .blog-info {
    font-size: 16px;
    margin-top: 15px;
  }

  .blog-mute {
    color: #999999;
    font-size: 14px;
  }

  .comment-item-user {
    font-size: 12px;
  }

  .comment-item-date {
    font-size: 12px;
  }

  .comment-item-text {
    font-size: 12px;
    margin-top: 10px;
  }

  .comment-item {
    margin-top: 15px;
    padding: 15px;
  }

  .com-box-title {
    font-size: 14px;
  }

  .com-box-text {
    margin-top: 10px;
    font-size: 14px;
  }

  .com-box-form label {
    font-size: 14px;
  }

  .com-box-form input {
    height: 40px;
    margin-top: 0px;
  }

  .com-box-mute {
    font-size: 12px;
  }

  .comment-form-rate-text {
    font-size: 14px;
  }

  .com-box-recode {
    margin-top: 10px;
    font-size: 14px;
    display: block;
  }


  .com-box-submit {
    height: 38px;
    padding: 8px;
    margin-top: 10px;
    margin-top: 0;
    font-size: 14px;
  }
}



@media (min-width:992px) {
  .btn-filter,.btn-filter2 {
    display: none;
  }

  .close-orderby {
    display: none;
  }

  .close-filter{
    display: none;
  }
}

@media (max-width:991px) {
  .jc-bs3-container {
    display: flex !important;
    margin-right: 10px !important;
  }

  .btn-filter,.btn-filter2 {
    font-size: 15px;
  }

  #show_filter.active,#show_filter2.active {
    right: 0;
    visibility: visible;
  }

  #show_filter2,#show_filter2 {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 75%;
    right: -400px;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
    margin: 0;
    border-radius: 0;
    height: 100%;
    overflow: auto;
  }
}





/* tab */

.product-tab {
  margin-top: 20px;
}

.product-tab .nav {
  display: flex;
  flex-wrap: nowrap;
}

.product-nav-item {
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #969696;
  cursor: pointer;
  padding: 0 10px;
  border-bottom: 3px solid transparent;
  padding-bottom: 5px;
  margin-left: 5px;
}

.tab-content {
  border-top: 0;
  padding-top: 10px;
}

.product-nav-item.active {
  color: var(--color2);
  border-bottom: 3px solid var(--color2);
}

.product-nav-item i {
  margin-left: 5px;
}

.product-data {
  margin-top: 25px;
  font-size: 18px;
  color: #323232;
  display: flex;
  align-items: center;
}

.product-data span:first-child {
  width: 25%;
  font-weight: 700;
}

.product-desc {
  margin-top: 15px;
  line-height: 2;
  text-align: justify;
}


.comment-form-rate {
  display: flex;
  align-items: center;
  justify-content: end;
}

.comment-form-rate-star {
  margin-right: 15px;
  margin-left: 15px;
  direction: ltr;
}

.comment-form-rate-text {
  font-size: 16px;
  text-align: center;
  color: #505050;
}

.wrapper-star input {
  display: none;
}

.wrapper-star label {
  margin: 0;
}

i.icon-star-empty {
  color: #7D7D7D;
}

i.icon-star {
  color: #f9bc00;
}


@media (max-width:767px) {
  .breadcrumb-item+.breadcrumb-item {
    margin-left: 10px;
  }

  .product-title {
    font-size: 16px;
  }

  .product-mute {
    margin-top: 10px;
    font-size: 12px;
    margin-left: 15px;
  }

  .product-rate {
    height: 23px;
    font-size: 12px;
    margin-top: 10px;
  }

  .product-row {
    padding-top: 15px;
    margin-top: 15px;
  }

  .product-row-title {
    font-size: 14px;
  }

  .product-row-btn {
    font-size: 12px;
  }

  .product-row ul {
    font-size: 12px;
  }

  .product-color {
    margin-right: 15px;
  }

  .product-color-body {
    line-height: 2;
  }

  .product-space {
    flex-direction: column;
  }



  .product-action {
    width: 100%;
  }

  .product-price-discunt {
    height: 24px;
    font-size: 14px;
  }

  .product-price-before {
    font-size: 16px;
  }

  .product-price-main {
    font-size: 20px;
  }

  .product-add-btn {
    height: 42px;
    font-size: 16px;
  }

  .product-count-title {
    font-size: 15px;
  }

  .product-nav-item {
    font-size: 12px;
    padding: 0 5px;
    padding-bottom: 5px;
    margin-left: 0;
  }

  .product-tab {
    margin-top: 25px;
  }

  .product-data {
    margin-top: 15px;
    font-size: 14px;
  }

  .product-data span {
    width: 50% !important;
  }

  .product-desc {
    margin-top: 5px;
    line-height: 2;
    font-size: 14px;
  }
}



header {
  position: sticky;
  z-index: 99;
  width: 100%;
  top: 30px;
}

#overlay {
  pointer-events: none;
}

#overlay-offcanvas {
  pointer-events: none;
}

@media (max-width: 767.5px) {
  .navbar-search {
    width: 100%;
  }
  header {
    position: sticky;
    z-index: 99;
    width: 100%;
    top: 50px;
  }
  #overlay-offcanvas {
    pointer-events: unset;
  }
}
