@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: #FF912C;
  --color2: #FF912C80;
  --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-custom {
  background-color: #fff;
  height: 89px;
  padding: 0;
  z-index: 1000;
  transition: 0.3s;
  position: absolute;
  width: 100%;
  z-index: 999;
  top: -100px;
  margin-top: 100px;
  transition: transform 0.5s ease-out, top 0.5s ease-out;
}

.navbar-custom.fixed {
  top: 0;
  margin-top: 0;
  position: fixed;
  height: 89px;
  box-shadow: 0px 0px 8px 0px #11100F26;
}

.navbar-fill {
  height: 89px;
}

.navbar-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.navbar-logo {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.nav-item {
  margin-left: 20px;
  white-space: nowrap;
}

.nav-item a.active {
  background: var(--color1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 40px;
  padding: 0 15px;
}

.nav-item a.active:hover {
  color: #fff !important;
  background: var(--color1);
}

.nav-item a {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}

.nav-item.dropdown {
  margin-top: -2px;
}

/* border hover  */

@media (min-width:768px) {
  .nav-item a {
    display: inline-block;
  }

  .nav-item:not(.dropdown) a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--color1);
    transition: width .2s;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: -5px;
  }

  .nav-item:not(.dropdown) a:hover::after {
    width: 100%;
    transition: width .3s;
  }
}

.nav-item a:hover {
  color: var(--color1) !important;
}

.navbar-right {
  display: flex;
  align-items: center;
  width: 100%;
}

.navbar-left {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
}

.navbar-btn {
  font-size: 18px;
  color: var(--color1);
  height: 46px;
  padding: 0px 15px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
  font-size: 20px;
  border-left: 2px solid var(--color3);
}

.navbar-btn:hover {
  color: var(--color2);
}

.navbar-btn span {
  font-size: 14px;
}

.navbar-btn:last-child {
  border-left: 0;
}


.navbar-search {
  border: 1px solid var(--color1);
  height: 44px;
  display: flex;
  align-items: center;
  border-radius: 0;
  padding: 0 10px;
  position: absolute;
  width: 250px;
  top: 0;
  background: #fff;
  left: 0;
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

.navbar-search.active {
  visibility: visible;
  top: 60px;
  opacity: 1;
}

.navbar-search button {
  font-size: 20px;
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
  transition: 0.3s;
  color: var(--color1);
}

.navbar-search input {
  border: 0;
  outline: none;
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding-right: 5px;
}

/* 
ponsive navbar all size */

@media (max-width:767.5px) {

  .navbar-custom {
    height: 70px;
    padding: 10px 0;
  }

  .navbar-fill {
    height: 70px;
  }

  .navbar-custom.fixed {
    height: 70px;
  }

  .navbar-logo {
    margin-left: 0;
  }

  .navbar-btn {
    padding: 0 7px;
    height: 32px;
    font-size: 18px;
  }

  .navbar-btn span {
    display: none;
  }

  .navbar-btn-badge {
    display: flex;
    left: 0;
  }

  .navbar-logo img {
    width: 46px;
    height: 46px;
  }

  .navbar-search.active {
    top: 40px;
  }

  .nav-item a.active {
    width: max-content;
  }

}

@media (min-width:768px) and (max-width:1199px) {
  .navbar-logo {
    margin-left: 30px;
  }

  .nav-item:nth-child(6) {
    display: none;
  }

  .nav-item:nth-child(7) {
    display: none;
  }

  .nav-item:nth-child(8) {
    display: none;
  }

  .navbar-btn span {
    display: none;
  }
}

@media (min-width:1199px) and (max-width:1399px) {
  .navbar-btn span {
    display: none;
  }
}

@media (min-width:768px) {
  .navbar-nav {
    align-items: center;
  }
}


/* 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 #e0e0e0;
  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: 16px;
  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(--color1);
    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%;
  }

  #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;
  }

  .dropdown .dropdown:hover>a:after {
    border-left-color: #000;
  }

  .dropdown .dropdown:hover>ul {
    display: block;
  }

  .dropdown:hover>ul {
    display: block;
  }
}

/* offcanvas */
@media (max-width: 767.5px) {
  .dropdown ul::before {
    content: unset;
  }

  .dropdown a::after {
    content: '\f104';
    font-size: 16px;
    flex-grow: 1;
    justify-content: end;
    display: flex;
    align-items: center;
  }

  .dropdown .dropdown>a:after {
    margin-top: -2px;
    font-size: 16px;
  }

  .offcanvas-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    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;
    border: 0;
  }

  .dropdown ul.active {
    right: 0;
  }

  .offcanvas-nav.active {
    right: 0;
  }


  .offcanvas-header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color1);
    background-color: #fff;
    padding: 0 15px;
    margin-bottom: 10px;
  }


  .offcanvas-header .close {
    background: transparent;
    border: 0;
    color: var(--color1);
    font-size: 20px;
  }

  .offcanvas-header .back {
    background: transparent;
    border: 0;
    color: var(--color1);
    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;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    font-weight: normal;
  }

  .navbar-toggler {
    border: 0;
    margin: 0;
    padding: 0;
    color: var(--color1) !important;
    display: flex;
    margin-left: 10px;
  }
}


