@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap");
:root {
  --size-80-px: 80px;
  --size-76-px: 76px;
  --size-70-px: 70px;
  --size-64-px: 64px;
  --size-58-px: 58px;
  --size-52-px: 52px;
  --size-48-px: 48px;
  --size-44-px: 44px;
  --size-40-px: 40px;
  --size-36-px: 36px;
  --size-32-px: 32px;
  --size-28-px: 28px;
  --size-24-px: 24px;
  --size-20-px: 20px;
  --size-18-px: 18px;
  --size-16-px: 16px;
  --size-14-px: 14px;
  --size-12-px: 12px;
  --size-10-px: 10px;
  --size-8-px: 8px;
}
@media (max-width: 900px) {
  :root {
    --size-80-px: 32px;
    --size-76-px: 28px;
    --size-70-px: 28px;
    --size-64-px: 24px;
    --size-58-px: 24px;
    --size-52-px: 20px;
    --size-48-px: 20px;
    --size-44-px: 18px;
    --size-40-px: 18px;
    --size-36-px: 16px;
    --size-32-px: 16px;
    --size-28-px: 14px;
    --size-24-px: 14px;
    --size-20-px: 12px;
    --size-18-px: 12px;
    --size-16-px: 10px;
    --size-14-px: 10px;
    --size-12-px: 8px;
    --size-10-px: 8px;
    --size-8-px: 6px;
  }
}

:root {
  --size-80-rem: 5rem;
  --size-76-rem: 4.75rem;
  --size-70-rem: 4.375rem;
  --size-64-rem: 4rem;
  --size-58-rem: 3.625rem;
  --size-52-rem: 3.25rem;
  --size-48-rem: 3rem;
  --size-44-rem: 2.75rem;
  --size-40-rem: 2.5rem;
  --size-36-rem: 2.25rem;
  --size-32-rem: 2rem;
  --size-28-rem: 1.75rem;
  --size-24-rem: 1.5rem;
  --size-20-rem: 1.25rem;
  --size-18-rem: 1.125rem;
  --size-16-rem: 1rem;
  --size-14-rem: 0.875rem;
  --size-12-rem: 0.75rem;
  --size-10-rem: 0.625rem;
  --size-8-rem: 0.5rem;
}
@media (max-width: 900px) {
  :root :root {
    --size-80-rem: 3rem;
    --size-76-rem: 2.5rem;
    --size-70-rem: 2.25rem;
    --size-64-rem: 2rem;
    --size-58-rem: 1.75rem;
    --size-52-rem: 1.5rem;
    --size-48-rem: 1.25rem;
    --size-44-rem: 1.25rem;
    --size-40-rem: 1.125rem;
    --size-36-rem: 1rem;
    --size-32-rem: 0.875rem;
    --size-28-rem: 0.75rem;
    --size-24-rem: 0.625rem;
    --size-20-rem: 0.625rem;
    --size-18-rem: 0.5rem;
    --size-16-rem: 0.5rem;
    --size-14-rem: 0.375rem;
    --size-12-rem: 0.375rem;
    --size-10-rem: 0.25rem;
    --size-8-rem: 0.25rem;
  }
}

:root {
  --size-80-vw: 5vw;
  --size-76-vw: 4.75vw;
  --size-70-vw: 4.375vw;
  --size-64-vw: 4vw;
  --size-58-vw: 3.625vw;
  --size-52-vw: 3.25vw;
  --size-48-vw: 3vw;
  --size-44-vw: 2.75vw;
  --size-40-vw: 2.5vw;
  --size-36-vw: 2.25vw;
  --size-32-vw: 2vw;
  --size-28-vw: 1.75vw;
  --size-24-vw: 1.5vw;
  --size-20-vw: 1.25vw;
  --size-18-vw: 1.125vw;
  --size-16-vw: 1vw;
  --size-14-vw: 0.875vw;
  --size-12-vw: 0.75vw;
  --size-10-vw: 0.625vw;
  --size-8-vw: 0.5vw;
}

@media (max-width: 900px) {
  :root {
    --size-80-vw: 4vw;
    --size-76-vw: 3.5vw;
    --size-70-vw: 3vw;
    --size-64-vw: 3vw;
    --size-58-vw: 2.5vw;
    --size-52-vw: 2.5vw;
    --size-48-vw: 2vw;
    --size-44-vw: 2vw;
    --size-40-vw: 1.75vw;
    --size-36-vw: 1.75vw;
    --size-32-vw: 1.5vw;
    --size-28-vw: 1.25vw;
    --size-24-vw: 1.25vw;
    --size-20-vw: 1vw;
    --size-18-vw: 0.875vw;
    --size-16-vw: 0.875vw;
    --size-14-vw: 0.75vw;
    --size-12-vw: 0.625vw;
    --size-10-vw: 0.625vw;
    --size-8-vw: 0.5vw;
  }
}
.shimmer {
  position: relative;
}

