* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif !important;
  text-decoration: none !important;
  margin-bottom: 0 !important;
}

body {
  background: #fff !important;
  font-family: "Montserrat", sans-serif !important;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

.p-lr {
  padding-left: 140px;
  padding-right: 140px;
}

.p-tb {
  padding-top: 100px;
  padding-bottom: 100px;
}

.m-lr {
  margin-left: 140px;
  margin-right: 140px;
}

.mt-120 {
  margin-top: 120px;
}

.title {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-40 {
  margin-top: 40px;
}

header {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #FAE9E1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
header .header-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  color: #000000;
}
header .language .currentLang {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 2px;
  background: #fff;
  color: #000;
  line-height: 22px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  padding: 4px 8px;
}
header .language .currentLang::after {
  display: none;
}
header .language .otherLang {
  margin-top: 10px;
  min-width: 1rem;
  width: 76px;
  border: none;
  background: #fff;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

.home-navbar {
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 23px;
  background: transparent;
}
.home-navbar .home-navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-navbar .home-navbar-logo img {
  width: 100px;
}
@font-face {
  font-family: "Monotype Corsiva";
  src: url("../fonts/Monotype\ Corsiva.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
.home-navbar .home-navbar-logo p {
  color: #BC9A70;
  font-family: "Monotype Corsiva" !important;
  font-size: 40px;
  font-style: italic;
  font-weight: 400;
  line-height: 44px;
  text-align: left;

}
.home-navbar .home-navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.home-navbar .home-navbar-links .home-navbar-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #000000;
}
.home-navbar .home-navbar-links .home-nav-menu {
  position: relative;
}
.home-navbar .home-navbar-links .home-nav-menu .home_sub_menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: absolute;
  padding: 24px;
  padding-right: 0;
  background: #fff;
  gap: 20px;
  top: 25px;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  box-shadow: 10px 11px 18px -10px rgba(180, 147, 110, 0.5);
}
.home-navbar .home-navbar-links .home-nav-menu .home_sub_menu a {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding-right: 24px;
  text-align: left;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-navbar .home-navbar-links .home-nav-menu .home_sub_menu .home_sub_category {
  width: 100%;
  position: relative;
}
.home-navbar .home-navbar-links .home-nav-menu .home_sub_menu .home_sub_category .home_sub_category_menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 170px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  width: -moz-max-content;
  width: max-content;
  padding: 14px 20px;
  box-shadow: 10px 11px 18px -10px rgba(180, 147, 110, 0.5);
}
.home-navbar .home-navbar-links .home-nav-menu .home_sub_menu .home_sub_category:hover a svg {
  transition: 0.2s;
  transform: rotate(-90deg);
}
.home-navbar .home-navbar-links .home-nav-menu .home_sub_menu .home_sub_category:hover .home_sub_category_menu {
  visibility: visible;
  opacity: 1;
}
.home-navbar .home-navbar-links .home-nav-menu:hover .home_sub_menu {
  top: 20px;
  visibility: visible;
  opacity: 1;
}
.home-navbar .hamburger {
  display: none;
  background: transparent;
}
.home-navbar .hamburger svg {
  width: 25px;
  height: 25px;
}

.page-navbar {
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.page-navbar .page-navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.page-navbar .page-navbar-logo img {
  width: 72px;
}
.page-navbar .page-navbar-logo p {
  color: #BC9A70;
  font-family: "Monotype Corsiva" !important;
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
}
.page-navbar .page-navbar-links {
  width: 34%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.page-navbar .page-navbar-links .page-navbar-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #000000;
}
.page-navbar .page-navbar-links .page-nav-menu {
  position: relative;
}
.page-navbar .page-navbar-links .page-nav-menu .page_sub_menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: absolute;
  padding: 24px;
  padding-right: 0;
  background: #fff;
  gap: 20px;
  top: 25px;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  box-shadow: 10px 11px 18px -10px rgba(180, 147, 110, 0.5);
}
.page-navbar .page-navbar-links .page-nav-menu .page_sub_menu a {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding-right: 24px;
  text-align: left;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-navbar .page-navbar-links .page-nav-menu .page_sub_menu .page_sub_category {
  width: 100%;
  position: relative;
}
.page-navbar .page-navbar-links .page-nav-menu .page_sub_menu .page_sub_category .page_sub_category_menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 170px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  width: -moz-max-content;
  width: max-content;
  padding: 14px 20px;
  box-shadow: 10px 11px 18px -10px rgba(180, 147, 110, 0.5);
}
.page-navbar .page-navbar-links .page-nav-menu .page_sub_menu .page_sub_category:hover a svg {
  transition: 0.2s;
  transform: rotate(-90deg);
}
.page-navbar .page-navbar-links .page-nav-menu .page_sub_menu .page_sub_category:hover .page_sub_category_menu {
  visibility: visible;
  opacity: 1;
}
.page-navbar .page-navbar-links .page-nav-menu:hover .page_sub_menu {
  top: 20px;
  visibility: visible;
  opacity: 1;
}
.page-navbar .page-navbar-right {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.page-navbar .page-navbar-right .page-navbar-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #000000;
}
.page-navbar .page-navbar-right .language .currentLang {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 2px;
  background: #fff;
  color: #000;
  line-height: 22px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(0, 0, 0, 0.58);
}
.page-navbar .page-navbar-right .language .currentLang i::before {
  font-weight: 700 !important;
}
.page-navbar .page-navbar-right .language .currentLang::after {
  display: none;
}
.page-navbar .page-navbar-right .language .otherLang {
  margin-top: 10px;
  min-width: 1rem;
  width: 76px;
  border: none;
  background: #fff;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.page-navbar .hamburger {
  display: none;
  background: transparent;
}
.page-navbar .hamburger svg {
  width: 25px;
  height: 25px;
}

.mobile_navbar_area {
    display:none;
  position: fixed;
  z-index: 999;
  top: -200%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  transition: 0.6s;
}
.mobile_navbar_area .mobile_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .language .currentLang {
  width: -moz-max-content;
  width: max-content;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .language .currentLang::after {
  display: none;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .language .otherLang {
  margin-top: 10px;
  min-width: 1rem;
  width: 54px;
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .closeMenu {
  background: transparent;
  margin-left: auto;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .closeMenu i {
  color: #fff;
  font-size: 28px;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .closeMenu i::before {
  font-weight: 500 !important;
}
.mobile_navbar_area .mobile_menu .mobile_links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_link_main {
  display: flex;
  align-items: center;
  gap: 15px;
  background: transparent;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_link_main i {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_link_main i::before {
  font-weight: 700 !important;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_submenu {
  width: -moz-max-content;
  width: max-content;
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  padding-left: 20px;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_submenu .mobile_sub_link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #fff !important;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_submenu .mobile_sub_link a{
      color: #fff !important;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_submenu .mobile_sub_link i {
  font: 16px;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_submenu .mobile_main_category {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_submenu .mobile_main_category .mobile_sub_category {
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  padding-left: 10px;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_submenu .mobile_main_category .mobile_sub_category a {
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
}
.mobile_navbar_area .mobile_menu .mobile_links .active_mobile_link {
  font-weight: 600;
}

.home-hero {
  width: 100%;
  padding-top: 203px;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
}
.home-hero .home-hero-img {
  position: relative;
  z-index: 10;
  width: 45%;
}
.home-hero .home-hero-img img {
  width: 100%;
  height: 100%;
}
.home-hero h1 {
  display: block;
  font-size: 66px;
  font-weight: 400;
  line-height: 80px;
  text-align: left;
  position: relative;
  z-index: 11;
  color: #000000;
  width: 87%;
}
.home-hero .hero-line {
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.home-hero .hero-line svg {
  position: relative;
  top: -2%;
  width: 72%;
  height: 100%;
}
.home-hero .hero-star-1 {
  position: absolute;
  top: 4%;
  right: 17%;
}
.home-hero .hero-star-2 {
  position: absolute;
  top: 34%;
  left: 35%;
}
.home-hero .hero-star-3 {
  position: absolute;
  bottom: 15%;
  right: 17%;
}
.home-hero .hero-star-4 {
  position: absolute;
  top: 32%;
  right: 3%;
}
.home-hero .hero-star-5 {
  position: absolute;
  bottom: 10%;
  left: 55%;
}
.home-hero .hero-star-6 {
  position: absolute;
  bottom: 3%;
  left: 40%;
}

.home-catalog .home-catalog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 55%;
  margin-left: auto;
}
.home-catalog .home-catalog-top .all_catalog_link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #00462B;
}
.home-catalog .home-catalog-boxes {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.home-catalog .home-catalog-boxes .home-catalog-box {
  position: relative;
  overflow: hidden;
  height: 440px;
}
.home-catalog .home-catalog-boxes .home-catalog-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  position: relative;
}
.home-catalog .home-catalog-boxes .home-catalog-box .gradient {
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.37) 57.87%, rgba(0, 0, 0, 0.58) 86%);
  z-index: 1;
}
.home-catalog .home-catalog-boxes .home-catalog-box .catalog-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}
.home-catalog .home-catalog-boxes .home-catalog-box:hover img {
  transform: scale(1.1);
}


.home-about {
  margin-top: 180px;
  background: #00462B;
  padding-top: 124px;
  padding-bottom: 124px;
  min-height: 524px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}
.home-about .home-about-images {
  width: 50%;
  display: flex;
}
.home-about .home-about-images .homeAbout-img img {
  width: 100%;
  transition: 0.5s;
}
.home-about .home-about-images .homeAbout-img {
  position: absolute;
  left: 0;
  top: -58px;
  width: 40%;
  overflow: hidden;

}
.home-about .home-about-images .homeAbout-img::after {
  content: "";
  width: 90%;
  height: 90%;
  border: 2px solid #FFFFFF;
  border-radius: 2px;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-about .home-about-images .homeAbout-img:hover img {
  transform: scale(1.1);
}
.home-about .home-about-content {
  width: 50%;
}
.home-about .home-about-content .title{
    color: #fff;
}
.home-about .home-about-content p {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #fff;
}
.home-about .home-about-content .home-about-link {
  display: block;
  padding: 14px 36px;
  text-align: center;
  background: #fff;
  color: #000;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 60px;
  width: -moz-max-content;
  width: max-content;
  transition: 0.4s;
}
.home-about .home-about-content .home-about-link:hover {
  background: #B4936E;
  transform: scale(1.05);
}

.home-catalog-slider {
  padding-right: 0 !important;
  position: relative;
}
.home-catalog-slider .catalog-slide {
  width: 100%;
  position: initial;
  padding-bottom: 40px;
}
.home-catalog-slider .catalog-slide .swiper-button-next, .home-catalog-slider .catalog-slide .swiper-button-prev {
  width: 54px;
  height: 54px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.4);
  padding: 15px;
}
.home-catalog-slider .catalog-slide .swiper-button-next::after, .home-catalog-slider .catalog-slide .swiper-button-prev::after {
  display: none;
}
.home-catalog-slider .catalog-slide .swiper-button-next {
  right: 0;
}
.home-catalog-slider .catalog-slide .swiper-button-prev {
  left: 113px;
}
.home-catalog-slider .catalog-slide .category-Slide-box {
  width: 297px !important;
  height: 339px;
  position: relative;
  transform: 0.5s;
}
.home-catalog-slider .catalog-slide .category-Slide-box img {
  width: 100%;
  height: 100%;
}
.home-catalog-slider .catalog-slide .category-Slide-box .category-name {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 200px;
  min-width: 200px;
  padding: 18px;
  text-align: center;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
  bottom: -30px;
}
.home-catalog-slider .catalog-slide .category-Slide-box:hover .category-name {
  transition: 0.5s;
  background:#00462b;
  color:#fff;
}

.home-news .title {
  text-align: center;
}
.home-news .home-news-area {
  padding-top: 45px;
  padding-bottom: 87px;
  background: rgba(250, 233, 225, 0.28);
  display: flex;
  align-items: center;
  gap: 100px;
}
.home-news .home-news-area .home-news-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.home-news .home-news-area .home-news-content .home-news-left {
  width: 100%;
  display: none;
}
.home-news .home-news-area .home-news-content .home-news-left .home-news-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.home-news .home-news-area .home-news-content .home-news-left .home-news-top .home-news-name {
  position: relative;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  text-align: left;
  padding-bottom: 6px;
  padding-right: 30px;
  border-bottom: 1px solid #00462B;
}
.home-news .home-news-area .home-news-content .home-news-left .home-news-top .more {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #00462B;
  min-width: 111px;
}
.home-news .home-news-area .home-news-content .home-news-left .home-news-text {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.home-news .home-news-area .home-news-content .home-news-left .home-news-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.home-news .home-news-area .home-news-content .home-news-active {
  display: block;
}
.home-news .home-news-area .home-news-images {
  min-width: 45%;
  width: 45%;
}
.home-news .home-news-area .home-news-images .news-images-slide {
  width: 100%;
}
.home-news .home-news-area .home-news-images .news-images-slide .news-images-item {
  width: 100%;
  border-radius: 10px;
}
.home-news .home-news-area .home-news-images .news-images-slide .news-images-item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.home-news .home-news-area .home-news-images .news-images-slide .swiper-button-next, .home-news .home-news-area .home-news-images .news-images-slide .swiper-button-prev {
  width: 23px;
  height: 23px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-news .home-news-area .home-news-images .news-images-slide .swiper-button-next::after, .home-news .home-news-area .home-news-images .news-images-slide .swiper-button-prev::after {
  display: none;
}

.home-contact-box {
  position: relative;
  background: rgba(180, 147, 110, 0.08);
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
}
.home-contact-box .contact-box-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  color: #000000;
}
.home-contact-box .contact-box-items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  row-gap: 40px;
}
.home-contact-box .contact-box-items .box-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.home-contact-box .contact-box-items .box-item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #000000;
}
.home-contact-box .contact-box-items .box-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
}
.home-contact-box .contact-box-items .box-item a .icon {
  width: 32px;
  height: 32px;
  display: flex;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 50px;
}
.home-contact-box .contact-box-items .box-item .social-medias {
  display: flex;
  align-items: center;
  gap: 20px;
}
.home-contact-box .contact-box-items .box-item .social-medias .social-media-item {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 7px;
}
.home-contact-box .contact-box-items .box-item .social-medias .social-media-item img {
  width: 100%;
  height: 100%;
}
.home-contact-box .contact-decoration1 {
  position: absolute;
  top: -40px;
  left: -30px;
}
.home-contact-box .contact-decoration2 {
  position: absolute;
  top: -30px;
  right: 7%;
}
.home-contact-box .contact-decoration3 {
  position: absolute;
  bottom: -25px;
  right: 42%;
}

footer {
  background: #00462B;
  padding-top: 64px;
  padding-bottom: 24px;
}
footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
footer .footer-top .footer-logo {
  width: 114px;
}
footer .footer-top .footer-logo img {
  width: 100%;
  height: 100%;
}
footer .footer-top .footer-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
footer .footer-top .footer-links .footer_link {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #fff;
  cursor: pointer;
}
footer .footer-top .footer-links .footer_menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  position: relative;
}
footer .footer-top .footer-links .footer_menu .footer_sub_menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  top: 50px;
  left: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  padding: 10px;
  border-radius: 6px;
}
footer .footer-top .footer-links .footer_menu .footer_sub_menu .footer_sublink {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
}
footer .footer-top .footer-links .footer_menu .active_sub_menu {
  top: 40px;
  opacity: 1;
  visibility: visible;
}
footer .footer-top .footer-links .language .currentLang {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  padding: 13px 18px;
}
footer .footer-top .footer-links .language .currentLang::after {
  display: none;
}
footer .footer-top .footer-links .language .otherLang {
  margin-top: 10px;
  min-width: 1rem;
  width: 76px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
footer .footer-contact {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
footer .footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}
footer .footer-contact a .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 7px;
  background: transparent;
}
footer .footer-socials {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
footer .footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid #fff;
}
footer .footer-socials a img {
  width: 100%;
  height: 100%;
}
footer .footer-bottom {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid #929292;
}
footer .footer-bottom p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #fff;
}
footer .footer-bottom p a {
  font-weight: 500;
  color: #fff;
}

.page-navigate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.page-navigate .prev-page {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.page-navigate .current-page {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: rgb(0, 0, 0);
}

.catalog-page {
  display: flex;
  align-items: start;
  gap: 40px;
}
.catalog-page .catalog-filter {
  width: 307px;
  min-width: 307px;
  padding: 28px;
  background: #FFFFFF;
  box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.catalog-page .catalog-filter .catalog-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
.catalog-page .catalog-filter .mobile-catalog-btn {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #00462B;
  background: transparent;
  width: 100%;
}
.catalog-page .catalog-filter .mobile-catalog-btn svg {
  width: 30px;
  height: 30px;
}
.catalog-page .catalog-filter .catalog-filter-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-link-item {
  width: 100%;
  gap: 10px;
  padding: 12px 20px;
  background: #FAFAFA;
  transition: 0.4s;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-link-item:hover {
  background: #00462B;
  color: #fff;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 20px;
  background: #FAFAFA;
  transition: 0.4s;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-title svg {
  transition: 0.4s;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-title svg path {
  stroke: #000;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-title:hover {
  background: #00462B;
  color: #fff;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-title:hover svg {
  transform: rotate(180deg);
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-title:hover svg path {
  stroke: #fff;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .showFilterTitle {
  background: #00462B !important;
  color: #fff !important;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .showFilterTitle svg {
  transform: rotate(180deg);
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .showFilterTitle svg path {
  stroke: #fff;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-links {
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-links .filter-link-item {
  width: 100%;
  gap: 10px;
  padding: 12px 20px;
  background: #FAFAFA;
  transition: 0.4s;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-links .filter-link-item:hover {
  background: rgba(0, 70, 43, 0.2);
}
.catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-links .showFilterTitle{
        background: rgba(0, 70, 43, 0.2) !important;
        color: #000 !important;
}
.catalog-page .products {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.catalog-page .products .pro_filter{
    margin-left: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
}
.catalog-page .products .pro_filter .pro_filter_btn{
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px 20px;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color:#000;
}
.catalog-page .products .pro_filter .pro_filter_lists{
    position: absolute;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width:243px;
    border: 1px solid rgba(0, 0, 0, 0.28);
    padding:24px;
    border-radius:12px;
    z-index:10;
    right:0;
    top:56px;
}
.catalog-page .products .pro_filter .active{
    display:flex;
}
.catalog-page .products .pro_filter .pro_filter_lists .pro_filter_item{
    display: flex;
    align-items: center;
    gap:12px;
}
.catalog-page .products .pro_filter .pro_filter_lists .pro_filter_item label{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.7);

}
.catalog-page .products .pro_filter .pro_filter_lists .pro_filter_item input{
    position:relative;
}
.catalog-page .products .pro_filter .pro_filter_lists .pro_filter_item input::after{
    content:"";
    position:absolute;
    width:24px;
    height:24px;
    border-radius:100px;
    background:#fff;
    border: 1px solid rgba(0, 0, 0, 0.28);
    top: -5px;
    left: -10px;
    z-index:5;
}
.catalog-page .products .pro_filter .pro_filter_lists .pro_filter_item input:checked:after{
    background: #00462B;
    border: none;
}
.catalog-page .products .pro_filter .pro_filter_lists .pro_filter_item input:checked:before{
    content:"";
    position:absolute;
    width:10px;
    height:10px;
    border-radius:100px;
    background:#fff;
    border: none;
    top: 3px;
    left: -3px;
    z-index:6;
}
.catalog-page .products .products-carts {
    margin-top:48px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.catalog-page .products .more_product_link {
  padding: 12px 24px;
  background: #00462B;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #fff;
  transition: 0.5s;
}
.catalog-page .products .more_product_link:hover {
  background: #00462B;
  color: #fff;
}
.catalog-page{
  .products{
    .page-pagination{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      .page-pagination-item{
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border: 1px solid #00462B;
        background: #fff;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: #313131;      
        transition: .3s ease-in-out;
        &:hover{
          background-color: #00462B;
          color: #fff;
          svg{
            path{
              transition: .3s ease-in-out;
              fill: #fff;
            }
          }
        }      
      }
      .active{
        background-color: #00462B;
        color: #fff;
        svg{
          path{
            transition: .3s ease-in-out;
            fill: #fff;
          }
        }
      }
    }
  }
}

.product-cart {
  border-radius: 4px;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
  position: relative;
}
.product-cart .product-img {
  width: 100%;
}
.product-cart .product-img img {
  width: 100%;
  height: 100%;
}
.product-cart .cart-body {
  padding: 14px;
  background: #FFFFFF;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-cart .cart-body .proCart_price{
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #00462B;
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.4);

}
.product-cart .cart-body .proCart-code{
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      color: #000;
      text-align: center;
}

.product_details {
  display: flex;
  align-items: center;
  gap: 48px;
}
.product_details .product-details-images {
  min-width: 690px;
  width: 690px;
  display: flex;
  align-items: start;
  gap: 20px;
}
.product_details .product-details-images .galleryThumb {
  min-width: 100px;
  width: 100px;
  height: 570px;
}
.product_details .product-details-images .galleryThumb .swiper-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 13px;
}
.product_details .product-details-images .galleryThumb .swiper-wrapper .thumb-img {
  width: 100%;
  height: 100px;
}
.product_details .product-details-images .galleryThumb .swiper-wrapper .thumb-img img {
  width: 100%;
  height: 100%;
}
.product_details .product-details-images .mainGallery {
  width: 100%;
  height: 570px;
}
.product_details .product-details-images .mainGallery .mainGallery-item {
  width: 100%;
}
.product_details .product-details-images .mainGallery .mainGallery-item img {
  width: 100%;
  height: 100%;
}
.product_details .product-details-images .mainGallery .swiper-button-next, .product_details .product-details-images .mainGallery .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.52);
}
.product_details .product-details-images .mainGallery .swiper-button-next::after, .product_details .product-details-images .mainGallery .swiper-button-prev::after {
  display: none;
}
.product_details .product-details-images .mainGallery .swiper-button-next {
  right: 10px;
}
.product_details .product-details-images .mainGallery .swiper-button-prev {
  left: 10px;
}
.product_details .product-details-content {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.product_details .product-details-content .apply_for_stock{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #FAFAFA;
    padding: 8px 24px;
    background: #00462B;
    border-radius: 4px;
    transition: 0.4s;
}

.play_order {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 12;
  display:none;
}
.play_order form {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  padding: 40px 20px;
  background: #fef9f7;
  z-index: 10;
  border-radius: 4px;
  display: flex;
  flex-direction:column;
  gap:20px;
  align-items: center;
  justify-content: center;
}
.play_order form .close_play_order {
  background: #fafafa;
  display:flex;
  margin-left: auto;
  align-items:center;
  justify-content:center;
  border-radius:100px;
  width:36px;
  height:36px;
  min-width:36px;
  padding:6px;
}
.play_order form .form-item{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
    width: 100%;
}
.play_order form .form-item label{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: rgba(0, 0, 0, 0.6);
}
.play_order form .form-item input{
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    outline: none;
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.6);
    padding: 12px
}
.play_order form .apply_play_order{
    margin-top:20px;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    background: #00462B;
    transition: 0.4s;
}

.product_details .product-details-content .in-stock{
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #007E33;
    display:block;
}
.product_details .product-details-content .off-stock{
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    color: #D92F21;
    display:block;
}
.product_details .product-details-content .title{
    margin-top:30px;
}
.product_details .product-details-content .detail-texts {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  margin-top: 20px;
}
.product_details .product-details-content .detail-texts p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.product_details .product-details-content .detail-texts li{
    font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.product_details .product-details-content .detailPrice{
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #000;
  margin-top: 8px;
}
.product_details .product-details-content .order-link {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #FAFAFA;
  padding: 13px 55px 13px 46px;
  background: #00462B;
  border-radius: 4px;
  transition: 0.4s;
}
.product_details .product-details-content .order-link:hover {
  background: #B4936E !important;
  transform: scale(1.05);
}

.otherProducts {
  position: relative;
}
.otherProducts .otherProduct-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 54px;
  text-align: left;
  color: #000;
}
.otherProducts .otherProductsSlide {
  padding-bottom: 20px;
  position: initial;
}
.otherProducts .otherProductsSlide .product-cart {
  width: 373px;
}
.otherProducts .otherProductsSlide .swiper-button-next, .otherProducts .otherProductsSlide .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.52);
  top: 25px;
}
.otherProducts .otherProductsSlide .swiper-button-next::after, .otherProducts .otherProductsSlide .swiper-button-prev::after {
  display: none;
}
.otherProducts .otherProductsSlide .swiper-button-next {
  right: 140px;
}
.otherProducts .otherProductsSlide .swiper-button-prev {
  left: auto;
  right: 200px;
}

.about-decoration-1 {
  width: 58%;
  position: absolute;
  top: 110px;
  right: 0;
}
.about-decoration-1 img {
  width: 100%;
  height: 100%;
}

.about-page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 44px;
}
.about-page .about {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 40px;
}
.about-page .about .about-top{
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.about-page .about .about-top .about-img {
  min-width: 780px;
  width: 780px;
  margin-left: auto;
}
.about-page .about .about-top .about-img img{
  width: 100%;
}
.about-page .about .about-top .about-title {
  font-size: 66px;
  font-weight: 500;
  line-height: 80px;
  text-align: left;
  color: #B4936E;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
  max-width: 600px;
}
.about-page .about .about-content{
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.about-page .about .about-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.about-page .about-decoration-2 {
  width: 75%;
  position: absolute;
  bottom: -120px;
  left: 0;
}
.about-page .about-decoration-2 img {
  width: 100%;
  height: 100%;
}

.contact {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 56px;
}
.contact .contact-left {
  min-width: 390px;
  width: 390px;
}
.contact .contact-left .contact-boxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.contact .contact-left .contact-boxes .contact-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.contact .contact-left .contact-boxes .contact-item span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #000;
}
.contact .contact-left .contact-boxes .contact-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000;
}
.contact .contact-left .contact-boxes .contact-item a span {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B4936E;
}
.contact .contact-left .contact-boxes .socials {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.contact .contact-left .contact-boxes .socials span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #000;
}
.contact .contact-left .contact-boxes .socials .social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact .contact-left .contact-boxes .socials .social-links a {
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B4936E;
}
.contact .contact-form {
  width: 100%;
  padding: 40px;
  background: rgba(250, 233, 225, 0.28);
  border-radius: 10px;
}
.contact .contact-form h5 {
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  color: #000;
}
.contact .contact-form form {
  width: 100%;
  margin-top: 20px;
}
.contact .contact-form form .form-line {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.contact .contact-form form .form-line .line-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  width: 100%;
}
.contact .contact-form form .form-line .line-item label {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.contact .contact-form form .form-line .line-item input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  outline: none;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.6);
  padding: 12px;
}
.contact .contact-form form .form-text-area {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  width: 100%;
}
.contact .contact-form form .form-text-area label {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.contact .contact-form form .form-text-area textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  outline: none;
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.6);
  padding: 12px;
  height: 150px;
  resize: none;
}
.contact .contact-form form .send-form {
  margin-top: 30px;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  padding: 9px 110px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  display: block;
  background: #00462B;
  transition: 0.4s;
}
.contact .contact-form form .send-form:hover {
  background: #B4936E;
  transform: scale(1.05);
}

.news .news-carts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.news .news-carts .news-cart {
  border: 1px solid rgba(0, 70, 43, 0.28);
  border-radius: 10px;
  background: rgba(250, 233, 225, 0.28);
  padding: 20px 20px 58px;
  position: relative;
}
.news .news-carts .news-cart .cart-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news .news-carts .news-cart .cart-top .cart-img {
  width: 45%;
  min-width: 45%;
  border-radius: 10px;
}
.news .news-carts .news-cart .cart-top .cart-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.news .news-carts .news-cart .cart-top .cart-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.news .news-carts .news-cart .cart-top .cart-body .news-time {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.news .news-carts .news-cart .cart-top .cart-body .cart-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #000;
}
.news .news-carts .news-cart p {
        display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.news .news-carts .news-cart .cart-more {
  padding: 5px 20px;
  border-radius: 10px;
  background: #00462B;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 20px;
  bottom: -20px;
}

.news-cart {
  border: 1px solid rgba(0, 70, 43, 0.28);
  border-radius: 10px;
  background: rgba(250, 233, 225, 0.28);
  padding: 20px 20px 58px;
  position: relative;
}
.news-cart .cart-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-cart .cart-top .cart-img {
  width: 45%;
  min-width: 45%;
  border-radius: 10px;
}
.news-cart .cart-top .cart-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.news-cart .cart-top .cart-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.news-cart .cart-top .cart-body .news-time {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.news-cart .cart-top .cart-body .cart-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #000;
}
.news-cart p {
            display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.news-cart .cart-more {
  padding: 5px 20px;
  border-radius: 10px;
  background: #00462B;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 20px;
  bottom: -20px;
  transition: 0.4s;
}
.news-cart .cart-more:hover {
  background: #B4936E !important;
  transform: scale(1.05);
}

.news-detail {
  display: flex;
  align-items: start;
  gap: 20px;
  justify-content: space-between;
}
.news-detail .news-content {
  padding: 40px;
  border-radius: 10px;
  background: rgba(250, 233, 225, 0.28);
}
.news-detail .news-content .news-name {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  text-align: left;
  color: #000;
}
.news-detail .news-content .news-texts {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  margin-top: 28px;
}
.news-detail .news-content .news-texts p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.8);
}
.news-detail .news-image {
  min-width: 45%;
  width: 45%;
  border-radius: 10px;
}
.news-detail .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.share-news p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.share-news .share-links {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.share-news .share-links a {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B4936E;
}

.otherNews {
  position: relative;
}
.otherNews .otherNews-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 54px;
  text-align: left;
  color: #000;
}
.otherNews .otherNewsSlide {
  padding-bottom: 20px;
  position: initial;
}
.otherNews .otherNewsSlide .news-cart {
  width: 373px;
}
.otherNews .otherNewsSlide .swiper-button-next, .otherNews .otherNewsSlide .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.52);
  top: 25px;
}
.otherNews .otherNewsSlide .swiper-button-next::after, .otherNews .otherNewsSlide .swiper-button-prev::after {
  display: none;
}
.otherNews .otherNewsSlide .swiper-button-next {
  right: 140px;
}
.otherNews .otherNewsSlide .swiper-button-prev {
  left: auto;
  right: 200px;
}

.videos .video-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.videos .video-gallery .video-item {
  width: 100%;
  height: 250px;
}
.videos .video-gallery .video-item iframe {
  width: 100%;
  height: 100%;
}

.home-video-section .home-video-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-video-section .home-video-top .all_video-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  gap: 12px;
  color: #00462B;
}
.home-video-section .home-video-area {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.home-video-section .home-video-area .home-videos {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  min-width: 50%;
  width: 50%;
}
.home-video-section .home-video-area .home-videos .home-video-item {
  display: none;
  width: 100%;
  height: 340px;
  padding-left: 16px;
  border-radius: 10px;
  position: relative;
}
.home-video-section .home-video-area .home-videos .home-video-item::after {
  position: absolute;
  content: "";
  border: 26px solid rgba(0, 70, 43, 0.6);
  top: -16px;
  left: -2px;
  width: 98%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
}
.home-video-section .home-video-area .home-videos .home-video-item iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.home-video-section .home-video-area .home-videos .active_homeVideo {
  display: block;
}
.home-video-section .home-video-area .home-video-buttons {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 16px;
}
.home-video-section .home-video-area .home-video-buttons .home-video-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  background: #FFFFFF;
  box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  transition: 0.5s;
  text-align: start;
}
.home-video-section .home-video-area .home-video-buttons .home-video-btn:hover {
  background: rgb(0, 70, 43);
  box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.08);
  color: #fff;
}
.home-video-section .home-video-area .home-video-buttons .home-video-btn:hover svg path {
  transition: 0.5s;
  stroke: #fff;
}
.home-video-section .home-video-area .home-video-buttons .active_home_btn {
  background: rgb(0, 70, 43);
  box-shadow: 4px 4px 12px 0px rgba(0, 0, 0, 0.08);
  color: #fff;
}
.home-video-section .home-video-area .home-video-buttons .active_home_btn svg path {
  stroke: #fff;
}

@media only screen and (min-width: 1650px) {
  .home-catalog .home-catalog-boxes .home-catalog-box {
    height: 470px;
  }
    
  .catalog-page .products .products-carts {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .product_details .product-details-images{
        min-width: 770px;
        width: 770px;
  }
  .product_details .product-details-images .mainGallery{
      height:650px;
  }
  .product_details .product-details-images .galleryThumb{
      height:650px;
  }
}
@media only screen and (min-width: 1850px) {
  .home-catalog .home-catalog-boxes .home-catalog-box {
    height: 500px;
  }
}
@media only screen and (min-width: 1550px) {
  .home-about {
    min-height: 650px;
  }
  .home-about .home-about-images {
    width: 50%;
    display: flex;
  }
  .home-about .home-about-images .homeAbout-img img {
    width: 100%;
  }
  .home-about .home-about-images .homeAbout-img {
    position: absolute;
    left: 0;
    top: -58px;
    width: 45%;
  }
}
@media only screen and (max-width: 1280px) {
  .home-catalog .home-catalog-top {
    width: 60%;
  }
  .home-catalog .home-catalog-boxes .home-catalog-box {
    height: 420px;
  }
  .videos .video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .videos .video-gallery .video-item:nth-child(5n+1) {
    width: 31.8%;
    height: 220px;
  }
  .videos .video-gallery .video-item:nth-child(5n+2) {
    width: 31.8%;
    height: 220px;
  }
  .videos .video-gallery .video-item:nth-child(5n+3) {
    width: 31.8%;
    height: 220px;
  }
  .videos .video-gallery .video-item:nth-child(5n+4) {
    width: 48.5%;
    height: 313px;
  }
  .videos .video-gallery .video-item:nth-child(5n) {
    width: 48.5%;
    height: 313px;
  }
}
@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 70px;
    padding-right: 70px;
  }
  .m-lr {
    margin-left: 70px;
    margin-right: 70px;
  }
  .p-tb {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .mt-120 {
    margin-top: 80px;
  }
  .mt-40 {
    margin-top: 35px;
  }
  .title {
    font-size: 32px;
    line-height: 48px;
  }
  .mt-48 {
    margin-top: 40px;
  }
  .mt-60 {
    margin-top: 45px;
  }
  footer .footer-top .footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  footer .footer-top .footer-links .footer_link {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-contact {
    gap: 20px;
  }
  .home-contact-box {
    padding: 30px 56px;
  }
  .home-contact-box .contact-box-title {
    font-size: 20px;
    line-height: 28px;
  }
  .home-contact-box .contact-box-items .box-item {
    gap: 15px;
  }
  .home-contact-box .contact-box-items .box-item a {
    gap: 6px;
  }
  .home-contact-box .contact-box-items .box-item .social-medias {
    gap: 15px;
  }
  header .header-links {
    gap: 20px;
  }
  .home-navbar {
    gap: 18px;
  }
  .home-navbar .home-navbar-logo img {
    width: 90px;
  }
  .home-navbar .home-navbar-logo p {
    font-size: 32px;
    line-height: 38px;
  }
  .home-navbar .home-navbar-links {
    gap: 24px;
  }
  .page-navbar .page-navbar-links {
    width: 35%;
  }
  .page-navbar .page-navbar-links .page-navbar-link {
    font-size: 15px;
  }
  .page-navbar .page-navbar-links .page-nav-menu .page_sub_menu a {
    font-size: 15px;
  }
  .page-navbar .page-navbar-right {
    width: 35%;
  }
  .page-navbar .page-navbar-right .page-navbar-link {
    font-size: 15px;
  }
  .page-navbar .page-navbar-links .page-nav-menu .page_sub_menu .page_sub_category .page_sub_category_menu {
        left: 165px;
    }
  .home-hero {
    padding-top: 185px;
    gap: 40px;
  }
  .home-hero .home-hero-img {
    width: 40%;
  }
  .home-hero h1 {
    display: block;
    font-size: 48px;
    font-weight: 400;
    line-height: 60px;
    width: 87%;
  }
  .home-hero .hero-star-1 svg {
    width: 70%;
  }
  .home-hero .hero-star-2 svg {
    width: 70%;
  }
  .home-hero .hero-star-3 svg {
    width: 70%;
  }
  .home-hero .hero-star-4 svg {
    width: 70%;
  }
  .home-hero .hero-star-5 svg {
    width: 70%;
  }
  .home-hero .hero-star-6 svg {
    width: 70%;
  }
  .home-about {
    margin-top: 150px;
    padding-top: 74px;
    padding-bottom: 74px;
    min-height: 524px;
  }
  .home-about .home-about-images {
    width: 55%;
  }
  .home-about .home-about-images .homeAbout-img {
    top: -58px;
    width: 45%;
  }
  .home-about .home-about-content {
    width: 45%;
  }
  .home-about .home-about-content p {
    margin-top: 15px;
  }
  .home-about .home-about-content .home-about-link {
    margin-top: 40px;
  }
  .home-catalog-slider .catalog-slide {
    padding-bottom: 40px;
  }
  .home-catalog-slider .catalog-slide .swiper-button-next, .home-catalog-slider .catalog-slide .swiper-button-prev {
    width: 44px;
    height: 44px;
    padding: 10px;
  }
  .home-catalog-slider .catalog-slide .swiper-button-next::after, .home-catalog-slider .catalog-slide .swiper-button-prev::after {
    display: none;
  }
  .home-catalog-slider .catalog-slide .swiper-button-prev {
    left: 43px;
  }
  .home-catalog-slider .catalog-slide .category-Slide-box {
    width: 247px !important;
    height: 289px;
    position: relative;
  }
  .home-catalog-slider .catalog-slide .category-Slide-box .category-name {
    max-width: 180px;
    min-width: 180px;
    padding: 12px;
    bottom: -25px;
  }
  .home-contact-box {
    padding: 30px 56px;
  }
  .home-contact-box .contact-box-title {
    font-size: 20px;
    line-height: 28px;
  }
  .home-contact-box .contact-box-items .box-item {
    gap: 15px;
  }
  .home-contact-box .contact-box-items .box-item a {
    gap: 6px;
  }
  .home-contact-box .contact-box-items .box-item .social-medias {
    gap: 15px;
  }
  .catalog-page {
    gap: 30px;
  }
  .catalog-page .catalog-filter {
    width: 300px;
    min-width: 300px;
    padding: 20px;
    gap: 15px;
  }
  .catalog-page .catalog-filter .mobile-catalog-btn {
    display: none;
  }
  .catalog-page .catalog-filter .catalog-filter-items {
    gap: 10px;
  }
  .catalog-page .catalog-filter .catalog-filter-items .filter-item {
    gap: 10px;
  }
  .catalog-page .catalog-filter .catalog-filter-items .filter-item .filter-links {
    gap: 10px;
  }
  .catalog-page .products .products-carts {
      margin-top:40px;
    grid-template-columns: repeat(2, 1fr);
  }
  .product_details {
    gap: 40px;
  }
  .product_details .product-details-content .title{
      margin-top:25px;
  }
  .product_details .product-details-images {
    min-width: 545px;
    width: 545px;
    gap: 15px;
  }
  .product_details .product-details-images .galleryThumb {
    min-width: 80px;
    width: 80px;
    height: 450px;
  }
  .product_details .product-details-images .galleryThumb .swiper-wrapper {
    gap: 10px;
  }
  .product_details .product-details-images .galleryThumb .swiper-wrapper .thumb-img {
    height: 80px;
  }
  .product_details .product-details-images .mainGallery {
    height: 450px;
  }
  .product_details .product-details-images .mainGallery .swiper-button-next, .product_details .product-details-images .mainGallery .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .product_details .product-details-images .mainGallery .swiper-button-next {
    right: 10px;
  }
  .product_details .product-details-images .mainGallery .swiper-button-prev {
    left: 10px;
  }
  .product_details .product-details-content .detail-texts {
    gap: 10px;
    margin-top: 15px;
  }
  .product_details .product-details-content .detailPrice{
    font-size: 20px;
  }
  .product_details .product-details-content .order-link {
    gap: 15px;
    padding: 10px 45px 10px 35px;
  }
  .otherProducts .otherProduct-title {
    font-size: 32px;
    line-height: 48px;
  }
  .otherProducts .otherProductsSlide {
    padding-bottom: 20px;
  }
  .otherProducts .otherProductsSlide .product-cart {
    width: 353px;
  }
  .otherProducts .otherProductsSlide .swiper-button-next, .otherProducts .otherProductsSlide .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .otherProducts .otherProductsSlide .swiper-button-next {
    right: 70px;
  }
  .otherProducts .otherProductsSlide .swiper-button-prev {
    left: auto;
    right: 110px;
  }
  .about-decoration-1 {
    width: 50%;
  }
  .about-page {
    gap: 30px;
  }
  .about-page .about {
    gap: 30px;
  }
  .about-page .about .about-top .about-img {
    min-width: 680px;
    width: 680px;
  }
  .about-page .about .about-top .about-title {
    font-size: 58px;
    line-height: 72px;
    max-width: 500px;
  }
  .about-page .about .about-content{
    gap: 8px;
  }
  .about-page .about-decoration-2 {
    width: 60%;
    bottom: -80px;
  }
  .contact {
    gap: 40px;
  }
  .contact .contact-left {
    min-width: 370px;
    width: 370px;
  }
  .contact .contact-left .contact-boxes {
    gap: 15px;
  }
  .contact .contact-left .contact-boxes .contact-item {
    gap: 12px;
  }
  .contact .contact-left .contact-boxes .contact-item span {
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-left .contact-boxes .contact-item a {
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-left .contact-boxes .contact-item a span {
    min-width: 35px;
    width: 35px;
    height: 35px;
  }
  .contact .contact-left .contact-boxes .socials {
    gap: 12px;
  }
  .contact .contact-left .contact-boxes .socials span {
    font-size: 14px;
    line-height: 20px;
  }
  .contact .contact-left .contact-boxes .socials .social-links {
    gap: 10px;
  }
  .contact .contact-left .contact-boxes .socials .social-links a {
    min-width: 35px;
    width: 35px;
    height: 35px;
  }
  .contact .contact-form {
    padding: 30px;
  }
  .contact .contact-form h5 {
    font-size: 22px;
    line-height: 28px;
  }
  .contact .contact-form form {
    margin-top: 20px;
  }
  .contact .contact-form form .form-line {
    gap: 20px;
  }
  .contact .contact-form form .form-line .line-item {
    gap: 10px;
  }
  .contact .contact-form form .send-form {
    margin-top: 20px;
    padding: 9px 90px;
  }
  .news-detail .news-content {
    padding: 30px;
  }
  .news-detail .news-content .news-name {
    font-size: 24px;
    line-height: 32px;
  }
  .news-detail .news-content .news-texts {
    gap: 10px;
    margin-top: 20px;
  }
  .otherNews {
    position: relative;
  }
  .otherNews .otherNews-title {
    font-size: 32px;
    line-height: 48px;
  }
  .otherNews .otherNewsSlide .news-cart {
    width: 353px;
  }
  .otherNews .otherNewsSlide .swiper-button-next, .otherNews .otherNewsSlide .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .otherNews .otherNewsSlide .swiper-button-next {
    right: 70px;
  }
  .otherNews .otherNewsSlide .swiper-button-prev {
    left: auto;
    right: 110px;
  }
  .home-news .title {
    text-align: center;
  }
  .home-news .home-news-area {
    padding-top: 30px;
    padding-bottom: 60px;
    gap: 100px;
  }
  .home-news .home-news-area .home-news-content .home-news-left .home-news-top {
    gap: 20px;
  }
  .home-news .home-news-area .home-news-content .home-news-left .home-news-top .home-news-name {
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 5px;
    padding-right: 25px;
  }
  .home-news .home-news-area .home-news-content .home-news-left .home-news-top .more {
    gap: 10px;
    min-width: 110px;
  }
  .home-news .home-news-area .home-news-content .home-news-left .home-news-text {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .home-news .home-news-area .home-news-content .home-news-left .home-news-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: rgba(0, 0, 0, 0.8);
  }
  .home-news .home-news-area .home-news-content .home-news-active {
    display: block;
  }
  .home-news .home-news-area .home-news-images {
    min-width: 50%;
    width: 50%;
  }
  .home-video-section .home-video-area {
    gap: 20px;
  }
  .home-video-section .home-video-area .home-videos {
    min-width: 50%;
    width: 50%;
  }
  .home-video-section .home-video-area .home-videos .home-video-item {
    height: 300px;
  }
  .home-video-section .home-video-area .home-video-buttons {
    gap: 12px;
  }
  .home-video-section .home-video-area .home-video-buttons .home-video-btn {
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 992px) {
  .home-contact-box {
    padding: 20px 46px;
  }
  .home-contact-box .contact-box-title {
    font-size: 20px;
    line-height: 28px;
  }
  .home-contact-box .contact-box-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .home-contact-box .contact-box-items .box-item {
    gap: 10px;
  }
  .home-contact-box .contact-box-items .box-item p {
    font-size: 14px;
    line-height: 22px;
  }
  .home-contact-box .contact-box-items .box-item a {
    gap: 4px;
    font-size: 14px;
    line-height: 22px;
  }
  .home-contact-box .contact-box-items .box-item .social-medias {
    gap: 10px;
  }
  .home-contact-box .contact-box-items .box-item .social-medias .social-media-item {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
  .page-navbar {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .page-navbar .page-navbar-logo {
    gap: 6px;
  }
  .page-navbar .page-navbar-logo img {
    width: 62px;
  }
  .page-navbar .page-navbar-logo p {
    font-size: 24px;
    line-height: 32px;
  }
  .page-navbar .page-navbar-links {
    display: none;
  }
  .page-navbar .page-navbar-right {
    display: none;
  }
  .page-navbar .hamburger {
    display: block;
  }
  .mobile_navbar_area{
      display:block;
  }
  .home-hero {
    padding-top: 175px;
    gap: 30px;
  }
  .home-hero .home-hero-img {
    width: 35%;
  }
  .home-hero h1 {
    display: block;
    font-size: 36px;
    font-weight: 400;
    line-height: 48px;
    width: 87%;
  }
  .home-hero .hero-star-1 svg {
    width: 50%;
  }
  .home-hero .hero-star-2 svg {
    width: 50%;
  }
  .home-hero .hero-star-3 svg {
    width: 40%;
  }
  .home-hero .hero-star-4 svg {
    width: 50%;
  }
  .home-hero .hero-star-5 svg {
    width: 40%;
  }
  .home-hero .hero-star-6 svg {
    width: 60%;
  }
  .home-catalog .home-catalog-top {
    width: 65%;
  }
  .home-contact-box {
    padding: 20px 46px;
  }
  .home-contact-box .contact-box-title {
    font-size: 20px;
    line-height: 28px;
  }
  .home-contact-box .contact-box-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .home-contact-box .contact-box-items .box-item {
    gap: 10px;
  }
  .home-contact-box .contact-box-items .box-item p {
    font-size: 14px;
    line-height: 22px;
  }
  .home-contact-box .contact-box-items .box-item a {
    gap: 4px;
    font-size: 14px;
    line-height: 22px;
  }
  .home-contact-box .contact-box-items .box-item .social-medias {
    gap: 10px;
  }
  .home-contact-box .contact-box-items .box-item .social-medias .social-media-item {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
  .catalog-page {
    flex-direction: column;
    gap: 30px;
  }
  .catalog-page .catalog-filter {
    width: 100%;
    min-width: 0;
    padding: 0;
    gap: 15px;
    position: relative;
    box-shadow: none;
  }
  .catalog-page .catalog-filter .mobile-catalog-btn {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    background: #fff;
    padding: 10px 20px;
    box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
  }
  .catalog-page .catalog-filter .catalog-title {
    display: none;
  }
  .catalog-page .catalog-filter .catalog-filter-items {
    padding: 20px;
    top: 95px;
    left: 0;
    position: absolute;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
    width: 100%;
    z-index:33;
  }
  .catalog-page .catalog-filter .showMobileFilter {
    visibility: visible;
    opacity: 1;
    top: 65px;
  }
  .catalog-page .products {
    width: 100%;
  }
  .catalog-page .products .products-carts {
      margin-top:30px;
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog-page .products .more_product_link {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 22px;
  }
  .product_details {
    gap: 40px;
    flex-direction: column;
  }
  .product_details .product-details-images {
    min-width: 500px;
    width: 500px;
    gap: 20px;
    flex-direction:column-reverse;

  }
  .product_details .product-details-images .galleryThumb {
    min-width: 0;
    width: 100%;
    height: 70px;
  }
  .product_details .product-details-images .galleryThumb .swiper-wrapper {
    gap: 10px;
    flex-direction: row;
  }
  .product_details .product-details-images .galleryThumb .swiper-wrapper .thumb-img {
    height: 70px;
    width: 70px !important;
  }
  .product_details .product-details-images .mainGallery {
      width:100% !important;
    height: 500px;
  }
  .product_details .product-details-images .mainGallery .swiper-button-next, .product_details .product-details-images .mainGallery .swiper-button-prev {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
  .product_details .product-details-content {
    width: 100%;
  }
  .product_details .product-details-content .detail-texts {
    gap: 10px;
    margin-top: 15px;
  }
  .product_details .product-details-content .order-link {
    gap: 15px;
    padding: 10px 45px 10px 35px;
  }
  .product-cart .cart-body {
    padding: 12px;
    background: #FFFFFF;
  }
  .otherProducts .otherProductsSlide .product-cart {
    width: 333px;
  }
  .otherProducts .otherProductsSlide .swiper-button-next, .otherProducts .otherProductsSlide .swiper-button-prev {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
  .about-decoration-1 {
    width: 50%;
    top: 75px;
  }
  .about-page .about .about-top .about-img {
    min-width: 550px;
    width: 550px;
  }
  .about-page .about .about-top .about-title {
    font-size: 52px;
    line-height: 64px;
    max-width: 450px;
  }
  .about-page .about-decoration-2 {
    width: 50%;
    bottom: -80px;
  }
  .contact {
    gap: 40px;
    flex-direction: column;
  }
  .contact .contact-left {
    min-width: 0;
    width: 100%;
  }
  .contact .contact-form {
    padding: 25px;
  }
  .contact .contact-form h5 {
    font-size: 20px;
    line-height: 24px;
  }
  .news .news-carts {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-cart .cart-top {
    gap: 10px;
  }
  .news-cart .cart-top .cart-img {
    width: 45%;
    min-width: 45%;
  }
  .news-cart .cart-top .cart-body {
    gap: 10px;
  }
  .news-cart .cart-top .cart-body .news-time {
    font-size: 12px;
    line-height: 20px;
  }
  .news-cart p {
    margin-top: 15px;
  }
  .news-detail {
    flex-direction: column;
  }
  .news-detail .news-content .news-name {
    font-size: 20px;
    line-height: 28px;
  }
  .news-detail .news-image {
    margin-left: auto;
    margin-right: auto;
    min-width: 50%;
    width: 50%;
    border-radius: 10px;
  }
  .otherNews .otherNewsSlide .news-cart {
    width: 333px;
  }
  .otherNews .otherNewsSlide .swiper-button-next, .otherNews .otherNewsSlide .swiper-button-prev {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
  .videos .video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .videos .video-gallery .video-item:nth-child(5n+1) {
    width: 48%;
    height: 220px;
  }
  .videos .video-gallery .video-item:nth-child(5n+2) {
    width: 48%;
    height: 220px;
  }
  .videos .video-gallery .video-item:nth-child(5n+3) {
    width: 100%;
    height: 220px;
  }
  .videos .video-gallery .video-item:nth-child(5n+4) {
    width: 48%;
    height: 220px;
  }
  .videos .video-gallery .video-item:nth-child(5n) {
    width: 48%;
    height: 220px;
  }
  .home-news .title {
    text-align: center;
  }
  .home-news .home-news-area {
    padding-top: 30px;
    padding-bottom: 40px;
    gap: 80px;
    flex-direction: column;
  }
  .home-news .home-news-area .home-news-content .home-news-left .home-news-top {
    gap: 20px;
  }
  .home-news .home-news-area .home-news-content .home-news-left .home-news-top .home-news-name {
    font-size: 20px;
    line-height: 28px;
    padding-bottom: 5px;
    padding-right: 20px;
  }
  .home-news .home-news-area .home-news-content .home-news-left .home-news-top .more {
    gap: 10px;
    min-width: 110px;
  }
  .home-news .home-news-area .home-news-content .home-news-left .home-news-text {
    margin-top: 20px;
    gap: 10px;
  }
  .home-news .home-news-area .home-news-content .home-news-left .home-news-text p {
    font-size: 14px;
    line-height: 20px;
  }
  .home-news .home-news-area .home-news-images {
    margin-left: auto;
    margin-right: auto;
    min-width: 0;
    width: 500px;
  }
  .home-video-section .home-video-top .all_video-link {
    font-size: 14px;
    line-height: 20px;
    gap: 10px;
  }
  .home-video-section .home-video-area {
    gap: 40px;
    flex-direction: column;
    align-items: start;
  }
  .home-video-section .home-video-area .home-videos {
    min-width: 0;
    width: 100%;
  }
  .home-video-section .home-video-area .home-videos .home-video-item {
    height: 340px;
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .m-lr {
    margin-left: 20px;
    margin-right: 20px;
  }
  .p-tb {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mt-120 {
    margin-top: 40px;
  }
  .title {
    font-size: 24px;
    line-height: 32px;
  }
  .mt-40 {
    margin-top: 30px;
  }
  .mt-48 {
    margin-top: 30px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .catalog-page .products .products-carts{
    grid-template-columns: repeat(2,1fr);
  }
  footer .footer-top {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
  footer .footer-top .footer-links {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  footer .footer-top .footer-links .footer_link {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-top .footer-links .footer_menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    position: relative;
  }
  footer .footer-top .footer-links .footer_menu .footer_sub_menu {
    display: none;
    position: relative;
    top: initial;
    left: initial;
    opacity: 1;
    visibility: visible;
    background: transparent;
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
  }
  footer .footer-top .footer-links .footer_menu .active_sub_menu {
    top: 0;
    opacity: 1;
    visibility: visible;
    display: flex;
  }
  footer .footer-contact {
    margin-top: 20px;
    gap: 20px;
  }
  footer .footer-socials {
    margin-top: 30px;
    justify-content: start;
  }
  header {
    display: none;
  }
  .home-navbar {
    position: initial;
    top: 0;
    gap: 16px;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
  }
  .home-navbar .home-navbar-logo img {
    width: 60px;
  }
  .home-navbar .home-navbar-logo p {
    font-size: 28px;
    line-height: 32px;
  }
  .home-navbar .home-navbar-links {
    display: none;
  }
  .home-navbar .hamburger {
    display: block;
  }

  .home-hero {
    padding-top: 100px;
    height: 200px;
    gap: 30px;
    padding-left: 20px;
    padding-right: 20px;
    align-items: start;
  }
  .home-hero .home-hero-img {
    display: none;
  }
  .home-hero .hero-line {
    display: none;
  }
  .home-hero h1 {
    font-size: 28px;
    line-height: 36px;
    width: 90%;
  }
  .home-hero .hero-star-1 {
    top: -6%;
    right: 0;
  }
  .home-hero .hero-star-1 svg {
    width: 50%;
  }
  .home-hero .hero-star-2 {
    top: 25%;
    left: 25%;
  }
  .home-hero .hero-star-2 svg {
    width: 50%;
  }
  .home-hero .hero-star-3 {
    bottom: 24%;
    right: 9%;
  }
  .home-hero .hero-star-3 svg {
    width: 40%;
  }
  .home-hero .hero-star-4 {
    top: 10%;
    right: 0;
  }
  .home-hero .hero-star-4 svg {
    width: 25%;
  }
  .home-hero .hero-star-5 {
    width: 94px;
    bottom: 0%;
    right: 2%;
    left: initial;
  }
  .home-hero .hero-star-5 svg {
    width: 50%;
  }
  .home-hero .hero-star-6 {
    bottom: 0;
  }
  .home-hero .hero-star-6 svg {
    width: 60%;
  }
  .home-catalog .home-catalog-top {
    width: 100%;
  }
  .home-catalog .home-catalog-top .all_catalog_link {
    font-size: 14px;
    gap: 6px;
  }
  .home-catalog .home-catalog-boxes {
    display: flex;
    flex-direction: column;
  }
  .home-catalog .home-catalog-boxes .home-catalog-box {
    height: auto;
  }

  .home-about {
    margin-top: 150px;
    padding-top: 74px;
    padding-bottom: 74px;
    min-height: 524px;
    flex-direction: column-reverse;
  }
  .home-about .home-about-images {
    width: 100%;
  }
  .home-about .home-about-images .homeAbout-img img {
    height: 100%;
  }
  .home-about .home-about-images .homeAbout-img {
    position: relative;
    z-index: 5;
    top: -20px;
    width: 100%;
  }
  .home-about .home-about-content {
    width: 100%;
  }
  .home-about .home-about-content p {
    margin-top: 15px;
  }
  .home-about .home-about-content .home-about-link {
    margin-top: 40px;
  }
  .home-catalog-slider {
    padding-right: 20px !important;
  }
  .home-catalog-slider .catalog-slide {
    padding-bottom: 40px;
  }
  .home-catalog-slider .catalog-slide .swiper-button-next, .home-catalog-slider .catalog-slide .swiper-button-prev {
    width: 44px;
    height: 44px;
    padding: 10px;
  }
  .home-catalog-slider .catalog-slide .swiper-button-next::after, .home-catalog-slider .catalog-slide .swiper-button-prev::after {
    display: none;
  }
  .home-catalog-slider .catalog-slide .swiper-button-prev {
    left: 0;
  }
  .home-catalog-slider .catalog-slide .category-Slide-box {
    width: 247px !important;
    height: 289px;
    position: relative;
  }
  .home-catalog-slider .catalog-slide .category-Slide-box .category-name {
    max-width: 180px;
    min-width: 180px;
    padding: 12px;
    bottom: -25px;
  }
  .home-contact-box .contact-decoration1 {
    position: absolute;
    top: -30px;
    left: -8px;
  }
  .home-contact-box .contact-decoration1 svg {
    width: 50%;
  }
  .home-contact-box .contact-decoration2 {
    position: absolute;
    top: -30px;
    right: 0;
  }
  .home-contact-box .contact-decoration2 svg {
    width: 50%;
  }
  .home-contact-box .contact-decoration3 {
    position: absolute;
    bottom: -25px;
    right: 42%;
  }
  .home-contact-box .contact-decoration3 svg {
    width: 50%;
  }
    .product_details .product-details-content .title{
      margin-top:15px;
  }
  .product_details .product-details-content .detailPrice{
    font-size: 18px;
    line-height: 28px;
  }
  .otherProducts .otherProduct-title {
    font-size: 20px;
    line-height: 32px;
  }
  .otherProducts .otherProductsSlide {
    padding-bottom: 20px;
  }
  .otherProducts .otherProductsSlide .product-cart {
    width: 303px;
  }
  .otherProducts .otherProductsSlide .swiper-button-next, .otherProducts .otherProductsSlide .swiper-button-prev {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
  .otherProducts .otherProductsSlide .swiper-button-next {
    right: 20px;
  }
  .otherProducts .otherProductsSlide .swiper-button-prev {
    right: 60px;
  }
  .about-decoration-1 {
    width: 50%;
    top: 75px;
  }
  .about-page {
    gap: 20px;
  }
  .about-page .about {
    gap: 20px;
  }
  .about-page .about .about-top{
    flex-direction: column;
    gap: 16px;
  }
  .about-page .about .about-top .about-img {
    min-width: 0;
    width: 100%;
  }
  .about-page .about .about-top .about-title {
    font-size: 44px;
    line-height: 56px;
    max-width: 100%;
    position: initial;
    transform: translate(0);
    text-align: center;
  }
  .about-page .about-decoration-2 {
    width: 40%;
    bottom: -40px;
  }
  .contact {
    gap: 30px;
  }
  .contact .contact-form form .form-line {
    flex-direction: column;
  }
  .contact .contact-form form .send-form {
    margin-top: 20px;
    padding: 9px 60px;
  }
  .news-detail {
    flex-direction: column;
  }
  .news-detail .news-content .news-name {
    font-size: 20px;
    line-height: 28px;
  }
  .news-detail .news-image {
    min-width: 0;
    width: 100%;
  }
  .otherNews .otherNews-title {
    font-size: 20px;
    line-height: 32px;
  }
  .otherNews .otherNewsSlide .news-cart {
    width: 303px;
  }
  .otherNews .otherNewsSlide .swiper-button-next, .otherNews .otherNewsSlide .swiper-button-prev {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
  .otherNews .otherNewsSlide .swiper-button-next {
    right: 20px;
  }
  .otherNews .otherNewsSlide .swiper-button-prev {
    right: 60px;
  }
  .home-news .title {
    text-align: center;
  }
  .home-news .home-news-area {
    gap: 60px;
  }
  .home-news .home-news-area .home-news-images {
    width: 80%;
  }
  .home-video-section .home-video-area {
    gap: 40px;
    flex-direction: column;
    align-items: start;
  }
  .home-video-section .home-video-area .home-videos {
    min-width: 0;
    width: 100%;
  }
  .home-video-section .home-video-area .home-videos .home-video-item {
    height: 300px;
  }
  .home-video-section .home-video-area .home-video-buttons {
    gap: 20px;
  }
  .home-video-section .home-video-area .home-video-buttons .home-video-btn {
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
  }
  .catalog-page .products .pro_filter .pro_filter_lists .pro_filter_item input:checked:before{
          left: 2px;
  }
  .catalog-page .products .pro_filter .pro_filter_lists .pro_filter_item input::after{
      left: -5px;
  }
}
@media only screen and (max-width: 575px) {
    .play_order form{
        width:90%;
    }
  .mobile_navbar_area .mobile_menu {
    width: 100%;
  }
  .home-contact-box {
    padding: 30px;
  }
  .home-contact-box .contact-box-title {
    font-size: 18px;
    line-height: 26px;
  }
  .home-contact-box .contact-box-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .home-contact-box .contact-box-items .box-item {
    gap: 10px;
    align-items: center;
  }
  .home-contact-box {
    padding: 30px;
  }
  .home-contact-box .contact-box-title {
    font-size: 18px;
    line-height: 26px;
  }
  .home-contact-box .contact-box-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .home-contact-box .contact-box-items .box-item {
    gap: 10px;
    align-items: center;
  }
  .catalog-page {
    flex-direction: column;
    gap: 30px;
  }
  .catalog-page .products .products-carts {
      margin-top:20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .catalog-page .products .pro_filter{
      margin-left:0;
      margin-right:auto;
  }
  .catalog-page .products .pro_filter .pro_filter_lists{
      top:53px;
      left:-2px;
  }
  .catalog-page .products .more_product_link {
    padding: 8px 16px;
    font-size: 12px;
    line-height: 20px;
  }
  .product_details {
    gap: 40px;
    flex-direction: column;
  }
  .product_details .product-details-images {
    min-width: 0;
    width: 100%;
    gap: 15px;
  }

  .product_details .product-details-images .galleryThumb .swiper-wrapper .thumb-img {
      width:50px !important;
    height: 50px;
  }
  .product_details .product-details-images .mainGallery {
    height: auto;
  }
  .product_details .product-details-images .mainGallery .swiper-button-next, .product_details .product-details-images .mainGallery .swiper-button-prev {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
  .product_details .product-details-content {
    width: 100%;
  }
  .product_details .product-details-content .detail-texts {
    gap: 10px;
    margin-top: 15px;
  }
  .product_details .product-details-content .order-link {
    gap: 15px;
    padding: 10px 45px 10px 35px;
  }
  .product-cart .cart-body {
    padding: 10px;
  }
  .product-cart .cart-body .proCart_price{
    font-size: 12px;
    line-height: 16px;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
  }
  .product-cart .cart-body .proCart-code{
    font-size: 13px;
    line-height: 18px;
}
  .news .news-carts {
    grid-template-columns: repeat(1, 1fr);
  }
  .videos .video-gallery .video-item:nth-child(5n+1) {
    width: 100%;
    height: 220px;
  }
  .videos .video-gallery .video-item:nth-child(5n+2) {
    width: 100%;
    height: 220px;
  }
  .videos .video-gallery .video-item:nth-child(5n+3) {
    width: 100%;
    height: 220px;
  }
  .videos .video-gallery .video-item:nth-child(5n+4) {
    width: 100%;
    height: 220px;
  }
  .videos .video-gallery .video-item:nth-child(5n) {
    width: 100%;
    height: 220px;
  }
}/*# sourceMappingURL=style.css.map */