@media (min-width:768px) {
  .offcanvas-header {
    display: none;
  }
}


.dropdown-new .dropdown-menu {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
}

.dropdown-new a::after {
  display: none;
}

.navbar-btn-badge {
  background: var(--color4);
  width: 15px;
  height: 15px;
  position: absolute;
  left: 10px;
  top: 0px;
  color: #fff;
  font-size: 12px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-top: 1px;
}

.btn.btn-custom {
  background: var(--color1);
  color: #fff;
}

/* jconfirm  */
.btn.btn-custom:hover {
  opacity: 0.8;
}

.jconfirm-box {
  border-radius: 10px !important;
}




/* 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: 21px 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-final {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}

.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-item:last-child {
  border-bottom: 0;
}

.basket-item .product-order-count {
  max-width: 120px;
  height: auto;
  padding: 5px;
  margin-top: 5px;
}

.basket-item .product-order-count input {
  font-size: 16px;
}

.basket-item .product-order-count button {
  min-width: 26px;
  max-width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 130px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #ddd;
}

.basket-item-info {
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.basket-item-count {
  margin-top: 5px;
  display: flex;
  align-items: end;
  margin-top: auto;
}

.basket-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.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;
  margin: 0;
}

#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: #fff;
}

.swiper-button-next {
  width: 38px;
  height: 38px;
  background-color: var(--color1);
  border-radius: 12px;
  transition: 0.3s;
}

.swiper-button-prev {
  width: 38px;
  height: 38px;
  background-color: var(--color1);
  border-radius: 12px;
  transition: 0.3s;
}

.swiper-button-next:hover {
  background: var(--color2);
}

.swiper-button-prev:hover {
  background: var(--color2);
}

.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: #00000066;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-wrap-1 {
  height: calc(100vh - 89px);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  padding: 50px 0;
}

.home-wrap-1-title {
  text-align: center;
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}

.home-wrap-1-title b {
  color: var(--color1);
  font-weight: 600;
}

.home-wrap-1-title strong {
  color: var(--color1);
  font-weight: 600;
}

.home-wrap-1-title span {
  color: var(--color1);
}

.home-warp-1-text {
  font-size: 22px;
  color: #fff;
  margin: auto;
  margin-top: 20px;
  text-align: center;
  width: 60%;
  line-height: 1.6;
}

.home-wrap-1-btn-body {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.home-wrap-1-btn-a {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  min-width: 185px;
  background: var(--color1);
  border: 1px solid var(--color1);
  border-radius: 16px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.home-wrap-1-btn-a:hover {
  background: #fff;
  color: var(--color1);
}

.home-wrap-1-btn-b {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  min-width: 185px;
  background: var(--color2);
  border: 1px solid transparent;
  border-radius: 16px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.home-wrap-1-btn-b:hover {
  background: #fff;
  border-color: var(--color2);
  color: var(--color1);
}

.home-wrap-2 {
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.home-wrap-2::before {
  content: '';
  width: 392px;
  height: 392px;
  position: absolute;
  background: #ff912c;
  right: 0;
  left: 0;
  top: -250px;
  margin: auto;
  border-radius: 50%;
  filter: blur(250px);
  z-index: -1;
}

.home-wrap-2-info {
  text-align: center;
}


.home-wrap-2-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.home-wrap-2-title b {
  font-weight: 700;
  color: var(--color1);
}

.home-wrap-2-title strong {
  font-weight: 700;
  color: var(--color1);
}

.home-wrap-2-title span {
  color: var(--color1);
}

.home-wrap-2-text {
  color: #000;
  font-size: 20px;
  margin: auto;
  margin-top: 20px;
  width: 50%;
  line-height: 1.7;
}

.home-wrap-2-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  transition: 0.5s;
  color: #000;
}

.home-wrap-2-item-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.home-wrap-2-item-title {
  font-size: 20px;
  margin-top: 15px;
}

.home-wrap-2-item:hover {
  transform: translateY(-5px);
}

.home-wrap-3 {
  margin-top: 110px;
}

.home-wrap-3-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 25px;
  padding-right: 40px;
}

.home-wrap-3-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.home-wrap-3-title b {
  font-weight: 700;
  color: var(--color1);
}

.home-wrap-3-title strong {
  font-weight: 700;
  color: var(--color1);
}

.home-wrap-3-title span {
  color: var(--color1);
}

.home-wrap-3-text {
  font-size: 18px;
  text-align: justify;
  line-height: 1.7;
  color: #000000;
}

.home-wrap-3-btn-body {
  display: flex;
  gap: 20px;
}

.home-wrap-3-btn-a {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  min-width: 185px;
  background: var(--color1);
  border: 1px solid var(--color1);
  border-radius: 16px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.home-wrap-3-btn-a:hover {
  background: #fff;
  color: var(--color1);
}

.home-wrap-3-btn-b {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  min-width: 185px;
  background: var(--color2);
  border: 1px solid var(--color2);
  border-radius: 16px;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}

.home-wrap-3-btn-b:hover {
  background: #fff;
  color: var(--color1);
}

/* video player plyr js  */
button.plyr__control.plyr__control--overlaid {
  background: rgba(220, 220, 220, 0.6) !important;
}