.shimmer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(90deg, #eee, #f9f9f9, #eee);
  background-size: 200%;
  animation: shimmer 1s infinite reverse;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.desk-h100-slider img {
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .mobile-h100-slider img, .desk-h100-slider img {
    height: auto !important;
  }
}
[data-theme=default] {
  --white:#fff;
  --black:#000;
  --primary:#EE736C;
  --secondary:#43B02A;
  --text-color:#616161;
}

body {
  width: 100%;
  float: left;
  font-family: "Maven Pro", sans-serif;
}
html,body {
  overflow-x: hidden;
}
body ul > li {
  list-style: none;
}
.form-control {
    outline:none!important;
    box-shadow:none!important;
}
body a {
  text-decoration: none;
}
body img {
  max-width: 100%;
}

.main {
  width: 100%;
  float: left;
}

.container {
  padding: 0vw 6.2vw;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 900px) {
  .container {
    padding: 0vw 1.5em;
  }
}

.main-head h2 {
  font-size: 3vw;
  color: var(--primary);
  line-height: 1.3;
  font-weight: 600;
  display: block;
}

header {
  width: 100%;
  float: left;
  box-shadow: 1px 2px 13px rgba(0, 0, 0, 0.1411764706);
  z-index: 1000;
}
header .logo {
  width: 14vw;
}
header .top-bar {
  background: var(--secondary);
  color: var(--white);
  padding: 0.5rem 0rem;
}
header .top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .top-bar ul {
  display: flex;
  align-items: center;
  margin: 0px;
  align-items: center;
  padding: 0px;
}
header .top-bar ul li {
  margin: 0px 5px;
  padding: 0px 10px;
  border-right: 1px solid var(--white);
}
header .top-bar ul li a {
  display: flex;
  align-items: center;
  color: var(--white);
}
header .top-bar ul li:nth-last-of-type(1) {
  margin-right: 0px;
  border-right: 0px;
  padding-right: 0px;
}
header .sub-menu {
  padding: 0px !important;
  position: absolute;
  top: 100%;
  left: 0%;
  background: #ECF7EA;
  width: -moz-max-content;
  width: max-content;
  box-shadow: -4px 7px 13px rgba(0, 0, 0, 0.0784313725);
  transition: all 0.3s ease-in-out;
  transform: translate(0px, 50px);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  min-width: 260px;
  padding: 9px;
  border-radius: 0px 0px 10px 10px;
}
header .sub-menu:before {
  width: 20px;
  height: 13px;
  position: absolute;
  content: "";
  background: url("https://r7f.4cf.mytemp.website/tamashi/wp-content/uploads/2024/06/submenu-arrow.png");
  background-size: contain;
  bottom: 100%;
  background-repeat: no-repeat;
  left: 15%;
}
header .sub-menu .sub-menu {
  display: none;
  width: 200px !important;
  left: 100%;
  top: 0%;
}
header .sub-menu li {
  padding: 10px !important;
  width: 100%;
  float: left;
  border-bottom: 1px solid #cecece;
}
header .sub-menu li:hover .sub-menu {
  display: block !important;
}
header .navbar-toggler {
  border: 0px;
  outline: 0px !important;
  padding: 0px;
}
header .navbar-toggler:focus {
  outline: 0px;
  box-shadow: none;
}
header .navbar {
  padding: 1rem 0rem;
}
header .navbar-nav {
  padding: 0rem;
}
header .navbar-nav li {
  position: relative;
  padding: 0vw 2.5vw;
  border-right: 1px solid #E3E3E3;
}
header .navbar-nav li a {
  color: var(--black) !important;
  float: left;
  width: 100%;
  font-size: 1.2vw;
  position: relative;
  display: flex;
  align-items: center;
}
header .navbar-nav .menu-children-item > a::after {
  width: 8px;
  height: 8px;
  background: url(../images/dropdown-icon.png);
  content: "";
  position: absolute;
  right: -14px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
header .user-serach {
  display: flex;
  align-items: center;
  margin: 0px;
}
header .user-serach li {
  border-right: 1px solid #E3E3E3;
}
header .user-serach li a {
  padding: 0px 20px;
  cursor: pointer;
}
header .user-serach li a img {
  width: 25px;
  height: 25px;
}
header .user-serach li:nth-last-of-type(1) {
  border-right: 0px;
}
header .user-serach li:nth-last-of-type(1) a {
  padding-right: 0px;
}
header .menu-children-item:hover .sub-menu {
  opacity: 1;
  transform: translate(0px, 0px);
  pointer-events: all;
}

.header-fixed {
  position: fixed;
  background-color: var(--white);
  top: -100px;
  transition: transform 0.5s;
  transform: translateY(100px);
}

.banner-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  height: -moz-max-content;
  height: max-content;
  text-align: left;
}
.banner-text strong {
  font-size: 3.8vw;
  color: var(--primary);
  line-height: 1.3;
  font-weight: 600;
  display: block;
}
.banner-text p {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 10px;
  margin: 16px 0px 50px 0px;
}
.banner-text p:has(strong) {
  margin: 0px;
}

.theme-btn {
  color: var(--black) !important;
  font-weight: 500;
  padding-left: 0px;
  font-size: 0.9rem;
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}
.theme-btn::after {
  width: 1rem;
  height: 1rem;
  background: url(../images/right-icon.png);
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}

.theme-btn-white {
  color: var(--white) !important;
}
.theme-btn-white::after {
  filter: brightness(100) invert(100);
}

.btn-theme-bg {
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 500;
  font-size: 1.2vw;
  padding: 8px 20px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  width: 60px !important;
  height: 60px !important;
}
.hero-slider .swiper-button-next img,
.hero-slider .swiper-button-prev img {
  width: 60px !important;
  height: 60px !important;
}
.hero-slider .swiper-button-prev:after, .hero-slider .swiper-rtl .swiper-button-next:after,
.hero-slider .swiper-button-next:after, .hero-slider .swiper-rtl .swiper-button-prev:after {
  display: none;
}

.category-sec h2 {
  text-align: center;
}
.category-sec p {
  text-align: center;
  color: var(--text-color);
}
.category-sec .row {
  margin-top: 3.5vw;
  display: inline;
}
.category-sec .row .col-lg-6 a {
  display: contents;
}

.category-card {
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  flex-direction: column;
}
.category-card img {
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}

.two-cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.two-cards .category-card {
  display: flex;
  gap: 50px;
  align-items: center;
  text-align: left;
  height: calc(50% - 15px);
  flex-direction: row;
}
.two-cards .category-card img {
  width: 37%;
  height: auto;
}

.category-sec .col-lg-6 {
  min-height: 490px;
}
.category-sec .col-lg-6:nth-child(2), .category-sec .col-lg-6:nth-child(3) {
  min-height: 205px;
}
.category-sec .col-lg-6:nth-child(2) .category-card, .category-sec .col-lg-6:nth-child(3) .category-card {
  display: flex;
  gap: 50px;
  align-items: center;
  text-align: left;
  height: calc(50% - 15px);
  flex-direction: row;
}
.category-sec .col-lg-6:nth-child(2) .category-card img, .category-sec .col-lg-6:nth-child(3) .category-card img {
  width: 37%;
  height: 152px;
}
.category-sec .col-lg-6:nth-child(3) {
  margin-top: 25px;
}

.all-needs-sec {
  position: relative;
}
.all-needs-sec .text-part {
  padding: 0vw 6.2vw;
  position: absolute;
  top: 18%;
  right: 0;
  width: 56%;
}
.all-needs-sec .text-part h2 {
  font-size: 3.8vw;
  color: var(--primary);
  line-height: 1.1;
  font-weight: 600;
  display: block;
}
.all-needs-sec .text-part p {
  font-weight: 400;
  margin: 20px 0px;
}

.our-product-main {
  padding: 6vw 0vw;
  
}
.our-product-main h2 {
  text-align: center;
}
.our-product-main p {
  text-align: center;
  color: var(--text-color);
}
.our-product-main .row {
  max-width: 80%;
  margin: auto;
}

.icon-pills {
  justify-content: center;
  gap: 20px;
  margin-top: 4vw;
}
.icon-pills .nav-link.active, .icon-pills .nav-pills .show > .nav-link {
  background-color: transparent;
}
.icon-pills li {
  width: 15%;
}
.icon-pills button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #000 !important;
  border: 1px solid #D9D9D9;
  border-radius: 0px !important;
  width: 100%;
  padding: 20px;
  height: 100%;
}
.icon-pills button img {
  width: 60px !important;
  height: 60px !important;
  filter: brightness(100) invert(1);
  -o-object-fit: contain;
     object-fit: contain;
}
.icon-pills .active {
  border-color: var(--secondary);
  color: var(--secondary) !important;
}
.icon-pills .active img {
  filter: inherit;
}