.plyr__controls [data-plyr="pip"] {
  display: none !important;
}

.plyr__controls [data-plyr="settings"] {
  display: none !important;
}

.plyr__controls [data-plyr="volume"] {
  display: none !important;
}

.plyr.plyr--full-ui.plyr--video.plyr--html5.plyr--fullscreen-enabled.plyr--paused.plyr--stopped.plyr--pip-supported.plyr__poster-enabled {
  border-radius: 5px;
}

.plyr__poster {
  background-size: cover !important;
}

.plyr__video-wrapper {
  border-radius: 32px;
}

.plyr--video {
  border-radius: 32px !important;
}

.plyr {
  height: 100%;
}

video {
  width: 100%;
}

.plyr {
  max-height: 100%;
  height: 100%;
}

#load-video {
  height: 450px;
}

.video-item {
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.video-item::after {
  content: "";
  width: 105px;
  height: 105px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80' fill='none'><path d='M40 0C17.92 0 0 17.92 0 40C0 62.08 17.92 80 40 80C62.08 80 80 62.08 80 40C80 17.92 62.12 0 40 0ZM52 48.92L40.4 55.6C38.96 56.44 37.36 56.84 35.8 56.84C34.2 56.84 32.64 56.44 31.2 55.6C28.32 53.92 26.6 50.96 26.6 47.6V34.2C26.6 30.88 28.32 27.88 31.2 26.2C34.08 24.52 37.52 24.52 40.44 26.2L52.04 32.88C54.92 34.56 56.64 37.52 56.64 40.88C56.64 44.24 54.92 47.24 52 48.92Z' fill='%23FF912C'/></svg>");
  font-size: 60px;
  outline: 4px solid #FFFFFF;
  border: 10px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  position: absolute;
  cursor: pointer;
  transition: 0.3s;
}

.video-item::before {
  content: '';
  background: #00000080;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-wrap-4 {
  margin-top: 110px;
}

.home-wrap-4-info {
  text-align: center;
}

.home-wrap-4-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.home-wrap-4-title b {
  font-weight: 700;
  color: var(--color1);
}

.home-wrap-4-title strong {
  font-weight: 700;
  color: var(--color1);
}

.home-wrap-4-title span {
  color: var(--color1);
}

.home-wrap-4-text {
  color: #000;
  font-size: 20px;
  margin: auto;
  margin-top: 20px;
  line-height: 1.7;
}

.home-wrap-4-text::after {
  content: '';
  display: block;
  margin-top: 20px;
  background-image: linear-gradient(90deg, #FFFFFF 0%, #FF912C 50.48%, #FFFFFF 100%);
  height: 3px;
}

.swiper-free {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  /* overflow: hidden; */
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-free .swiper-slide {
  width: auto !important;
}

.swiper-button-disabled {
  opacity: 0 !important;
}

.home-cat {
  margin-top: 40px;
  overflow: hidden;
}

.home-cat-item {
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.home-cat-item.active {
  background: var(--color1);
  color: #fff;
}

.home-tab-item {
  display: none;
}

.home-tab-item.active {
  display: block;
}

.home-tab {
  margin-top: 40px;
  padding: 50px 0;
  overflow: hidden;
  background: #FF912C33;
}

.card-cat {
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  padding: 20px;
}

.card-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.5s ease, transform 1s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-cat:hover img {
  transform: scale(1.05);
}


.card-cat-box {
  position: relative;
  background: #00000099;
  backdrop-filter: blur(4px);
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  width: 100%;
}

.card-cat-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.card-cat-text {
  font-size: 18px;
  color: #fff;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  margin-top: 10px;
}

.home-section {
  margin-top: 100px;
}

.home-section-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.home-section-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
}

.swiper-3-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--color1);
  border-radius: 12px;
  transition: 0.3s;
}

.swiper-3-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--color1);
  border-radius: 12px;
  transition: 0.3s;
}