.product-card {
  border: 1px solid #E8E8E8;
  width: 100%;
  float: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin:0 0 20px;
}
.product-card .img-part {
  padding: 20px;
  text-align:center;
  
}
.product-card .img-part img {
    height: 200px;
    object-fit: contain;
}

.product-card .text-part {
  position: relative;
  z-index: 1;
  padding: 20px 20px 40px 20px;
  text-align: center;
  margin-top: 13%;
  transition: all 0.3s ease-in-out;
}
.product-card .text-part h3 {
  font-size: 1.2vw;
  font-weight: 600;
}
.product-card .btn-sec {
  border-top: 1px solid rgba(255, 255, 255, 0.3176470588);
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 0;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100px);
  transition: all 0.3s ease-in-out;
}
.product-card .btn-sec a {
  color: var(--white) !important;
  font-size: 1vw;
}
.product-card .btn-sec a::after {
  filter: brightness(100) invert(1);
}
.product-card:after {
  width: 100%;
  height: 50%;
  background: url(../images/product-card-overlay.svg);
  content: "";
  position: absolute;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.1s ease-in-out;
}
.product-card:hover:after {
  background: url(../images/product-card-overlay-active.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.product-card:hover h3 {
  color: var(--white);
}
.product-card:hover .text-part .btn-sec {
  transform: translateY(0px);
}

.product-tabs ul#pills-tab {
  justify-content: center;
  font-size: 1vw;
  margin: 30px !important;
}
.product-tabs ul#pills-tab li button {
  color: var(--black);
  font-weight: 500;
}
.product-tabs div#pills-tabContent {
  border-top: 1px solid #cecece;
  padding: 4vw 0vw 0vw 0vw;
}
.product-tabs .nav-pills .nav-link.active, .product-tabs .nav-pills .show > .nav-link {
  color: var(--white) !important;
  background-color: var(--secondary) !important;
  border-radius: 50px;
}
.product-tabs .btn-center {
  display: flex;
  justify-content: center;
  margin-top: 4vw;
}