.swiper-3-next:after {
  font-family: "raya-icon";
  content: '\f104';
  color: #fff;
}

.swiper-3-prev:after {
  font-family: "raya-icon";
  content: '\f105';
  color: #fff;
}

.swiper-3-next:hover {
  background: var(--color2);
}

.swiper-3-prev:hover {
  background: var(--color2);
}

.home-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
}

.home-section-title b {
  font-weight: 700;
  color: var(--color1);
}

.home-section-title strong {
  font-weight: 700;
  color: var(--color1);
}

.home-section-title span {
  color: var(--color1);
}

.home-section-text {
  font-size: 20px;
  color: #000;
  margin-top: 15px;
  line-height: 1.7;
}

.card-product {
  border-radius: 24px;
  display: block;
  padding: 24px;
  background: #F5F5F5;
}

.card-product-img-body {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 16.84px 15.96px 20.3px 0px #00000040;
  border: 1px solid #FFFFFF;
}

.card-product-img-body:hover img {
  transform: scale(1.05);
}


.card-product-img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-product-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-product-mute {
  text-align: end;
  color: #000;
  font-weight: 700;
  font-size: 18px;
}

.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-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-product-btn:hover {
  background: var(--color2);
}

.home-wrap-5 {
  position: relative;
}

.home-wrap-5::before {
  content: '';
  width: 100%;
  height: 150px;
  position: absolute;
  background: #ff912c;
  right: 0;
  left: 0;
  bottom: 20%;
  margin: auto;
  border-radius: 50%;
  filter: blur(250px);
  z-index: -1;
}

.home-wrap-6 {
  margin-top: 110px;
  padding: 100px 0;
  position: relative;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.home-wrap-6::before {
  content: '';
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 46.24%, rgba(0, 0, 0, 0.6) 85.07%);
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-wrap-6-title {
  font-size: 36px;
  color: #fff;
  font-weight: 700;
}

.home-wrap-6-text {
  font-size: 18px;
  color: #fff;
  text-align: justify;
  line-height: 1.8;
  margin-top: 20px;
}

.home-wrap-6-btn {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  background: var(--color1);
  border: 1px solid var(--color1);
  border-radius: 16px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  width: max-content;
  margin-top: 20px;
  gap: 10px;
}

.home-wrap-6-btn:hover {
  background: var(--color2);
  color: #fff;
}

.home-wrap-6-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 25px;
}

.home-wrap-6-item {
  border-radius: 24px;
  background: #FFFFFF99;
  backdrop-filter: blur(5px);
  padding: 20px;
  height: 170px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: #000;
}

.home-wrap-6-item span {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: #000;
}

.home-wrap-6-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.home-wrap-6-item:nth-child(1) {
  grid-area: 1 / 3 / 3 / 5;
}

.home-wrap-6-item:nth-child(2) {
  grid-area: 1 / 1 / 3 / 3;
}

.home-wrap-6-item:nth-child(3) {
  grid-area: 3 / 3 / 5 / 5;
}

.home-wrap-6-item:nth-child(4) {
  grid-area: 3 / 1 / 5 / 3;
}

.home-wrap-7 {
  margin-top: 110px;
}

.home-wrap-7-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.home-wrap-7-title b {
  font-weight: 700;
  color: var(--color1);
}

.home-wrap-7-title strong {
  font-weight: 700;
  color: var(--color1);
}

.home-wrap-7-title span {
  color: var(--color1);
}

/* faq */

.faq-body {
  margin-top: 50px;
}

.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: var(--color1);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  padding: 0 20px;
}

.faq-answer-content {
  padding: 25px 0;
}

.faq-answer::before {
  content: '';
  display: block;
  background-image: linear-gradient(90deg, #FFFFFF 0%, #FF912C 50.48%, #FFFFFF 100%);
  height: 3px;
}

.faq-item.active {
  background: #FF912C4D;
}

.home-wrap-7-img {
  height: 495px;
  max-width: 100%;
  border-radius: 32px;
  margin-right: auto;
  display: block;
}

.home-wrap-8-box {
  background: var(--color1);
  margin-top: 110px;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.home-wrap-8-btn {
  margin-right: auto;
}

.home-wrap-8-icon {
  background: #fff;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  border-radius: 50%;
  line-height: 0;
  transform: scaleX(-1);
  color: var(--color1);
  box-shadow: 0px 0px 8px 0px #713E10;
  outline: 3px solid #fff;
  border: 10px solid;
}

.home-wrap-8-title {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}

.home-wrap-8-text {
  font-size: 20px;
  color: #fff;
  margin-top: 15px;
}

.home-wrap-8-btn i {
  font-size: 22px;
}

.home-wrap-8-btn {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  background: #fff;
  border-radius: 16px;
  color: var(--color1);
  font-weight: 600;
  transition: 0.3s;
  width: max-content;
  gap: 10px;
}

.home-wrap-8-btn:hover {
  color: #000;
}

.home-wrap-8::before {
  content: '';
  width: 100%;
  height: 150px;
  position: absolute;
  background: #ff912c;
  right: 0;
  left: 0;
  top: 10%;
  margin: auto;
  border-radius: 50%;
  filter: blur(250px);
  z-index: -1;
}

.home-wrap-8 {
  position: relative;
}

.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);
}


/* 
responsive home */

@media (max-width:767px) {

  .home-wrap-1 {
    height: auto;
    padding: 30px 0;
  }

  .home-warp-1-text {
    font-size: 14px;
    margin-top: 20px;
    width: 100%;
  }

  .home-wrap-1-title {
    font-size: 18px;
  }

  .home-wrap-1-btn-body {
    gap: 15px;
  }

  .home-wrap-1-btn-a {
    min-width: unset;
    width: 100%;
    font-size: 14px;
    padding: 0 10px;
    height: 42px;
  }

  .home-wrap-1-btn-b {
    min-width: unset;
    width: 100%;
    font-size: 14px;
    padding: 0 10px;
    height: 42px;
  }

  .home-wrap-2 {
    padding-top: 30px;
  }

  .home-wrap-2-title {
    font-size: 18px;
  }

  .home-wrap-2-text {
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
  }

  .home-wrap-2-item {
    margin-top: 25px;
  }

  .home-wrap-2-item-icon {
    width: 42px;
    height: 42px;
  }

  .home-wrap-2-item-title {
    font-size: 14px;
    margin-top: 10px;
  }

  .home-wrap-3 {
    margin-top: 35px;
  }

  #load-video {
    height: 220px;
  }

  .video-item::after {
    width: 70px;
    height: 70px;
  }

  .home-wrap-3-info {
    padding-right: 0;
    margin-top: 15px;
    gap: 15px;
  }

  .home-wrap-3-btn-body {
    gap: 15px;
  }

  .home-wrap-3-btn-a {
    min-width: unset;
    width: 100%;
    font-size: 14px;
    padding: 0 10px;
    height: 42px;
  }

  .home-wrap-3-btn-b {
    min-width: unset;
    width: 100%;
    font-size: 14px;
    padding: 0 10px;
    height: 42px;
  }

  .home-wrap-3-title {
    font-size: 18px;
  }

  .home-wrap-3-text {
    font-size: 14px;
  }

  .home-wrap-4 {
    margin-top: 40px;
  }

  .home-wrap-4-title {
    font-size: 18px;
  }

  .home-wrap-4-text {
    font-size: 14px;
    margin-top: 15px;
  }

  .home-cat {
    margin-top: 25px;
  }

  .home-cat-item {
    height: 44px;
    font-size: 14px;
    padding: 0 20px;
  }

  .home-tab {
    margin-top: 25px;
    padding: 30px 0;
  }

  .card-cat {
    height: 300px;
    padding: 15px;
  }

  .card-cat-box {
    border-radius: 20px;
    padding: 15px 10px;
  }

  .card-cat-title {
    font-size: 16px;
  }

  .card-cat-text {
    font-size: 14px;
  }

  .home-section {
    margin-top: 35px;
  }

  .home-section-title {
    font-size: 18px;
  }

  .home-section-text {
    display: none;
  }

  .home-section-btns {
    gap: 10px;
  }

  .swiper-3-prev {
    width: 32px;
    height: 32px;
  }

  .swiper-3-next {
    width: 32px;
    height: 32px;
  }

  .home-section-flex {
    margin-bottom: 25px;
  }

  .card-product {
    padding: 15px;
  }

  .card-product-img {
    height: 158px;
  }

  .card-product-title {
    font-size: 16px;
  }

  .card-product-mute {
    font-size: 14px;
  }

  .card-product-text {
    font-size: 14px;
    margin-top: 5px;
    height: 46px;
  }

  .card-product-btn {
    font-size: 14px;
    height: 42px;
  }

  .home-wrap-6 {
    margin-top: 35px;
    padding: 35px 0;
  }

  .home-wrap-6-title {
    font-size: 18px;
  }

  .home-wrap-6-text {
    font-size: 14px;
    margin-top: 15px;
  }

  .home-wrap-6-btn {
    height: 44px;
    padding: 5px 15px;
    border-radius: 16px;
    margin-top: 15px;
  }

  .home-wrap-6-grid {
    gap: 20px;
    margin-top: 20px;
  }

  .home-wrap-6-item span {
    font-size: 26px;
  }

  .home-wrap-6-item {
    padding: 15px;
    height: 140px;
    text-align: center;
    font-size: 14px;
  }

  .home-wrap-7 {
    margin-top: 35px;
  }

  .home-wrap-7-title {
    font-size: 18px;
  }

  .faq-body {
    margin-top: 25px;
  }

  .faq-question {
    padding: 15px;
    gap: 15px;
    font-size: 14px;
  }

  .faq-answer-content {
    padding: 20px 0;
    font-size: 14px;
  }

  .home-wrap-7-img {
    width: 100%;
    height: auto;
  }


  .home-wrap-8-box {
    margin-top: 35px;
    flex-direction: column;
  }

  .home-wrap-8-title {
    font-size: 16px;
  }

  .home-wrap-8-icon {
    width: 90px;
    height: 90px;
    font-size: 25px;
  }

  .home-wrap-8-text {
    font-size: 14px;
  }

  .home-wrap-8-btn {
    width: 100%;
    font-size: 14px;
    height: 42px;
  }

  .card-blog {
    padding: 15px;
  }

  .card-blog-img {
    height: 158px;
  }

  .card-blog-title {
    font-size: 16px;
  }

  .card-blog-mute {
    font-size: 14px;
  }

  .card-blog-text {
    font-size: 14px;
    margin-top: 5px;
    height: 46px;
  }

  .card-blog-btn {
    font-size: 14px;
    height: 42px;
  }

  .home-wrap-5 {
    overflow: hidden;
  }

  .home-wrap-8 {
    overflow: hidden;
  }



}