.video-sec {
  position: relative;
}
.video-sec video {
  height: 70vh;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-sec #video-controls {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  display: flex;
  left: 10%;
  z-index: 1;
}
.video-sec #video-controls button {
  border: 0px;
  background: transparent;
}
.video-sec #video-controls button img {
  width: 100px;
}
.video-sec .text-part {
  position: absolute;
  top: 0;
  width: 35%;
  right: 10%;
  bottom: 0;
  margin: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  color: var(--white);
}
.video-sec .text-part h2 {
  font-size: 3vw;
  font-style: italic;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  border-bottom: 2px solid var(--white);
  padding-bottom: 20px;
}
.video-sec .text-part h2 span {
  display: block;
  font-size: 5vw;
}
.video-sec .text-part p {
  font-size: 1vw;
  margin: 20px 0px;
}
.video-sec::after {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3176470588);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.trending-sec {
  margin: 6vw 0vw;
  position: relative;
}
.trending-sec::before {
  width: 20vw;
  height: 20vw;
  background: url(../images/trending-abstract-1.png);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.trending-sec::after {
  width: 28vw;
  height: 20vw;
  background: url(../images/trending-abstract-2.png);
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.trending-sec .container {
  position: relative;
}
.trending-sec .view-all {
  position: absolute;
  top: 10px;
  right: 6.2vw;
}
.trending-sec .owl-carousel .owl-stage {
  display: flex;
}
.trending-sec .item {
  display: flex;
  height: 100%;
}

.owl-nav {
  margin-top: 40px !important;
}
.owl-nav button {
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50px;
}
.owl-nav button span {
  font-size: 0px;
}
.owl-nav .owl-next {
  background: url(../images/next-icon.png) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}
.owl-nav .owl-prev {
  background: url(../images/prev-icon.png) !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

.dealer-sec .img-part {
  border-radius: 12px;
  overflow: hidden;
}
.dealer-sec .text-part {
  background: var(--primary);
  position: absolute;
  right: 0px;
  width: 60%;
  padding: 80px;
  bottom: -10%;
  color: var(--white);
  border-radius: 12px;
}
.dealer-sec .text-part h2 {
  color: var(--white);
}
.dealer-sec .text-part p {
  margin: 20px 0px;
  font-weight: 200 !important;
  font-size: 1vw;
  line-height: 1.8;
}
.dealer-sec .row {
  position: relative;
}

.testimonial-sec {
  margin: 9vw 0vw 0vw 0vw;
  background: url(../images/testimonial-bg.png);
  padding: 5em 0em;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
}
.testimonial-sec h2 {
  color: var(--white);
}
.testimonial-sec .testimoaial-slider {
  position: relative;
}
.testimonial-sec .owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 28%;
  width: 100%;
}

.testimonial-card {
  background: var(--white);
  padding: 60px 8%;
  border-radius: 20px;
  max-width: 65%;
  margin: 40px auto;
  position: relative;
  color: #303030;
  z-index: 2;
}
.testimonial-card h3 {
  margin-bottom: 20px;
  font-weight: 600;
}
.testimonial-card::after {
  position: absolute;
  width: 50px;
  height: 50px;
  background: url(../images/testi-drop-icon.png);
  content: "";
  left: 0;
  top: 95%;
  right: 0;
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
}

.testimonial-card-main {
  position: relative;
}
.testimonial-card-main::after {
  width: 10vw;
  height: 10vw;
  content: "";
  background: url(../images/dots-img.png);
  position: absolute;
  bottom: 2vw;
  left: 11vw;
  background-size: contain;
  background-repeat: no-repeat;
}
.testimonial-card-main::before {
  width: 10vw;
  height: 10vw;
  content: "";
  background: url(../images/dots-img.png);
  position: absolute;
  bottom: 5vw;
  right: 11vw;
  background-size: contain;
  background-repeat: no-repeat;
}

.blog-card h3 {
  color: #3A3A3A;
  margin: 20px 0px;
  font-size: 1.5vw;
  font-weight: 600;
}
.blog-card span {
  color: #898989;
  font-size: 1vw;
}

.blog-sec {
  padding: 5em 0em;
}
.blog-sec h2 {
  text-align: center;
}
.blog-sec .blog-slider {
  margin-top: 1em;
}

.blog-card {
  box-shadow: 0px 0px 20px 6px rgba(141, 139, 139, 0.2196078431);
  margin: 30px 0px;
}
.blog-card .text-part {
  padding: 20px;
}

.enquire-now-sec {
  display: flex;
  align-items: center;
  background: var(--primary);
}
.enquire-now-sec .submit-btn {
  padding: 0px;
  color: var(--white) !important;
  margin-top: 22px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.enquire-now-sec .submit-btn::after {
  width: 20px;
  height: 20px;
  background: url(../images/right-arrow-white.png);
  content: "";
  position: absolute;
  left: 107%;
  top: 2px;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.enquire-now-sec .w-50 {
  float: left;
}
.enquire-now-sec .text-part {
  color: var(--white);
  padding: 0vw 4vw;
}
.enquire-now-sec .text-part h2 {
  font-weight: 200;
}
.enquire-now-sec .text-part .form-control {
  background: transparent;
  border-radius: 0px;
  border: 0px;
  border-bottom: 1px solid var(--white);
  padding: 12px;
  margin-bottom: 20px;
  color: var(--white);
}
.enquire-now-sec .text-part ::-moz-placeholder {
  color: var(--white);
}
.enquire-now-sec .text-part ::placeholder {
  color: var(--white);
}
.enquire-now-sec .text-part ::-ms-input-placeholder {
  color: var(--white);
}

.footer {
  margin-top: 60px;
  border-top: 1px solid #cecece;
  padding-top: 80px;
}
.footer .footer-card .logo {
  max-width: 90%;
}
.footer .footer-card ul {
  padding: 0px;
}
.footer .footer-card li {
  margin-bottom: 10px;
}
.footer .footer-card li a {
  color: var(--black) !important;
  text-transform: uppercase;
  font-weight: 500;
}
.footer .footer-card strong {
  font-size: 1.3vw;
  color: var(--primary);
  display: block;
  margin: 30px 0px 16px 0px;
}
.footer .footer-card .social-flex {
  margin: 30px 0px;
}
.footer .footer-card .social-flex a {
  font-size: 1.4vw;
}
.footer .footer-card .terms ul {
  padding: 0px;
  display: flex;
}
.footer .footer-card .terms ul li {
  width: -moz-fit-content;
  width: fit-content;
  float: left;
  margin-right: 16px;
}
.footer .footer-card .terms ul li a {
  color: #818181 !important;
  font-weight: 400 !important;
}
.footer .footer-card .copyright p {
  color: #818181 !important;
  font-weight: 400;
}
.footer .address-part li {
  margin-bottom: 20px;
}
.footer .address-part li a {
  display: flex;
  align-items: center;
}
.footer .address-part li a img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  flex: 0 0 auto;
  margin-right: 12px;
}
.footer .main-footer .row {
  margin: 30px 0px 0px 0px;
  border-top: 1px solid #cecece;
  padding-top: 30px;
}
.footer .main-footer .social-flex ul {
  display: inline-flex;
  padding: 0px;
  margin: 0px;
}
.footer .main-footer .social-flex ul li {
  list-style: none;
  margin-right: 20px;
}
.footer .main-footer .social-flex ul li a {
  color: #000;
}
.footer .two-links ul {
  width: 50%;
  padding: 0px;
}
.footer .two-links {
  display: flex;
}

.newsletter-sec .row {
  align-items: center;
}
.newsletter-sec img {
  width: 100%;
}
.newsletter-sec h3 {
  margin: 30px 0px;
  text-transform: uppercase;
}
.newsletter-sec .type-badge {
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #cecece;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}
.newsletter-sec .form-part {
  padding-left: 30px;
}
.newsletter-sec .form-part p {
  position: relative;
}
.newsletter-sec .form-part input {
  border: 0px;
  border-bottom: 1px solid;
  width: 100%;
  padding: 12px 0px 6px 0px;
  border-radius: 0px !important;
}
.newsletter-sec .form-part form {
  position: relative;
}
.newsletter-sec .form-part .btn-subscriben {
  color: var(--secondary);
  font-weight: 500;
  position: absolute;
  right: 0;
  padding: 0px;
  top: 12px;
  border: 0px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
  background-image: url(../images/right-arrow-theme.png);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center left;
  background-position-x: 0px;
  padding-left: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #E43726 !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-theme .owl-dots .owl-dot.active span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #E43726;
}

.inner-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.inner-banner::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.3176470588);
}
.inner-banner .text-part {
  position: absolute;
  z-index: 1;
  color: var(--white);
  width: 100%;
  text-align: center;
}
.inner-banner .text-part .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}
.inner-banner .text-part ol {
  margin: 20px 0px 0px 0px;
  justify-content: center;
}
.inner-banner .text-part ol a {
  color: var(--white);
}
.inner-banner .text-part ol .breadcrumb-item.active {
  color: var(--white);
}
.inner-banner img {
  width: 100%;
  height: 60vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-page h2 {
  text-align: center;
}
.about-page .aobut-content-part {
  background: url(../images/about-bg.png);
  padding: 3vw 5vw;
  border-radius: 30px;
  max-width: 80%;
  margin: 5vw auto 0vw auto;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  color: var(--white);
  line-height: 30px;
}
.about-page .about-img-part {
  max-width: 65%;
  margin: -5vw auto 0vw auto;
}

.founder-message-sec {
  background: url(../images/founder-bg.jpg);
  padding: 4vw 0vw 10vw 0vw;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.founder-message-sec h2 {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 2vw;
}
.founder-message-sec::after {
  width: 100%;
  height: 100%;
  background: rgba(67, 176, 42, 0.7490196078);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}
.founder-message-sec .container {
  z-index: 1;
  position: relative;
  color: var(--white);
}
.founder-message-sec .container p {
  max-width: 80%;
  margin: auto;
  text-align: center;
  line-height: 30px;
}

.main.who-we-are-boxes {
  position: relative;
  margin-top: -8vw;
}
.main.who-we-are-boxes .who-we-are-box {
  background: #F6F6F6;
  padding: 7vw 6vw 4vw 6vw;
  border-radius: 12px;
  text-align: center;
  line-height: 30px;
}
.main.who-we-are-boxes .who-we-are-box h3 {
  font-size: 3vw;
  font-weight: 300;
  margin-bottom: 2vw;
}
.main.who-we-are-boxes .col-lg-6:nth-last-of-type(1) .who-we-are-box {
  background: var(--primary);
  color: var(--white);
}

.our-mission-sec h2 {
  text-align: left;
}

.about-page .blog-sec {
  padding: 0px;
}

.our-mission-sec {
  padding: 10vw 0vw;
  line-height: 30px;
  position: relative;
}
.our-mission-sec::before {
  width: 30vw;
  height: 20vw;
  content: "";
  position: absolute;
  background: url(../images/footer-abstract-1.png);
  left: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.our-mission-sec::after {
  width: 30vw;
  height: 30vw;
  content: "";
  position: absolute;
  background: url(../images/footer-abstract-2.png);
  right: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.main-footer {
  position: relative;
}
.main-footer::before {
  width: 30vw;
  height: 20vw;
  content: "";
  position: absolute;
  background: url(../images/footer-abstract-1.png);
  left: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.main-footer::after {
  width: 30vw;
  height: 30vw;
  content: "";
  position: absolute;
  background: url(../images/footer-abstract-2.png);
  right: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.product-card-new {
  border: 1px solid rgba(206, 206, 206, 0.3176470588);
  border-bottom: 0px;
  border-left: 0px;
  text-align: center;
  padding: 40px 15px;
}
.product-card-new img {
  height: 260px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card-new a {
  color: var(--black);
  font-weight: 600;
  margin-top: 2vw;
  display: block;
}

.blog-main-page {
  padding-top: 0px;
}

.appliences-page {
  padding: 6vw 0vw 1vw 0vw;
}
.appliences-page p {
  font-weight: 500;
  text-align: center;
}
.appliences-page .row {
  margin-top: 4vw;
}
.appliences-page .row .col-lg-3 {
  padding: 0px;
}
.appliences-page .row .col-lg-3:nth-child(4n) .product-card-new {
  border-right: 0px;
}
.appliences-page .row .col-lg-3:nth-last-of-type(1) .product-card-new, .appliences-page .row .col-lg-3:nth-last-of-type(2) .product-card-new, .appliences-page .row .col-lg-3:nth-last-of-type(3) .product-card-new, .appliences-page .row .col-lg-3:nth-last-of-type(4) .product-card-new {
  border-bottom: 0px;
}

.categories-page {
  padding: 6vw 0vw 1vw 0vw;
}
.categories-page p {
  font-weight: 500;
  text-align: center;
}

.main-filter {
  max-width: 80%;
  margin: auto;
}
.main-filter .col-lg-4 {
  margin-bottom: 30px;
}
.main-filter .column {
  display: none;
}
.main-filter .show {
  display: block;
}

.contact-main-page {
  background: transparent !important;
  padding: 3vw 0vw 0vw 0vw !important;
}
.contact-main-page .map {
  padding: 0px !important;
}
.contact-main-page .row {
  margin: 0px;
}
.contact-main-page .enquire-now-sec {
  align-items: baseline;
  padding: 0px;
  box-shadow: 0px 0px 16px 6px rgba(227, 227, 227, 0.7882352941);
  margin-bottom: 30px;
  padding: 3vw 2vw;
  display: block;
  border-radius: 12px;
  background: var(--white) !important;
}
.contact-main-page .enquire-now-sec .w-50 .img-part {
  width: 100%;
  padding: 4vw 0vw;
}
.contact-main-page .enquire-now-sec .w-50 .social-flex {
  position: absolute;
  bottom: 50px;
}
.contact-main-page .enquire-now-sec .w-50 .social-flex ul {
  margin: 0px !important;
}
.contact-main-page .enquire-now-sec .w-50:nth-child(1) {
  background: var(--primary);
  display: flex;
  height: 100%;
  border-radius: 12px 0px 0px 12px;
  position: relative;
}
.contact-main-page .enquire-now-sec .w-50:nth-child(1)::after {
  width: 49%;
  background: url("https://r7f.4cf.mytemp.website/tamashi/wp-content/uploads/2024/06/contact-overlay.png");
  height: 200px;
  content: "";
  position: absolute;
  bottom: 0;
  right: 12%;
  background-size: contain;
  background-repeat: no-repeat;
}
.contact-main-page .enquire-now-sec .text-part {
  padding: 4vw;
  position: relative;
}
.contact-main-page .enquire-now-sec .text-part .submit-btn {
  background: var(--primary) !important;
  padding: 10px !important;
  margin: 0px !important;
  position: relative;
  right: 4vw !important;
  position: absolute;
}
.contact-main-page .enquire-now-sec .text-part .form-control {
  border-bottom: 1px solid var(--black);
}
.contact-main-page .enquire-now-sec .w-50:nth-last-of-type(1) {
  background: var(--white) !important;
}
.contact-main-page .enquire-now-sec ::-moz-placeholder {
  color: var(--black) !important;
}
.contact-main-page .enquire-now-sec ::placeholder {
  color: var(--black) !important;
}
.contact-main-page .enquire-now-sec ::-ms-input-placeholder {
  color: var(--black) !important;
}

#myBtnContainer {
  display: flex;
  justify-content: center;
  border: 1px solid #cecece;
  border-right: 0px;
  border-left: 0px;
  padding: 2.4vw;
  margin: 4vw;
  flex-wrap: wrap !important;
}
#myBtnContainer .btn {
  color: var(--black);
  font-weight: 500;
  border-radius: 50px;
}
#myBtnContainer .active {
  background: var(--secondary);
  color: var(--white);
}

.faq-page {
  padding: 5vw 0vw 0vw 0vw;
}

.accordion-item {
  box-shadow: 0px 0px 6px rgba(8, 15, 52, 0.1019607843);
  margin: 20px 0px;
  border-radius: 12px !important;
  overflow: hidden;
  border: 0px;
  padding: 10px;
  border: 2px solid transparent;
}
.accordion-item button {
  font-weight: 600;
  font-size: 1.3vw;
  background-color: transparent !important;
  color: var(--black) !important;
  box-shadow: none !important;
}

.accordion-item:has(.show) {
  border: 2px solid var(--primary);
}

.accordion-button::after {
  content: "";
  background: url(../images/faq-icon.png);
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}

.accordion-button:not(.collapsed)::after {
  content: "";
  background: url(../images/faq-icon-active.png);
  width: 40px;
  height: 40px;
  background-size: contain;
  transform: scale(1.3);
  background-repeat: no-repeat;
}

.single-product .inner-banner {
  display: none;
}

.main.breadcrumb-sec li, .main.breadcrumb-sec a {
  color: #000 !important;
  font-weight: 500;
}

.breadcrumb-sec {
  background: #ECF7EA;
  padding: 30px;
}
.breadcrumb-sec ol {
  margin: 0px;
}
.breadcrumb-sec ol li, .breadcrumb-sec ol a {
  color: var(--black) !important;
  font-weight: 500;
}

.related-products .col-lg-3 {
  display: flex;
}

.main-product-part {
  width: 100%;
  float: left;
  padding: 5vw 0vw 0vw 0vw;
}
.main-product-part .text-part {
  padding-left: 30px;
}
.main-product-part .text-part a {
  margin-top:16px;
}
.main-product-part .text-part h2 {
  color: var(--secondary) !important;
  margin-bottom: 0px !important;
  font-size: 2.8vw;
}
.main-product-part .text-part ul {
  padding-left: 20px;
  margin-top: 30px;
}
.main-product-part .text-part ul li {
  list-style: disc;
  color: #919191;
  font-weight: 500;
  margin: 8px 0px;
}
.main-product-part .text-part span {
  color: #AAAAAA;
}
.main-product-part .text-part p {
  color: #3F3F3E;
  margin: 20px 0px;
}

.myProduct2 {
  border: 1px solid #E9E9E9;
  margin-bottom: 1vw;
}
.myProduct2 img {
  height: 290px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  padding: 2vw;
}

.myProduct img {
  border: 1px solid #E9E9E9;
  height: 80px !important;
  padding: 10px !important;
}

.inner-tab-sec {
  background: #ECF7EA;
  padding: 30px 0px;
  margin-bottom: 4vw;
  position: relative;
  z-index: 2;
}
.inner-tab-sec .nav-item {
  width: 25%;
  text-align: center !important;
}
.inner-tab-sec .nav-item button {
  text-align: center !important;
}

.inner-tab-main-sec {
  padding: 0vw 0vw 5vw 0vw;
}
.inner-tab-main-sec .tab-content ul li {
  list-style: disc !important;
  font-weight: 600;
  margin: 10px 0px;
}
.inner-tab-main-sec .nav-item button {
  color: var(--black) !important;
  padding: 0px;
  background: transparent !important;
  font-weight: 600;
  width: 100%;
}
.inner-tab-main-sec .nav-item .nav-link.active {
  color: var(--primary) !important;
}

.related-products h2 {
  margin: 0px;
  text-align: center;
}
.related-products span {
  text-align: center;
  width: 100%;
  display: block;
  color: #616161;
}
.related-products .row {
  margin-top: 5vw;
}

#searchmodal {
  padding-top: 100px;
}
#searchmodal .modal-content {
  background: transparent;
  border: 0px;
}
#searchmodal #searchmodalLabel {
  font-size: 2.5vw !important;
  font-weight: 400;
}
#searchmodal .btn-close {
  background: url("https://r7f.4cf.mytemp.website/tamashi/wp-content/uploads/2024/06/close-icon.png") !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -3vw;
  background-size: contain !important;
  background-repeat: no-repeat;
  opacity: 2;
  padding: 0px !important;
}

#searchmodal {
  background: rgba(247, 247, 247, 0.568627451) !important;
}
#searchmodal .modal-header {
  border: 0px !important;
}
#searchmodal .modal-body {
  background: var(--white) !important;
}
#searchmodal .modal-body form {
  position: relative;
}
#searchmodal .modal-body input#s {
  width: 100%;
  padding: 10px;
  border: 0px;
  border-bottom: 1px solid var(--black);
  outline: none !important;
}
#searchmodal .modal-body #searchsubmit {
  width: 40px;
  height: 40px;
  background: url("https://r7f.4cf.mytemp.website/tamashi/wp-content/uploads/2024/06/serch-icon.png") !important;
  border: 0px;
  background-repeat: no-repeat;
  background-size: contain !important;
  font-size: 0px;
  position: absolute;
  right: 0;
}