/* footer */


.footer {
  margin-top: 100px;
  background-color: #fff;
  padding: 40px 0;
  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: #000;
}

.footer-header {
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  color: #000;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 15px;
}

.footer-header::after {
  content: '';
  width: 100%;
  background: #3D3E40;
  height: 1px;
  max-width: 100px;
}

.footer-text {
  text-align: justify;
  font-size: 14px;
  margin-top: 20px;
  max-width: 90%;
  line-height: 1.7;
  color: #040C20;
}

.footer-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.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: var(--color1);
}

.footer-bottom {
  background-color: var(--color1);
  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: #000;
}

@media (max-width:767px) {
  .footer {
    margin-top: 40px;
    padding: 20px 0;
  }

  .footer-text {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .footer-header {
    font-size: 14px;
  }

  .footer-header::after {
    max-width: 100%;
    height: 0.9px;
  }

  .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 */
.banner-wrapper {
  height: 497px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: 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 {
  text-align: center;
  font-size: 36px;
  color: #fff;
  font-weight: 600;
}

.banner-wrapper-title b {
  color: var(--color1);
  font-weight: 600;
}

.banner-wrapper-title strong {
  color: var(--color1);
  font-weight: 600;
}

.banner-wrapper-title span {
  color: var(--color1);
}

.banner-wrapper-text {
  font-size: 20px;
  color: #fff;
  margin: auto;
  margin-top: 20px;
  text-align: center;
  width: 60%;
  line-height: 1.6;
}

.banner-wrapper-btn {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  min-width: 185px;
  width: max-content;
  margin: auto;
  background: var(--color1);
  border: 1px solid var(--color1);
  border-radius: 16px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  margin-top: 20px;
}

.banner-wrapper-btn:hover {
  background: #fff;
  color: var(--color1);
}

.product-list {
  position: relative;
  overflow: hidden;
  padding-top: 15px;
}

.product-list::before {
  content: '';
  width: 392px;
  height: 392px;
  position: absolute;
  background: #ff912c;
  right: 0;
  left: 0;
  top: -250px;
  margin: auto;
  border-radius: 50%;
  filter: blur(250px);
  z-index: -1;
}

.product-list-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.product-list-title b {
  font-weight: 700;
  color: var(--color1);
}

.product-list-title strong {
  font-weight: 700;
  color: var(--color1);
}

.product-list-title span {
  color: var(--color1);
}

@media (max-width:767px) {

  .banner-wrapper-title {
    font-size: 18px;
  }

  .banner-wrapper-text {
    width: 100%;
    font-size: 14px;
  }

  .banner-wrapper-btn {
    min-width: unset;
    font-size: 14px;
    height: 42px;
  }

  .banner-wrapper {
    height: auto;
    padding: 30px 0;
  }

  .product-list {
    padding-top: 0;
  }

  .product-list-title {
    font-size: 18px;
    margin-bottom: 0;
  }

}


/* breadcrumb */

.breadcrumb {
  font-size: 14px;
  margin: 0;
  padding: 0;
  background: transparent;
  margin-top: 20px;
  height: 20px;
  margin-bottom: 20px;
}

li.breadcrumb-item a {
  color: #7D7D7D;
}

.breadcrumb-item.active a {
  color: #000;
}

li.breadcrumb-item a:hover {
  color: var(--color2);
}

@media (max-width:767px) {
  li.breadcrumb-item {
    white-space: nowrap;
  }

  .breadcrumb {
    font-size: 12px;
    flex-wrap: nowrap;
    overflow: auto;
  }
}


/* pagination */


.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;
  }

}

/* product */

.product-img-body {
  display: flex;
  flex-direction: column;
}

.product-main-img {
  background-color: #fff;
  border: 1px solid #eee;
  text-align: center;
  width: 100%;
  border-radius: 22px;
  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;
  }
}


/* single */

.product-main {
  position: relative;
}

.product-main::before {
  content: '';
  width: 392px;
  height: 392px;
  position: absolute;
  background: #ff912c;
  right: 20%;
  top: -150px;
  margin: auto;
  border-radius: 50%;
  filter: blur(250px);
  z-index: -1;
  max-width: 100%;
}

.product-info {
  padding: 80px 50px;
}

.product-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.product-row-title {
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  color: #000;
}

.product-btn-add {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 25px;
  width: 100%;
  background: var(--color1);
  border: 1px solid var(--color1);
  border-radius: 16px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  margin-top: 100px;
  max-width: 348px;
}

.product-btn-add:hover {
  background: #fff;
  border-color: var(--color1);
  color: var(--color1);
}

.product-content {
  margin-top: 50px;
  font-size: 16px;
}

.product-content h1,
.product-content h2,
.product-content h3,
.product-content h4 {
  font-weight: 600;
  font-size: 24px;
  color: #000;
  margin-bottom: 20px;
}

.product-content p {
  color: #000;
}

.product-content img {
  max-width: 100%;
  object-fit: contain;
  margin: 20px auto;
  display: block;
}

.product-content ul {
  list-style: none;
  padding: 0;
  line-height: 2.5;
}

.product-relative {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.product-relative-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 35px;
}

.product-relative-title b {
  font-weight: 700;
  color: var(--color1);
}

.product-relative-title strong {
  font-weight: 700;
  color: var(--color1);
}

.product-relative-title span {
  color: var(--color1);
}