.main.contact-main-page .map {
  padding: 0px !important;
}
#enquiry-popup .form-control {
    background: transparent;
    border-radius: 0px;
    border: 0px;
    padding: 12px;
    margin-bottom: 20px;
    color: var(--black);
    border-bottom: 1px solid var(--black);
}
#enquiry-popup p {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#enquiry-popup span.wpcf7-form-control-wrap {
    display: block;
    width: 48%;
    margin-bottom: 16px;
}
#enquiry-popup .btn-close {
    background: url(https://r7f.4cf.mytemp.website/tamashi/wp-content/uploads/2024/06/close-icon.png) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    right: -50px;
    top: 0;
    background-size: contain !important;
    background-repeat: no-repeat;
    opacity: 2;
    padding: 0px !important;
    bottom: auto;
}
#enquiry-popup #wpcf7-f338-o1 {
    box-shadow: 0px 0px 6px #0000002b;
    padding: 20px;
    margin-top: 30px;
    background-color: var(--white);
    position: relative
}
#enquiry-popup .submit-btn {
    background: var(--primary) !important;
    padding: 10px 30px !important;
    margin: 0px !important;
    position: relative;
    right: 20px;
    position: absolute;
    color: #fff!Important;
    bottom: 26px;
}
#enquiry-popup  h2 {
    font-size: 2.4vw;
}
#enquiry-popup .modal-body {
    padding: 30px;
}
#enquiry-popup span.wpcf7-form-control-wrap:has(textarea) {
    /* background: red; */
    width: 100%;
}
/* Icon 1 */
.animated-icon1, .animated-icon2, .animated-icon3 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.animated-icon1 span, .animated-icon2 span, .animated-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.animated-icon1 span {
  background: #222222;
}

.animated-icon1 span:nth-child(1) {
  top: 0px;
}

.animated-icon1 span:nth-child(2) {
  top: 10px;
}

.animated-icon1 span:nth-child(3) {
  top: 20px;
}

.animated-icon1.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}

.animated-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.animated-icon1.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.animated-icon1.open {
  position: fixed;
  top: 0;
  z-index: 10000000000000000;
  right: 30px;
  top: 30px;
}

.wpcf7-not-valid-tip {
  text-align: left;
}

.col-lg-3:has(.product-card) {
  margin-bottom: 40px;
}/*# sourceMappingURL=main.css.map */