.product-relative-title::after {
  content: '';
  display: block;
  margin-top: 25px;
  background-image: linear-gradient(90deg, #FFFFFF 0%, #FF912C 50.48%, #FFFFFF 100%);
  height: 3px;
}

@media (max-width:767px) {

  .product-main::before {
    right: 0;
  }

  .product-info {
    padding: 20px 0;
  }

  .product-title {
    font-size: 18px;
  }

  .product-row-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .product-text {
    font-size: 14px;
  }

  .product-btn-add {
    height: 44px;
    margin-top: 25px;
    font-size: 14px;
  }

  .product-content {
    margin-top: 15px;
    font-size: 14px;
  }

  .product-content h1,
  .product-content h2,
  .product-content h3,
  .product-content h4 {
    font-weight: 600;
    font-size: 18px;
  }

  .product-content p {
    line-height: 1.7;
  }


  .product-relative {
    margin-top: 20px;
  }

  .product-relative-title {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .product-relative-title::after {
    margin-top: 15px;
  }

  .product-relative .swiper-button-next {
    display: none;
  }

  .product-relative .swiper-button-prev {
    display: none;
  }

}

/* blog list  */

.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: var(--color1);
  gap: 5px;
  transition: 0.3s;
  font-weight: 700;
  border-bottom: 1px solid var(--color1);
  padding-bottom: 10px;
  width: max-content;
  margin: auto;
  margin-top: 10px;
}

.card-news-btn:hover {
  color: #000;
  border-color: #000;
}

.backgrand {
  position: relative;
  padding-top: 15px;
}

.backgrand::before {
  content: '';
  width: 392px;
  height: 392px;
  position: absolute;
  background: #ff912c;
  right: 0;
  top: -250px;
  margin: auto;
  border-radius: 50%;
  filter: blur(250px);
  z-index: -1;
  max-width: 100%;
}


@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;
  }
}




.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: #fff;
}

.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 !important;
  font-size: 15px;
  color: #000;
  font-weight: 600;
  line-height: 1.7;
  background: #F5F5F5;
  border-radius: 12px;
  padding: 16px;
}

.blog-box-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.blog-box-item img {
  width: 75px;
  height: 54px;
  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;
  }
}

.radius-16 {
  border-radius: 16px;
}

.about-img {
  width: 100%;
  border-radius: 16px;
}

.about-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}


.about-text {
  text-align: justify;
  line-height: 1.8;
  font-size: 18px;
}


@media (max-width:767px) {

  .about-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .about-text {
    font-size: 16px;
  }

}



.contact-box {
  border-radius: 10px;
  border: solid 1px #dfdfdf;
  background-color: #fff;
  padding: 25px;
}

.contact-box-title {
  font-size: 18px;
  border-bottom: 1px solid var(--color2);
  color: #323232;
  margin-bottom: 25px;
  font-weight: 600;
}

.responsive-map {
  overflow: hidden;
  padding-bottom: 280px;
  position: relative;
  height: 0;
  border-radius: 10px;
  height: 100%;
}

.responsive-map iframe {
  left: 0;
  top: 0;
  height: 280px;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 10px;
}

.contact-us-form-title {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--color2);
  padding-bottom: 5px;
  color: var(--color2);
}

.contact-us-form input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline: none;
  border-radius: 6px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.08);
  background-color: #eee;
}

.contact-us-form textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline: none;
  border-radius: 6px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.08);
  background-color: #eee;
}


.contact-us-form label {
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  color: #979797;
}

.contact-us-form input:focus {
  border-color: var(--color2);
}

.contact-us-form textarea:focus {
  border-color: var(--color2);
}

.contact-us-form button {
  background: var(--color1);
  border: 1px solid var(--color1);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  transition: 0.3s;
  width: 181.9px;
  height: 45.5px;
  border-radius: 40px;
}

.contact-us-form button:hover {
  background: transparent;
  color: var(--color1);
}


@media (max-width:767px) {

  .responsive-map {
    padding-bottom: 200px;
  }

  .responsive-map iframe {
    height: 200px;
  }

  .contact-box {
    padding: 15px;
  }

  .contact-box-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .contact-us-form label {
    font-size: 14px;
  }

  .contact-us-form button {
    height: 36px;
    width: auto;
    font-size: 12px;
  }


}

.contact-us-item {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.contact-us-item-back i {
  transition: 0.3s;
  filter: drop-shadow(4px 6px 6px #0000006b);
}

.contact-us-item-title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  transition: 0.3s;
  color: #666;
}

.contact-us-item:hover .contact-us-item-title {
  color: var(--color2);
}

.contact-us-item:hover .contact-us-item-back i {
  transform: scale(1.1);
}

.contact-us-item-back {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  width: 89px;
  height: 88.1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  padding-top: 12px;
  color: #000;
}

@media (max-width:767px) {
  .contact-us-item-title {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
  }

  .contact-us-item {
    margin-top: 20px;
  }

  .contact-us-item-back {
    width: 60px;
    height: 60px;
    font-size: 25px;
    padding-top: 8px;
  }
}
.sub-item{
  display: flex;
  flex-direction: column;
}
.sub-item img{
  width: 120px;
  text-align: center;
  margin: auto;
}
.sub-item p{
  text-align: center;
  color: #000;
  padding: 15px;
}

