*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

body, html {
  font-family: "dinlight";
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
body::-webkit-scrollbar, html::-webkit-scrollbar {
  width: 3px;
  background: #57201b;
}
body::-webkit-scrollbar-track, html::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
  background-color: #fff;
  outline: 0;
}
body.overflow-hidden, html.overflow-hidden {
  overflow-y: hidden;
}

a[href] {
  text-decoration: none;
  transition: 0.5s ease;
  font-family: "dinmedium";
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  padding: 0 25px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .container-fluid {
    padding: 0 15px;
  }
}

.heading h3 {
  font-size: 55px;
  line-height: 65px;
}
@media (max-width: 1024px) {
  .heading h3 {
    font-size: 48px;
    line-height: 58px;
  }
}
@media (max-width: 991px) {
  .heading h3 {
    font-size: 42px;
    line-height: 42px;
  }
}
@media (max-width: 675px) {
  .heading h3 {
    font-size: 32px;
    line-height: 32px;
  }
}
.heading p {
  font-size: 20px;
}
@media (max-width: 675px) {
  .heading p {
    font-size: 18px;
  }
}

h1, h2, h3, h4 {
  font-family: "moretregular";
  color: #000;
  font-weight: 100;
}

h1 {
  font-size: 55px;
  line-height: 60px;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-size: 45px;
  line-height: 55px;
}

h3 {
  font-size: 40px;
  line-height: 40px;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 35px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 35px;
  line-height: 40px;
}
@media (max-width: 767px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 100;
}
@media (max-width: 991px) {
  h5 {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
}
@media (max-width: 767px) {
  h6 {
    font-size: 16px;
  }
}

.text-center {
  text-align: center;
}

p {
  font-size: 16px;
}
@media (max-width: 1024px) {
  p {
    font-size: 18px;
  }
}
@media (max-width: 675px) {
  p {
    font-size: 16px;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.custom-scrol::-webkit-scrollbar {
  width: 3px;
}
.custom-scrol::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-scrol::-webkit-scrollbar-thumb {
  background-color: #57201b;
  outline: 0;
}

input, button, select {
  font-family: "dinlight";
  font-size: 16px;
  line-height: 25px;
  color: #666666;
}

div#back-to-top {
  position: fixed;
  left: auto;
  right: -100px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 55px;
  z-index: 1;
  bottom: 25%;
  background: #57201b;
  padding: 10px;
  cursor: pointer;
  transition: 700ms ease;
}
@media (max-width: 675px) {
  div#back-to-top {
    width: 45px;
    height: 45px;
    bottom: 50px;
  }
}
div#back-to-top.show {
  right: 10px;
}
div#back-to-top svg {
  color: #fff;
  max-width: 18px;
}

.modelPop {
  position: fixed;
  z-index: 3;
}

.close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close svg {
  width: 25px;
  height: 25px;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  opacity: 0.5;
}

.video_icon {
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .video_icon {
    width: 47px;
    height: 47px;
  }
}
.video_icon:before {
  width: 55px;
  height: 55px;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: #ffffff;
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@media (max-width: 767px) {
  .video_icon:before {
    width: 47px;
    height: 47px;
  }
}
.video_icon img {
  width: auto !important;
  position: relative;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.social-links a {
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 6px;
}
.social-links a svg {
  width: 18px;
  height: 18px;
  margin: 0 auto;
}
.social-links a svg path {
  fill: #fff;
}

.model .close {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  top: 10px;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: 0.5s ease;
}
.model .close img {
  width: 12px;
}
.overlay {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
  z-index: 2;
  transition: 0.5s sease;
  pointer-events: none;
}
.overlay.overlay_active {
  pointer-events: all;
  opacity: 0.6;
}

.Model_Video {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: #000;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.Model_Video.is-open {
  transform: translateY(0%);
}
.Model_Video .close_model {
  filter: invert(1);
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
  cursor: pointer;
}
.Model_Video .modelBody {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Model_Video .modelBody iframe {
  width: 90%;
  height: 85%;
  border: 0;
}

.nav-center .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.nav-center .owl-nav button.owl-prev {
  left: 0;
}
.nav-center .owl-nav button.owl-next {
  right: 0;
}

main.has_header {
  margin-top: 87px;
}
@media (max-width: 1024px) {
  main.has_header {
    margin-top: 78px;
  }
}
@media (max-width: 991px) {
  main.has_header {
    margin-top: 62px;
  }
}
@media (max-width: 675px) {
  main.has_header {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 365px) {
  main.has_header {
    margin-top: 45px;
  }
}
main.has_header h1, main.has_header h2, main.has_header h3, main.has_header h4, main.has_header h5 {
  font-weight: 100;
}
main.has_header .heading h3 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 100;
}
@media (max-width: 1024px) {
  main.has_header .heading h3 {
    font-size: 48px;
    line-height: 58px;
  }
}
@media (max-width: 991px) {
  main.has_header .heading h3 {
    font-size: 42px;
    line-height: 42px;
  }
}
@media (max-width: 675px) {
  main.has_header .heading h3 {
    font-size: 32px;
    line-height: 32px;
  }
}

.banner {
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(270deg, rgba(244, 255, 255, 0) 51%, rgba(0, 0, 0, 0.73) 65%);
}
.banner .bg img {
  width: 100%;
}
.banner .banner-wrapper {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 18%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
}
@media (max-width: 675px) {
  .banner .banner-wrapper {
    left: 10%;
  }
}
.banner .banner-wrapper .content h1 {
  color: #fff;
  line-height: 1;
}
.banner .banner-wrapper .content h1 span {
  color: #ca925a;
}
.banner .banner-wrapper .content p {
  color: #fff;
  font-size: 18px;
}

img.img2_hover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.hover_img {
  overflow: hidden;
}
.hover_img:hover .img2_hover {
  opacity: 1;
  transform: translateY(0px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transition: 0.5s ease;
  padding: 20px 0;
}
@media (max-width: 675px) {
  header {
    padding: 6px 0;
  }
}
header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 0;
  background: #57201b;
  box-shadow: 0 0 10px rgba(102, 102, 102, 0.1411764706);
  transition: 0.5s ease;
}
header.header-fixed, header.background_br {
  padding: 0;
  transition: 0.5s ease;
}
@media (max-width: 675px) {
  header.header-fixed, header.background_br {
    padding: 2px 0;
  }
}
header.header-fixed::before, header.background_br::before {
  height: 100%;
}
header .header-wrapper {
  position: relative;
  z-index: 1;
}
header .header-wrapper .container-fluid .flex {
  justify-content: space-between;
}
header .header-wrapper .container-fluid .flex .colA {
  flex: 0 1 8%;
  max-width: 8%;
  width: 100%;
}
@media (max-width: 675px) {
  header .header-wrapper .container-fluid .flex .colA {
    flex: 0 1 15%;
    max-width: 15%;
  }
}
@media only screen and (max-width: 365px) {
  header .header-wrapper .container-fluid .flex .colA {
    flex: 0 1 12%;
    max-width: 12%;
  }
}
header .header-wrapper .container-fluid .flex .colA .logo img {
  transition: 0.3s ease 2s;
}
header .header-wrapper .container-fluid .flex .colB {
  height: auto;
}
@media (max-width: 675px) {
  header .header-wrapper .container-fluid .flex .colB {
    flex: 0 1 85%;
    max-width: 85%;
  }
}
@media only screen and (max-width: 365px) {
  header .header-wrapper .container-fluid .flex .colB {
    flex: 0 1 88%;
    max-width: 88%;
  }
}
header .header-wrapper .container-fluid .flex .colB .nav_bar {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}
@media (max-width: 675px) {
  header .header-wrapper .container-fluid .flex .colB .nav_bar {
    gap: 20px;
  }
}
header .header-wrapper .container-fluid .flex .colB .nav_bar a {
  font-size: 14px;
  transition: 0.5s ease;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul {
  height: 100%;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li {
  height: 100%;
  display: inline-flex;
  align-items: center;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li:not(:first-child) {
  margin-left: 30px;
}
@media (max-width: 675px) {
  header .header-wrapper .container-fluid .flex .colB .nav_bar ul li {
    display: none;
  }
}
@media (max-width: 675px) {
  header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown {
    display: grid;
  }
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown > a {
  position: relative;
  padding-right: 15px;
}
@media (max-width: 675px) {
  header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown > a {
    padding-right: 0;
  }
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown > a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #fff;
  transition: 0.5s ease;
}
@media (max-width: 675px) {
  header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown > a::after {
    display: none;
  }
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown:hover .nav-dropdown {
  opacity: 1;
  overflow: visible;
  transform: translateY(0px);
  visibility: visible;
  height: auto;
  bottom: 0;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown {
  width: 100%;
  position: fixed;
  right: 0;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  background: #fff;
  transition: 0.2s ease;
  opacity: 0;
  height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7098039216);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  visibility: hidden;
}
@media (max-width: 675px) {
  header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown {
    display: none;
  }
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap {
  padding: 50px 0 70px;
  background: url("../images/home/Sec_c_bg.png");
  pointer-events: all;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .container {
  max-width: 1280px;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .title_sd h3 {
  margin-bottom: 35px;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .nav-product-slider {
  padding: 0 30px;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .nav-product-slider .col {
  text-align: -webkit-center;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .nav-product-slider .col figure a {
  overflow: hidden;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .nav-product-slider .col figure a img {
  transition: 0.5s ease;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .nav-product-slider .col figure a:hover img {
  transform: scale(1.1);
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .nav-product-slider .col h5 {
  font-weight: revert;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .nav-product-slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: 0;
  right: 0;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .nav-product-slider .owl-nav button.owl-next, header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .nav-product-slider .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .nav-product-slider .owl-nav .owl-prev {
  left: 0;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li.has_dropdown .nav-dropdown .nav_wrap .nav-product-slider .owl-nav .owl-next {
  right: 0;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li a {
  color: #fff;
}
@media (max-width: 675px) {
  header .header-wrapper .container-fluid .flex .colB .nav_bar ul li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 365px) {
  header .header-wrapper .container-fluid .flex .colB .nav_bar ul li a {
    font-size: 14px;
  }
}
header .header-wrapper .container-fluid .flex .colB .nav_bar ul li a:hover {
  color: #ca925a;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar .inquiry_btn a {
  background: #fff;
  color: #000;
  padding: 4px 35px 6px;
  border-radius: 20px;
}
@media (max-width: 675px) {
  header .header-wrapper .container-fluid .flex .colB .nav_bar .inquiry_btn a {
    padding: 5px 30px 7px;
    font-size: 16px;
    line-height: 16px;
  }
}
@media only screen and (max-width: 365px) {
  header .header-wrapper .container-fluid .flex .colB .nav_bar .inquiry_btn a {
    padding: 4px 20px 6px;
    font-size: 14px;
    line-height: 14px;
  }
}
header .header-wrapper .container-fluid .flex .colB .nav_bar .inquiry_btn a:hover {
  background: #ca925a;
  color: #fff;
}
header .header-wrapper .container-fluid .flex .colB .nav_bar .ham_menu {
  width: 50px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}
@media (max-width: 675px) {
  header .header-wrapper .container-fluid .flex .colB .nav_bar .ham_menu {
    width: 35px;
  }
}
header .header-wrapper .container-fluid .flex .colB .nav_bar .ham_menu span {
  width: 100%;
  background: #fff;
  height: 0.01rem;
  display: block;
}

.home_banner {
  position: relative;
}
.home_banner .home_demo {
  height: 100vh;
}
@media (max-width: 1024px) {
  .home_banner .home_demo {
    height: 70vh;
  }
}
.home_banner .home_demo video {
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.home_banner .home_wrapper {
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4509803922);
}
.home_banner .home_wrapper .hm_wrp {
  height: 100%;
  position: relative;
}
.home_banner .home_wrapper .hm_wrp .content {
  position: absolute;
  top: 50%;
  left: 10%;
  max-width: 335px;
  margin-right: auto;
  transform: translate(0%, -50%);
}
@media (max-width: 675px) {
  .home_banner .home_wrapper .hm_wrp .content {
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.home_banner .home_wrapper .hm_wrp .content a {
  font-size: 14px;
}
.home_banner .home_wrapper .hm_wrp .content h1 {
  color: #fff;
  font-size: 65px;
  line-height: 70px;
}
@media (max-width: 1024px) {
  .home_banner .home_wrapper .hm_wrp .content h1 {
    font-size: 55px;
    line-height: 60px;
  }
}
@media (max-width: 675px) {
  .home_banner .home_wrapper .hm_wrp .content h1 {
    font-size: 40px;
    line-height: 45px;
  }
}
.home_banner .home_wrapper .hm_wrp .content .explore_btn {
  margin-top: 35px;
}
@media (max-width: 675px) {
  .home_banner .home_wrapper .hm_wrp .content .explore_btn {
    margin-top: 20px;
  }
}
.home_banner .home_wrapper .hm_wrp .content .explore_btn a {
  color: #000;
  background: #fff;
  padding: 6px 20px 8px;
  border-radius: 20px;
  font-family: "dinmedium";
}
@media (max-width: 675px) {
  .home_banner .home_wrapper .hm_wrp .content .explore_btn a {
    padding: 4px 14px 6px;
    font-size: 12px;
  }
}
.home_banner .home_wrapper .hm_wrp .content .explore_btn a:hover {
  background: #57201b;
  color: #fff;
}
.home_banner .home_wrapper .hm_wrp .arr_down {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, 0%);
  cursor: pointer;
  animation: hvr-hang 2s infinite;
}
@keyframes hvr-hang {
  0% {
    transform: translateY(40px);
  }
  50% {
    transform: translateY(32px);
  }
  100% {
    transform: translateY(40px);
  }
}
@media (max-width: 1024px) {
  .home_banner .home_wrapper .hm_wrp .arr_down {
    bottom: 15%;
  }
}
@media (max-width: 675px) {
  .home_banner .home_wrapper .hm_wrp .arr_down {
    left: 0;
    right: 0;
    text-align: -webkit-center;
  }
}

.home_SecA {
  padding: 15px;
}
@media (max-width: 675px) {
  .home_SecA {
    padding: 5px;
  }
}
.home_SecA .flex {
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 1024px) {
  .home_SecA .flex {
    gap: 8px 0;
  }
}
.home_SecA .flex .col {
  flex: 0 1 32.5%;
  max-width: 32.5%;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 475px;
}
@media (max-width: 1366px) {
  .home_SecA .flex .col {
    height: 405px;
  }
}
@media (max-width: 1280px) {
  .home_SecA .flex .col {
    height: 380px;
  }
}
@media (max-width: 1230px) {
  .home_SecA .flex .col {
    height: 365px;
    flex: 0 1 32%;
    max-width: 32%;
  }
}
@media (max-width: 1140px) {
  .home_SecA .flex .col {
    height: 335px;
  }
}
@media (max-width: 1024px) {
  .home_SecA .flex .col {
    height: 300px;
  }
}
@media (max-width: 991px) {
  .home_SecA .flex .col {
    height: auto;
  }
}
@media (max-width: 675px) {
  .home_SecA .flex .col {
    flex: 0 1 49%;
    max-width: 49%;
  }
}
.home_SecA .flex .col figure {
  height: 100%;
}
.home_SecA .flex .col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 73%, rgba(0, 0, 0, 0.59) 83%);
}
.home_SecA .flex .col img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
  transition: 0.5s ease;
}
.home_SecA .flex .col .col-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10%;
  text-align: -webkit-center;
  z-index: 1;
  color: #fff;
  transition: 0.5s ease;
}
@media (max-width: 991px) {
  .home_SecA .flex .col .col-title {
    bottom: 12%;
  }
}
.home_SecA .flex .col a.link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.home_SecA .flex .col:hover figure img {
  transform: scale(1.1);
}
.home_SecA .flex .col:hover .col-title {
  transform: scale(1.1) translateY(-10px);
}

.home_SecB {
  background: #57201b;
  padding: 75px 0;
}
@media (max-width: 1024px) {
  .home_SecB {
    padding: 55px 0;
  }
}
@media (max-width: 675px) {
  .home_SecB {
    padding: 35px 0;
  }
}
.home_SecB .heading {
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .home_SecB .heading {
    margin-bottom: 35px;
  }
}
.home_SecB .heading h3 {
  color: #fff;
}
.home_SecB .secBtab {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .home_SecB .secBtab {
    margin-bottom: 40px;
  }
}
.home_SecB .secBtab ul {
  text-align: center;
}
@media (max-width: 675px) {
  .home_SecB .secBtab ul {
    text-align: center;
    width: calc(100vw - 30px);
    white-space: nowrap;
    overflow-y: scroll;
    padding-bottom: 15px;
  }
}
.home_SecB .secBtab ul li {
  display: inline-block;
  margin-inline: 20px;
  font-size: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .home_SecB .secBtab ul li {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .home_SecB .secBtab ul li {
    font-size: 16px;
    margin-inline: 15px;
  }
}
@media (max-width: 675px) {
  .home_SecB .secBtab ul li {
    margin-inline: 10px;
  }
}
.home_SecB .secBtab ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  left: 0;
  width: 0;
  transition: 0.5s ease;
  background: #fff;
}
.home_SecB .secBtab ul li.active:after {
  width: 100%;
}
.home_SecB .secBtab_content {
  padding: 0 20px;
  position: relative;
}
.home_SecB .secBtab_content .tabs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  visibility: hidden;
}
.home_SecB .secBtab_content .tabs.active {
  position: unset;
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  visibility: visible;
}
.home_SecB .secBtab_content .tabs .home-eco-slider {
  transition: 0.5s ease;
}
.home_SecB .secBtab_content .tabs .home-eco-slider .owl-stage {
  display: flex;
}
.home_SecB .secBtab_content .tabs .home-eco-slider .item {
  padding: 60px 0;
  position: relative;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
.home_SecB .secBtab_content .tabs .home-eco-slider .item img {
  transition: 0.5s ease;
}
.home_SecB .secBtab_content .tabs .home-eco-slider .item .title {
  text-align: center;
  margin-top: 30px;
  padding: 0 10px;
  text-indent: unset;
}
.home_SecB .secBtab_content .tabs .home-eco-slider .item .title h5 {
  font-family: "dinlight";
}
.home_SecB .secBtab_content .tabs .home-eco-slider .item a.link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.home_SecB .owl-dots {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 675px) {
  .home_SecB .owl-dots {
    margin-top: 28px;
  }
}
.home_SecB .owl-dots .owl-dot {
  cursor: pointer;
  width: 9px;
  height: 9px;
  background: none;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.5s ease;
  margin: 0 15px;
}
.home_SecB .owl-dots .owl-dot.active {
  background: #fff;
}

.home_SecC {
  background: url("../images/home/Sec_c_bg.png");
  padding: 75px 0;
}
@media (max-width: 675px) {
  .home_SecC {
    padding: 35px 0;
  }
}
.home_SecC .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.home_SecC .heading .title-h p {
  font-size: 20px;
}
@media (max-width: 675px) {
  .home_SecC .heading .title-h p {
    font-size: 16px;
    line-height: 22px;
    max-width: 225px;
    margin-top: 10px;
  }
}
.home_SecC .heading .custom_navg button {
  background: none;
  border: none;
  margin-inline: 10px;
  cursor: pointer;
}
.home_SecC .heading .custom_navg button:not(:last-child) {
  margin-right: 50px;
}
.home_SecC .newly-arrived-slider .owl-stage {
  display: flex;
}
.home_SecC .newly-arrived-slider .owl-stage .owl-item {
  height: auto;
}
.home_SecC .newly-arrived-slider .item {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home_SecC .newly-arrived-slider .item figure {
  overflow: hidden;
  background: #fff;
  height: 370px;
  display: grid;
  place-items: center;
}
@media (max-width: 1024px) {
  .home_SecC .newly-arrived-slider .item figure {
    height: 321px;
  }
}
@media (max-width: 991px) {
  .home_SecC .newly-arrived-slider .item figure {
    height: 236px;
  }
}
@media (max-width: 675px) {
  .home_SecC .newly-arrived-slider .item figure {
    height: 250px;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 365px) {
  .home_SecC .newly-arrived-slider .item figure {
    height: 215px;
  }
}
.home_SecC .newly-arrived-slider .item img {
  transition: 0.5s ease;
  width: auto;
}
.home_SecC .newly-arrived-slider .item a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.home_SecC .newly-arrived-slider .item:hover img {
  transform: scale(1.2);
}
.home_SecC .newly-arrived-slider .title h5 {
  margin-top: 15px;
}

.home_SecD {
  position: relative;
}
.home_SecD .bg img {
  width: 100%;
}
.home_SecD .bg .map_wrap {
  position: relative;
}
.home_SecD .bg .map_wrap .map_pointer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.home_SecD .bg .map_wrap .Mappointer {
  position: absolute;
  top: 30%;
}
.home_SecD .bg .map_wrap .Mappointer button.btn_mp {
  width: 12px;
  height: 12px;
  background: #57201b;
  border: 5px solid #57201b;
  border-radius: 25px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 675px) {
  .home_SecD .bg .map_wrap .Mappointer button.btn_mp {
    width: 10px;
    height: 10px;
  }
}
.home_SecD .bg .map_wrap .Mappointer button.btn_mp::before {
  width: 45px;
  height: 45px;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  background: #57201b;
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@media (max-width: 675px) {
  .home_SecD .bg .map_wrap .Mappointer button.btn_mp::before {
    width: 20px;
    height: 20px;
  }
}
.home_SecD .bg .map_wrap .Mappointer .map_con {
  bottom: 100%;
  left: -30px;
  margin-bottom: 15px;
  width: 200px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  position: absolute;
  padding: 20px;
  border-radius: 10px;
  display: none;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 991px) {
  .home_SecD .bg .map_wrap .Mappointer .map_con {
    width: 145px;
  }
}
@media (max-width: 675px) {
  .home_SecD .bg .map_wrap .Mappointer .map_con {
    width: 100px;
    margin-bottom: 5px;
    padding: 15px;
  }
}
.home_SecD .bg .map_wrap .Mappointer .map_con::after {
  content: "";
  position: absolute;
  top: 100%;
  border: 10px solid transparent;
  left: 28px;
  border-top-color: #57201b;
}
.home_SecD .bg .map_wrap .Mappointer .map_con .clos {
  color: #57201b;
  position: absolute;
  top: 0;
  right: 10px;
  cursor: pointer;
  font-family: "dinmedium";
  font-size: 13px;
  z-index: 1;
}
.home_SecD .bg .map_wrap .Mappointer .map_con .title {
  color: #57201b;
  font-family: "moretregular";
  font-size: 22px;
  margin-bottom: 6px;
}
@media (max-width: 991px) {
  .home_SecD .bg .map_wrap .Mappointer .map_con .title {
    font-size: 18px;
    margin-bottom: 3px;
  }
}
.home_SecD .bg .map_wrap .Mappointer .map_con p {
  color: #57201b;
  font-size: 14px;
  line-height: normal;
}
@media (max-width: 991px) {
  .home_SecD .bg .map_wrap .Mappointer .map_con p {
    font-size: 12px;
  }
}
.home_SecD .bg .map_wrap .Mappointer .map_con img {
  width: auto;
  margin: 15px auto 0;
  transition: 0.5s ease;
}
@media (max-width: 675px) {
  .home_SecD .bg .map_wrap .Mappointer .map_con img {
    width: 30px;
  }
}
.home_SecD .bg .map_wrap .Mappointer .map_con a.product_link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.home_SecD .bg .map_wrap .Mappointer .map_con:hover img {
  transform: scale(1.1);
}
.home_SecD .bg .map_wrap .Mappointer.a_1 {
  top: 30%;
  left: 52%;
}
.home_SecD .bg .map_wrap .Mappointer.a_2 {
  top: 38%;
  right: 20%;
}
.home_SecD .bg .map_wrap .Mappointer.a_3 {
  top: 56%;
  left: 14%;
}
.home_SecD .bg .map_wrap .Mappointer.a_4 {
  top: 81%;
  left: 18%;
}
.home_SecD .SecD_wrapper {
  position: absolute;
  right: 23%;
  bottom: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 675px) {
  .home_SecD .SecD_wrapper {
    right: 15%;
    bottom: 5%;
  }
}
.home_SecD .SecD_wrapper .card {
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
}
.home_SecD .SecD_wrapper .card figure img {
  width: auto;
  mix-blend-mode: screen;
}
@media (max-width: 991px) {
  .home_SecD .SecD_wrapper .card figure img {
    width: 245px;
  }
}
@media (max-width: 675px) {
  .home_SecD .SecD_wrapper .card figure img {
    width: 170px;
  }
}
.home_SecD .SecD_wrapper .card .inf_hd {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home_SecD .SecD_wrapper .card .inf_hd h1 {
  color: #57201b;
}
@media (max-width: 991px) {
  .home_SecD .SecD_wrapper .card .inf_hd h1 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 675px) {
  .home_SecD .SecD_wrapper .card .inf_hd h1 {
    font-size: 18px;
    line-height: 20px;
  }
}
.home_SecD .SecD_wrapper .card .inf_hd h1 span {
  display: block;
  color: #ca925a;
}

.home_SecE {
  background: url("../images/home/Sec_c_bg.png");
  padding: 95px 0;
}
@media (max-width: 1024px) {
  .home_SecE {
    padding: 65px 0;
  }
}
@media (max-width: 675px) {
  .home_SecE {
    padding: 45px 0;
  }
}
.home_SecE .heading {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .home_SecE .heading {
    margin-bottom: 55px;
  }
}
@media (max-width: 675px) {
  .home_SecE .heading {
    margin-bottom: 35px;
  }
}
.home_SecE .heading h3 {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .home_SecE .heading h3 {
    margin-bottom: 15px;
  }
}
.home_SecE .heading h3 span {
  color: #ca925a;
}
.home_SecE .content_wrap .title_sd {
  margin-bottom: 55px;
}
@media (max-width: 1024px) {
  .home_SecE .content_wrap .title_sd {
    margin-bottom: 30px;
  }
}
.home_SecE .content_wrap .nav-product-slider {
  padding: 0 30px;
}
.home_SecE .content_wrap .nav-product-slider .col {
  text-align: -webkit-center;
}
.home_SecE .content_wrap .nav-product-slider .col img {
  transition: 0.5s ease;
}
.home_SecE .content_wrap .nav-product-slider .col figure {
  position: relative;
}
.home_SecE .content_wrap .nav-product-slider .col a:hover figure img {
  transform: scale(1.1);
}
.home_SecE .content_wrap .nav-product-slider .col h5 {
  margin-top: 10px;
}
.home_SecE .content_wrap .nav-product-slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: 0;
  right: 0;
}
.home_SecE .content_wrap .nav-product-slider .owl-nav button.owl-next, .home_SecE .content_wrap .nav-product-slider .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  width: 10px;
}
.home_SecE .content_wrap .nav-product-slider .owl-nav .owl-prev {
  left: -20px;
}
@media (max-width: 1024px) {
  .home_SecE .content_wrap .nav-product-slider .owl-nav .owl-prev {
    left: 0;
  }
}
.home_SecE .content_wrap .nav-product-slider .owl-nav .owl-next {
  right: -20px;
}
@media (max-width: 1024px) {
  .home_SecE .content_wrap .nav-product-slider .owl-nav .owl-next {
    right: 0;
  }
}

.home_SecF {
  position: relative;
}
.home_SecF .bg video {
  height: 92vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .home_SecF .bg video {
    height: 60vh;
  }
}
@media (max-width: 675px) {
  .home_SecF .bg video {
    height: 30vh;
  }
}
.home_SecF .content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0%, -50%);
}
.home_SecF .content .card {
  position: relative;
}
@media (max-width: 675px) {
  .home_SecF .content .card figure img {
    width: 260px;
  }
}
.home_SecF .content .card .inf_ttl {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_SecF .content .card .inf_ttl h3 {
  max-width: 280px;
  margin: 0 auto;
  color: #fff;
  line-height: 45px;
}
@media (max-width: 675px) {
  .home_SecF .content .card .inf_ttl h3 {
    max-width: 190px;
    line-height: 24px;
    font-size: 16px;
  }
}
.home_SecF .content .card .inf_ttl h3 img {
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px;
}
@media (max-width: 675px) {
  .home_SecF .content .card .inf_ttl h3 img {
    width: 25px;
    padding: 0 3px;
  }
}

.home_SecG {
  padding: 75px 0 0;
}
@media (max-width: 1024px) {
  .home_SecG {
    padding: 55px 0 0;
  }
}
@media (max-width: 675px) {
  .home_SecG {
    padding: 35px 0 0;
  }
}
.home_SecG .heading {
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .home_SecG .heading {
    margin-bottom: 40px;
  }
}
.home_SecG .grid_wrap {
  padding: 0 15px;
  display: grid;
  grid-template-rows: 50vh 50vh;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "col1 col2" "col1 col3";
}
@media (max-width: 1024px) {
  .home_SecG .grid_wrap {
    grid-template-rows: 42vh 42vh;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .home_SecG .grid_wrap {
    grid-template-rows: 25vh 25vh;
  }
}
@media (max-width: 675px) {
  .home_SecG .grid_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
  }
}
.home_SecG .grid_wrap .col {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.home_SecG .grid_wrap .col:hover figure img {
  transform: scale(1.1);
}
.home_SecG .grid_wrap .col a.ancr {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.home_SecG .grid_wrap .col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
  background: rgb(255, 255, 255);
  background: linear-gradient(217deg, rgba(255, 255, 255, 0) 45%, rgba(0, 0, 0, 0.53) 100%);
}
@media (max-width: 675px) {
  .home_SecG .grid_wrap .col::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) -30%, rgba(0, 0, 0, 0.72) 103%);
  }
}
.home_SecG .grid_wrap .col:nth-child(1) {
  grid-area: col1;
}
.home_SecG .grid_wrap .col:nth-child(2) {
  grid-area: col2;
}
.home_SecG .grid_wrap .col:nth-child(2) .card img {
  max-width: 300px;
}
@media (max-width: 1024px) {
  .home_SecG .grid_wrap .col:nth-child(2) .card img {
    max-width: 355px;
  }
}
.home_SecG .grid_wrap .col:nth-child(3) {
  grid-area: col3;
}
.home_SecG .grid_wrap .col:nth-child(2) .col_ttl, .home_SecG .grid_wrap .col:nth-child(3) .col_ttl {
  left: 5%;
  top: 50%;
  transform: translate(0%, -50%);
}
@media (max-width: 1024px) {
  .home_SecG .grid_wrap .col:nth-child(2) .col_ttl, .home_SecG .grid_wrap .col:nth-child(3) .col_ttl {
    left: 18%;
    transform: translate(-8%, -50%);
  }
}
.home_SecG .grid_wrap .col:nth-child(n+4) {
  height: 60vh;
}
.home_SecG .grid_wrap .col:nth-child(n+4) .col_ttl {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home_SecG .grid_wrap .col figure {
  height: 100%;
}
.home_SecG .grid_wrap .col figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transition: 0.5s ease;
  height: 100%;
}
@media (max-width: 675px) {
  .home_SecG .grid_wrap .col figure img {
    height: 30vh;
    -o-object-position: center;
       object-position: center;
  }
}
.home_SecG .grid_wrap .col .col_ttl {
  top: 5%;
  left: 22%;
  position: absolute;
  z-index: 1;
}
@media (max-width: 1024px) {
  .home_SecG .grid_wrap .col .col_ttl {
    left: 20%;
    transform: translate(-15%, 0%);
  }
}
@media (max-width: 675px) {
  .home_SecG .grid_wrap .col .col_ttl {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translate(0%, 0%);
    display: grid;
    place-items: center;
  }
}
.home_SecG .grid_wrap .col .col_ttl .card {
  position: relative;
}
@media (max-width: 991px) {
  .home_SecG .grid_wrap .col .col_ttl .card img {
    width: 190px;
  }
}
@media (max-width: 675px) {
  .home_SecG .grid_wrap .col .col_ttl .card img {
    display: none;
  }
}
.home_SecG .grid_wrap .col .col_ttl .card h3 {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 22%;
  transform: translate(-15%, -50%);
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .home_SecG .grid_wrap .col .col_ttl .card h3 {
    left: 26%;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .home_SecG .grid_wrap .col .col_ttl .card h3 {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 675px) {
  .home_SecG .grid_wrap .col .col_ttl .card h3 {
    position: unset;
    color: #fff;
    transform: translate(0, 0);
    font-size: 28px;
    line-height: 1.2;
    max-width: 270px;
  }
}

.home_SecH {
  padding: 75px 0 15px;
}
@media (max-width: 675px) {
  .home_SecH {
    padding: 25px 0;
  }
}
.home_SecH .heading {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 675px) {
  .home_SecH .heading {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 675px) {
  .home_SecH .heading .title {
    margin-bottom: 25px;
    text-align: center;
  }
}
.home_SecH .heading p {
  font-family: "dinmedium";
}
.home_SecH .heading .real_style-md {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 991px) {
  .home_SecH .heading .real_style-md {
    justify-content: end;
  }
}
@media (max-width: 675px) {
  .home_SecH .heading .real_style-md {
    justify-content: start;
  }
}
.home_SecH .heading .real_style-md p {
  flex: 0 1 58%;
  line-height: 20px;
}
@media (max-width: 675px) {
  .home_SecH .heading .real_style-md p {
    flex: 0 1 85%;
  }
}
.home_SecH .secH_wrapper .flex {
  padding: 0 15px;
  justify-content: space-between;
}
@media (max-width: 675px) {
  .home_SecH .secH_wrapper .flex {
    gap: 10px 0;
  }
}
.home_SecH .secH_wrapper .flex .col {
  flex: 0 1 24.3%;
  max-width: 24.3%;
  width: 100%;
  position: relative;
}
@media (max-width: 675px) {
  .home_SecH .secH_wrapper .flex .col {
    flex: 0 1 49%;
    max-width: 49%;
  }
}
.home_SecH .secH_wrapper .flex .col img {
  width: 100%;
}
.home_SecH .secH_wrapper .flex .col .insta_btn, .home_SecH .secH_wrapper .flex .col a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.home_SecH .secH_wrapper .flex .col .insta_btn {
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
}
.home_SecH .secH_wrapper .flex .col .insta_btn img {
  width: 30px;
  filter: invert(1);
  transform: scale(0.7);
  opacity: 0;
  transition: 0.5s ease;
}
.home_SecH .secH_wrapper .flex .col:hover .insta_btn {
  background: rgba(0, 0, 0, 0.7098039216);
}
.home_SecH .secH_wrapper .flex .col:hover .insta_btn img {
  opacity: 1;
  transform: scale(1);
}

footer {
  background: url(../images/home/Sec_c_bg.png);
  padding: 95px 0 60px;
}
@media (max-width: 1366px) {
  footer {
    padding: 25px 0 25px;
  }
}
@media (max-width: 991px) {
  footer {
    padding: 30px 0 45px;
  }
}
@media (max-width: 675px) {
  footer {
    padding: 0 0 45px;
    background-size: 1%;
  }
}
footer .footer-wrapper {
  max-width: 1300px;
  margin: 0 auto;
}
footer .footer-wrapper .upper_footer {
  border-radius: 5px;
  padding: 75px 0;
  background: #fff url(../icon/KGA_ico2.png);
  background-repeat: no-repeat;
  background-position: bottom right, top;
}
@media (max-width: 1366px) {
  footer .footer-wrapper .upper_footer {
    padding: 35px 0;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer {
    padding: 30px 0 70px;
    background: url(../icon/KGA_ico2.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    border-bottom: 1px solid #bdbdbd;
  }
}
@media (max-width: 1024px) {
  footer .footer-wrapper .upper_footer .container {
    padding: 0 45px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container {
    padding: 0 15px;
  }
}
footer .footer-wrapper .upper_footer .container .logo {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  footer .footer-wrapper .upper_footer .container .logo {
    margin-bottom: 20px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .logo img {
    width: 75px;
  }
}
footer .footer-wrapper .upper_footer .container .logo::after {
  content: "";
  width: 88%;
  height: 2px;
  background: #adaaa9;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .logo::after {
    width: 77%;
    height: 1px;
  }
}
footer .footer-wrapper .upper_footer .container .flex {
  justify-content: space-between;
  align-items: center;
}
footer .footer-wrapper .upper_footer .container .flex > div {
  flex: 0 1 35%;
  max-width: 35%;
  width: 100%;
}
@media (max-width: 1024px) {
  footer .footer-wrapper .upper_footer .container .flex > div {
    max-width: 54%;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .flex > div {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
footer .footer-wrapper .upper_footer .container .flex > div .ttl-cola h4 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 100;
}
@media (max-width: 991px) {
  footer .footer-wrapper .upper_footer .container .flex > div .ttl-cola h4 {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .flex > div .ttl-cola h4 {
    margin-bottom: 0px;
  }
}
footer .footer-wrapper .upper_footer .container .flex > div .ttl-cola h4 span {
  color: #ca925a;
}
footer .footer-wrapper .upper_footer .container .flex > div .ttl-cola p {
  line-height: 21px;
}
@media (max-width: 991px) {
  footer .footer-wrapper .upper_footer .container .flex > div .ttl-cola p {
    font-size: 16px;
    line-height: 20px;
  }
}
footer .footer-wrapper .upper_footer .container .flex > div .subscribe {
  position: relative;
  margin-top: 20px;
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .flex > div .subscribe {
    margin-bottom: 25px;
  }
}
footer .footer-wrapper .upper_footer .container .flex > div .subscribe input {
  border: none;
  width: 100%;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .flex > div .subscribe input {
    background: none;
  }
}
footer .footer-wrapper .upper_footer .container .flex > div .subscribe input:focus-visible {
  outline: none;
}
footer .footer-wrapper .upper_footer .container .flex > div .subscribe input:-moz-placeholder-shown {
  font-size: 14px;
}
footer .footer-wrapper .upper_footer .container .flex > div .subscribe input:placeholder-shown {
  font-size: 14px;
}
footer .footer-wrapper .upper_footer .container .flex > div .subscribe .submit_btn {
  position: absolute;
  right: 0;
  top: 0;
}
footer .footer-wrapper .upper_footer .container .flex > div .subscribe .submit_btn a {
  background: none;
  border: none;
  color: #000;
  font-family: "dinmedium";
  cursor: pointer;
}
footer .footer-wrapper .upper_footer .container .flex .colB-footer {
  flex: 0 1 44%;
  max-width: 44%;
  width: 100%;
}
@media (max-width: 991px) {
  footer .footer-wrapper .upper_footer .container .flex .colB-footer {
    flex: 0 1 55%;
    max-width: 55%;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .flex .colB-footer {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
footer .footer-wrapper .upper_footer .container .flex .colB-footer .colB_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .flex .colB-footer .colB_wrapper .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .flex .colB-footer .colB_wrapper .col:last-child {
    margin-top: 25px;
  }
}
footer .footer-wrapper .upper_footer .container .flex .colB-footer .colB_wrapper .col h4 {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 100;
}
@media (max-width: 991px) {
  footer .footer-wrapper .upper_footer .container .flex .colB-footer .colB_wrapper .col h4 {
    font-size: 25px;
    margin-bottom: 7px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .flex .colB-footer .colB_wrapper .col h4 {
    margin-bottom: 5px;
  }
}
footer .footer-wrapper .upper_footer .container .flex .colB-footer .colB_wrapper .col ul li {
  margin-bottom: 8px;
}
footer .footer-wrapper .upper_footer .container .flex .colB-footer .colB_wrapper .col ul li a {
  font-family: "dinmedium";
  color: #000;
  transition: 0.2s ease;
}
footer .footer-wrapper .upper_footer .container .flex .colB-footer .colB_wrapper .col ul li a:hover {
  color: #57201b;
}
footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk {
  display: flex;
  justify-content: flex-start;
  margin-top: 50px;
}
@media (max-width: 1366px) {
  footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk {
    gap: 50px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
    flex-direction: column-reverse;
    margin-top: 35px;
  }
}
footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk .prtnes-md-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  flex: 0 1 56%;
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk .prtnes-md-col {
    flex: 0 1 100%;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 365px) {
  footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk .prtnes-md-col {
    justify-content: center;
    gap: 40px;
  }
}
@media only screen and (max-width: 365px) {
  footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk .prtnes-md-col img {
    width: 125px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk .social-links-footer ul {
    text-align: center;
    margin-bottom: 25px;
  }
}
footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk .social-links-footer ul li {
  display: inline-block;
}
footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk .social-links-footer ul li:not(:first-child) {
  margin-left: 20px;
}
footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk .social-links-footer ul li a {
  display: block;
  height: 22px;
  width: 22px;
}
footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk .social-links-footer ul li a svg {
  height: inherit;
  width: inherit;
  transition: 0.5s ease;
}
footer .footer-wrapper .upper_footer .container .prtne-sscl-lnk .social-links-footer ul li a:hover svg {
  fill: #57201b;
}
footer .footer-wrapper .lower-footer {
  margin-top: 50px;
}
@media (max-width: 1366px) {
  footer .footer-wrapper .lower-footer {
    margin-top: 25px;
  }
}
@media (max-width: 991px) {
  footer .footer-wrapper .lower-footer {
    margin-top: 15px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .lower-footer {
    margin-top: 15px;
  }
}
footer .footer-wrapper .lower-footer .flex {
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer .footer-wrapper .lower-footer .flex {
    padding: 0 45px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .lower-footer .flex {
    padding: 0 15px;
    flex-direction: column-reverse;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .lower-footer .flex .col:first-child {
    margin-top: 3px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .lower-footer .flex .col:first-child ul {
    text-align: center;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .lower-footer .flex .col:first-child ul li {
    font-size: 12px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .lower-footer .flex .col:first-child ul li a img {
    width: 40px;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .lower-footer .flex .col:last-child ul {
    text-align: center;
  }
}
@media (max-width: 675px) {
  footer .footer-wrapper .lower-footer .flex .col:last-child ul li a {
    font-size: 14px;
  }
}
footer .footer-wrapper .lower-footer .flex .col img {
  display: inline-block;
  margin-left: 10px;
}
footer .footer-wrapper .lower-footer .flex .col ul li, footer .footer-wrapper .lower-footer .flex .col ul a {
  font-family: "dinmedium";
}
footer .footer-wrapper .lower-footer .flex .col ul li {
  display: inline-block;
}
footer .footer-wrapper .lower-footer .flex .col ul li:not(:first-child) {
  margin-left: 35px;
}
@media (max-width: 991px) {
  footer .footer-wrapper .lower-footer .flex .col ul li:not(:first-child) {
    margin-left: 5px;
  }
}
footer .footer-wrapper .lower-footer .flex .col ul li a {
  color: #000;
}
@media (max-width: 991px) {
  footer .footer-wrapper .lower-footer .flex .col ul li a {
    font-size: 12px;
  }
}

.footer_strip {
  display: none;
}
@media (max-width: 520px) {
  .footer_strip {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8;
    background: #57201b;
  }
}
.footer_strip .callnwtsp ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer_strip .callnwtsp ul li {
  flex: 0 1 33.33%;
  max-width: 33.33%;
  text-align: center;
  height: 42px;
  line-height: 42px;
}
@media only screen and (max-width: 365px) {
  .footer_strip .callnwtsp ul li {
    height: 40px;
    line-height: 40px;
  }
}
.footer_strip .callnwtsp ul li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1803921569);
}
.footer_strip .callnwtsp ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.about_secA {
  padding: 75px 0;
}
@media (max-width: 1024px) {
  .about_secA {
    padding: 55px 0;
  }
}
.about_secA .upr-con {
  text-align: -webkit-center;
  margin-bottom: 45px;
}
.about_secA .upr-con .heading h3 {
  font-size: 35px;
  line-height: 40px;
  margin: 30px 0 35px;
}
.about_secA .lwr-con {
  padding: 0 30px;
}
@media (max-width: 675px) {
  .about_secA .lwr-con {
    padding: 0 15px;
  }
}
.about_secA .lwr-con .flex {
  justify-content: space-between;
}
.about_secA .lwr-con .flex .col {
  flex: 0 1 32.5%;
  max-width: 32.5%;
  width: 100%;
}
@media (max-width: 675px) {
  .about_secA .lwr-con .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.about_secA .lwr-con .flex .col figure {
  overflow: hidden;
}
.about_secA .lwr-con .flex .col figure img {
  width: 100%;
  transition: 0.5s ease;
}
.about_secA .lwr-con .flex .col:hover img {
  transform: scale(1.1);
}
.about_secA .lwr-con .flex .col .content-col h4 {
  font-size: 30px;
  margin: 15px 0 10px;
}
@media (max-width: 675px) {
  .about_secA .lwr-con .flex .col .content-col h4 {
    margin: 25px 0 5px;
  }
}
.about_secA .lwr-con .flex .col .content-col p {
  text-align: justify;
  padding-right: 35px;
}

.about_secB {
  background: url("../images/brown_bg.png");
  padding: 95px 0;
}
@media (max-width: 991px) {
  .about_secB {
    padding: 65px 0;
  }
}
@media (max-width: 675px) {
  .about_secB {
    padding: 50px 0;
  }
}
.about_secB .heading {
  margin-bottom: 70px;
}
.about_secB .heading h3 {
  color: #fff;
}
@media (max-width: 675px) {
  .about_secB .our_journey-demo {
    position: relative;
  }
}
.about_secB .our_journey-demo .our-journey-slider {
  padding: 0 30px;
}
.about_secB .our_journey-demo .our-journey-slider .item {
  position: relative;
}
.about_secB .our_journey-demo .our-journey-slider .item p {
  color: #fff;
}
.about_secB .our_journey-demo .our-journey-slider .item .upper_ttl {
  border-bottom: 2px solid #794d49;
  position: relative;
  padding-bottom: 40px;
}
.about_secB .our_journey-demo .our-journey-slider .item .upper_ttl p {
  position: relative;
  height: 80px;
  width: 80px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #000;
}
.about_secB .our_journey-demo .our-journey-slider .item .upper_ttl p::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  margin: 0 auto;
  right: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #fff;
  transition: 0.5s ease;
}
.about_secB .our_journey-demo .our-journey-slider .item .upper_ttl .dot_line {
  height: 15px;
  width: 15px;
  background: #57201b;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
}
.about_secB .our_journey-demo .our-journey-slider .item .lwr_inf {
  max-width: 195px;
  text-align: center;
  margin: 20px auto 0;
}
.about_secB .our_journey-demo .our-journey-slider .owl-dots {
  position: absolute;
}
.about_secB .our_journey-demo .carousel_nav {
  position: relative;
  text-align: -webkit-center;
  padding: 0 30px;
  max-width: 475px;
  margin: 70px auto 0;
}
@media (max-width: 675px) {
  .about_secB .our_journey-demo .carousel_nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 57%;
    z-index: 2;
    margin: 0;
    padding: 0 35px;
  }
}
.about_secB .our_journey-demo .carousel_nav .custom_navjo {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0%, -50%);
}
@media (max-width: 675px) {
  .about_secB .our_journey-demo .carousel_nav .custom_navjo {
    top: 57%;
  }
}
.about_secB .our_journey-demo .carousel_nav .custom_navjo button.owl-prev, .about_secB .our_journey-demo .carousel_nav .custom_navjo .owl-next {
  top: 50%;
  transform: translate(0%, -50%);
  position: absolute;
  height: 40px;
  width: 40px;
  background: none;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 50%;
}
@media (max-width: 675px) {
  .about_secB .our_journey-demo .carousel_nav .custom_navjo button.owl-prev, .about_secB .our_journey-demo .carousel_nav .custom_navjo .owl-next {
    height: 35px;
    width: 35px;
  }
}
.about_secB .our_journey-demo .carousel_nav .custom_navjo button.owl-prev.disabled, .about_secB .our_journey-demo .carousel_nav .custom_navjo .owl-next.disabled {
  opacity: 0.4;
}
.about_secB .our_journey-demo .carousel_nav .custom_navjo button.owl-prev img, .about_secB .our_journey-demo .carousel_nav .custom_navjo .owl-next img {
  filter: invert(1);
  width: 7px;
}
@media (max-width: 675px) {
  .about_secB .our_journey-demo .carousel_nav .custom_navjo button.owl-prev img, .about_secB .our_journey-demo .carousel_nav .custom_navjo .owl-next img {
    width: 5px;
  }
}
.about_secB .our_journey-demo .carousel_nav .custom_navjo .owl-next {
  right: 0;
}
@media (max-width: 675px) {
  .about_secB .our_journey-demo .carousel_nav .custom_navjo .owl-next {
    right: 15px;
  }
}
.about_secB .our_journey-demo .carousel_nav .custom_navjo .owl-prev {
  left: 0;
}
@media (max-width: 675px) {
  .about_secB .our_journey-demo .carousel_nav .custom_navjo .owl-prev {
    left: 15px;
  }
}
@media (max-width: 675px) {
  .about_secB .our_journey-demo .carousel_nav .custom_dots {
    display: none;
  }
}
.about_secB .our_journey-demo .carousel_nav .custom_dots ul li {
  display: inline-block;
  color: #fff;
  opacity: 0.4;
  font-size: 20px;
  font-family: "tenor_sansregular";
  cursor: pointer;
}
.about_secB .our_journey-demo .carousel_nav .custom_dots ul li:not(:first-child) {
  margin-left: 60px;
}
@media (max-width: 675px) {
  .about_secB .our_journey-demo .carousel_nav .custom_dots ul li:not(:first-child) {
    margin-left: 30px;
    font-size: 18px;
  }
}
.about_secB .our_journey-demo .carousel_nav .custom_dots ul li.active {
  opacity: 1;
}

.about_secC {
  padding: 95px 0;
}
@media (max-width: 1024px) {
  .about_secC {
    padding: 75px 0;
  }
}
@media (max-width: 675px) {
  .about_secC {
    padding: 55px 0 15px;
  }
}
.about_secC .heading {
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  .about_secC .heading {
    margin-bottom: 45px;
  }
}
@media (max-width: 675px) {
  .about_secC .heading {
    margin-bottom: 35px;
  }
}
.about_secC .Sec_c_wrap .flex {
  justify-content: space-between;
}
.about_secC .Sec_c_wrap .flex .col {
  flex: 0 1 48.5%;
  max-width: 48.5%;
  width: 100%;
  position: relative;
}
@media (max-width: 675px) {
  .about_secC .Sec_c_wrap .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 18px;
  }
}
.about_secC .Sec_c_wrap .flex .col figure {
  overflow: hidden;
}
.about_secC .Sec_c_wrap .flex .col figure img {
  width: 100%;
  transition: 0.5s ease;
}
.about_secC .Sec_c_wrap .flex .col:hover img {
  transform: scale(1.1);
}
.about_secC .Sec_c_wrap .flex .col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 33%, rgba(0, 0, 0, 0.9) 73%);
}
.about_secC .Sec_c_wrap .flex .col .title_secc {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.about_secC .Sec_c_wrap .flex .col .title_secc .title_wrap {
  padding: 50px;
}
@media (max-width: 675px) {
  .about_secC .Sec_c_wrap .flex .col .title_secc .title_wrap {
    padding: 25px;
  }
}
.about_secC .Sec_c_wrap .flex .col .title_secc .title_wrap h4 {
  color: #ca925a;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 100;
}
.about_secC .Sec_c_wrap .flex .col .title_secc .title_wrap p {
  color: #fff;
}

.modelPop {
  position: fixed;
  z-index: 3;
}

.model .close {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  top: 10px;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: 0.5s ease;
}
.model .close img {
  width: 12px;
}
.overlay {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
  z-index: 9;
  transition: 0.5s ease;
  pointer-events: none;
}
.overlay.overlay_active {
  pointer-events: all;
  opacity: 0.6;
}

.Model_Video {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background: #000;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.Model_Video.is-open {
  transform: translateY(0%);
}
.Model_Video .close_model {
  filter: invert(1);
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
  cursor: pointer;
}
.Model_Video .modelBody {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Model_Video .modelBody iframe {
  width: 90%;
  height: 85%;
  border: 0;
}

.model.Hamburger_slide {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
  transform: translateX(100%);
  transition: 0.5s ease;
}
@media (max-width: 675px) {
  .model.Hamburger_slide {
    left: 0;
  }
}
.model.Hamburger_slide .model-body {
  width: 420px;
  background: #fff url(../icon/KGA_ico2.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 55%;
  padding: 45px;
  padding-top: 80px;
  position: relative;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 675px) {
  .model.Hamburger_slide .model-body {
    padding: 85px 35px 0;
    width: 100%;
  }
}
.model.Hamburger_slide .model-body .close_model {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
  cursor: pointer;
}
.model.Hamburger_slide.is-open {
  transform: translateX(0%);
}
@media (max-width: 675px) {
  .model.Hamburger_slide .Navigation-list {
    height: 65vh;
    overflow-y: scroll;
  }
}
.model.Hamburger_slide .Navigation-list .nav-model::-webkit-scrollbar {
  width: 3px;
  background: none;
}
.model.Hamburger_slide .Navigation-list .nav-model::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.Hamburger_slide .Navigation-list .nav-model::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.7529411765);
  outline: 0;
  border-radius: 10px;
}
.model.Hamburger_slide .Navigation-list .nav-model ul li {
  display: block;
}
.model.Hamburger_slide .Navigation-list .nav-model ul li.menu_li {
  position: relative;
}
.model.Hamburger_slide .Navigation-list .nav-model ul li.menu_li a {
  display: block;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: relative;
}
.model.Hamburger_slide .Navigation-list .nav-model ul li.menu_li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  width: 25px;
  height: 25px;
  background-image: url("../icons/left_black.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
}
.model.Hamburger_slide .Navigation-list .nav-model ul li a {
  display: inline-block;
  font-size: 30px;
  line-height: 30px;
  padding: 10px 0;
  transition: 0.5s ease;
  opacity: 1;
  color: #57201b;
}
@media (max-width: 675px) {
  .model.Hamburger_slide .Navigation-list .nav-model ul li a {
    font-size: 20px;
    padding: 5px 0;
  }
}
.model.Hamburger_slide .Navigation-list .nav-model ul li a:hover {
  opacity: 0.5;
}
.model.Hamburger_slide .Navigation-list .nav-model ul li .side-sub-menu {
  padding: 13px 0;
  border-radius: 2px;
  border-top: 1px solid #57201b;
  border-bottom: 1px solid #57201b;
  margin: 15px 0;
  display: none;
}
.model.Hamburger_slide .Navigation-list .nav-model ul li ul {
  padding: 5px 0;
}
.model.Hamburger_slide .Navigation-list .nav-model ul li ul li {
  display: block;
}
.model.Hamburger_slide .Navigation-list .nav-model ul li ul li a {
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  padding: 3px 0;
  transition: 0.5s ease;
  color: #57201b;
  letter-spacing: inherit;
  opacity: 0.8;
}
.model.Hamburger_slide .Navigation-list .nav-model ul li ul li a::after {
  display: none;
}
.model.Hamburger_slide .Navigation-list .nav-model ul li ul li a:hover {
  opacity: 1;
}
.model.Hamburger_slide .Navigation-list .below_nav {
  border-top: 1px solid #57201b;
  padding-top: 30px;
  margin-top: 20px;
}
.model.Hamburger_slide .Navigation-list .below_nav ul li a {
  color: #57201b;
  display: inline-block;
  padding: 6px 0;
  font-size: 20px;
  font-family: inherit;
}
.model.Hamburger_slide .side_icons .flex {
  justify-content: space-between;
}
.model.Hamburger_slide .side_icons .flex .col a {
  color: #57201b;
  font-size: 14px;
}
.model.Hamburger_slide .side_icons .flex .social_links ul {
  display: flex;
  gap: 12px;
}
.model.Hamburger_slide .side_icons .flex .social_links ul li a svg {
  height: 16px;
  width: 16px;
  fill: #57201b;
  transition: 0.5s ease;
}
.model.Hamburger_slide .side_icons .flex .social_links ul li:hover a svg {
  fill: #57201b;
}

.enqury_model {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
  transform: translateX(100%);
  transition: 0.5s ease;
}
@media (max-width: 675px) {
  .enqury_model {
    left: 0;
  }
}
.enqury_model .model-body {
  width: 420px;
  background-color: #fff;
  padding-top: 45px;
  position: relative;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 675px) {
  .enqury_model .model-body {
    width: 100%;
    padding-top: 50px;
  }
}
.enqury_model .model-body .close_model {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
  cursor: pointer;
}
.enqury_model .model-body .Navigation-list {
  height: 100%;
  overflow-y: auto;
  padding: 0 40px;
}
.enqury_model .model-body .Navigation-list::-webkit-scrollbar {
  width: 3px;
  background: #fff;
}
.enqury_model .model-body .Navigation-list::-webkit-scrollbar-track {
  box-shadow: none;
}
.enqury_model .model-body .Navigation-list::-webkit-scrollbar-thumb {
  background-color: #57201b;
  outline: 0;
}
@media (max-width: 675px) {
  .enqury_model .model-body .Navigation-list {
    padding: 10px 35px;
  }
}
.enqury_model .model-body .Navigation-list .get_help {
  text-align: center;
}
.enqury_model .model-body .Navigation-list .get_help h4 {
  padding: 10px 0;
  font-size: 35px;
  line-height: 35px;
  color: #57201b;
}
.enqury_model .model-body .Navigation-list .get_help p {
  color: #fff;
}
.enqury_model .model-body .Navigation-list .enqury_form_model {
  padding-top: 40px;
}
@media (max-width: 675px) {
  .enqury_model .model-body .Navigation-list .enqury_form_model {
    padding-top: 30px;
  }
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col {
  flex: 1 0 100%;
  max-width: 100%;
  width: 100%;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group {
  position: relative;
  margin-bottom: 25px;
}
@media (max-width: 675px) {
  .enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group {
    margin-bottom: 15px;
  }
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group input {
  width: 100%;
  background: none;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 5px;
  border-bottom: 1px solid #bebebe;
  color: #000000;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group label {
  position: absolute;
  top: 0px;
  left: 0;
  color: #000000;
  pointer-events: none;
  transition: 0.3s ease;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group label span {
  color: red;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group label.valid {
  top: -20px;
}
@media (max-width: 675px) {
  .enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group label.valid {
    top: -13px;
    font-size: 14px;
  }
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group select {
  width: 100%;
  padding-bottom: 12px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: none;
  border-color: #fff;
  color: #fff;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group select option {
  background: #57201b;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.calender .ui-datepicker-trigger {
  position: absolute;
  right: 0;
  top: 5px;
  cursor: pointer;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.chckbx label {
  background: #fff;
  z-index: 1;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.chckbx .flex {
  padding-top: 45px;
  gap: 12px 0;
  height: 180px;
  overflow-y: auto;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.chckbx .flex::-webkit-scrollbar {
  width: 3px;
  background: #fff;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.chckbx .flex::-webkit-scrollbar-track {
  box-shadow: none;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.chckbx .flex::-webkit-scrollbar-thumb {
  background-color: #57201b;
  outline: 0;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.chckbx .flex .col {
  flex: 0 1 48%;
  max-width: 48%;
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.chckbx .flex .col input {
  width: auto;
  position: relative;
  height: auto;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.chckbx .flex .col input::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 3px;
  background: #57201b;
  display: none;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.chckbx .flex .col input.active::before {
  display: block;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.chckbx .flex .col span.item-label {
  color: #adadad;
  line-height: 22px;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.message_box {
  margin-top: 60px;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.message_box textarea {
  width: 100% !important;
  resize: none;
  background: none;
  outline: none;
  border: none;
  color: #000000;
  border-bottom: 1px solid #bebebe;
  height: 35px;
  max-height: 35px !important;
  min-height: 50px;
  font-size: 16px;
  padding: 5px;
  font-family: inherit;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.message_box textarea::-webkit-scrollbar {
  width: 3px;
  background: #fff;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.message_box textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.message_box textarea::-webkit-scrollbar-thumb {
  background-color: #57201b;
  outline: 0;
  height: 5px;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.message_box textarea::-moz-placeholder {
  color: #fff;
  font-family: inherit;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.message_box textarea::placeholder {
  color: #fff;
  font-family: inherit;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .col .form-group.message_box label {
  top: -35px;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .submit_btn {
  text-align: center;
  width: 100%;
  padding-bottom: 30px;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .submit_btn a {
  background: #57201b;
  color: #fff;
  width: 200px;
  margin: 0 auto;
  padding: 7px 0;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: 0.5s ease;
  display: block;
}
.enqury_model .model-body .Navigation-list .enqury_form_model .submit_btn a:hover {
  background: #ca925a;
  color: #fff;
}
.enqury_model.is-open {
  transform: translateX(0%);
}

.KGA-Searchmodel {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: translateY(20%);
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.5s ease;
  z-index: 9;
}
.KGA-Searchmodel.is-open {
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  transform: translateY(0%);
}
.KGA-Searchmodel .model-body {
  position: relative;
  height: 100%;
}
.KGA-Searchmodel .close_model {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 12;
  padding: 25px;
  cursor: pointer;
}
.KGA-Searchmodel .searchbar {
  position: sticky;
  top: 0;
  z-index: 11;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
}
.KGA-Searchmodel .searchbar .SearchForm {
  padding: 15px;
}
.KGA-Searchmodel .searchbar .SearchForm .form .form-group {
  position: relative;
  margin: 0;
}
.KGA-Searchmodel .searchbar .SearchForm .form .form-group .form-control {
  max-width: 100%;
  width: 100%;
  border: 0;
  padding: 5px 0px;
  padding-top: 20px;
  padding-bottom: 0;
  line-height: 60px;
  font-size: 20px;
  text-align: center;
  height: auto;
}
.KGA-Searchmodel .searchbar .SearchForm .form .form-group .form-control:focus {
  outline: none;
}
.KGA-Searchmodel .searchbar .SearchForm .form .form-group .form-control:focus ~ label {
  top: 5px;
}
.KGA-Searchmodel .searchbar .SearchForm .form .form-group.valid label {
  top: 5px;
  font-size: 16px;
}
.KGA-Searchmodel .searchbar .SearchForm .form .form-group label {
  display: block;
  position: absolute;
  top: 30px;
  left: 0px;
  right: 0;
  font-size: 20px;
  color: #a1a1a1;
  letter-spacing: 0.5px;
  text-align: center;
  font-style: italic;
  pointer-events: none;
  transition: 0.5s ease;
}
.KGA-Searchmodel .KGA-SearcToCat {
  position: absolute;
  top: 185px;
  left: 0;
  right: 0;
  padding-bottom: 45px;
}
@media (max-width: 675px) {
  .KGA-Searchmodel .KGA-SearcToCat {
    bottom: auto;
    top: 0;
    margin-top: 135px;
    padding-bottom: 0;
  }
}
.KGA-Searchmodel .KGA-SearcToCat .heading {
  margin-bottom: 50px;
}
@media (max-width: 675px) {
  .KGA-Searchmodel .KGA-SearcToCat .heading {
    margin-bottom: 35px;
  }
}
.KGA-Searchmodel .KGA-SearcToCat .heading h3 {
  font-size: 40px;
  line-height: 45px;
}
@media (max-width: 675px) {
  .KGA-Searchmodel .KGA-SearcToCat .heading h3 {
    font-size: 28px;
    line-height: 32px;
  }
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider {
  padding: 0 60px;
}
@media (max-width: 675px) {
  .KGA-Searchmodel .KGA-SearcToCat .products-search-slider {
    padding: 0 20px;
    padding-right: 0;
  }
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .owl-nav button.owl-prev, .KGA-Searchmodel .KGA-SearcToCat .products-search-slider .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .owl-nav .owl-prev {
  left: 25px;
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .owl-nav .owl-next {
  right: 25px;
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .owl-stage {
  display: flex;
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .owl-stage .owl-item {
  height: auto;
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .owl-stage .owl-item .item, .KGA-Searchmodel .KGA-SearcToCat .products-search-slider .owl-stage .owl-item .card, .KGA-Searchmodel .KGA-SearcToCat .products-search-slider .owl-stage .owl-item figure, .KGA-Searchmodel .KGA-SearcToCat .products-search-slider .owl-stage .owl-item figure > a, .KGA-Searchmodel .KGA-SearcToCat .products-search-slider .owl-stage .owl-item figure > a > img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .card {
  border-radius: 12px;
  overflow: hidden;
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .card .item {
  position: relative;
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .card .item img {
  transition: 0.5s ease;
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .card .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 73%, rgba(0, 0, 0, 0.59) 83%);
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .card .item .catSlidContet {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .card .item .catSlidContet .catName {
  color: #fff;
  font-size: 20px;
  transition: 0.5s ease;
}
@media (max-width: 675px) {
  .KGA-Searchmodel .KGA-SearcToCat .products-search-slider .card .item .catSlidContet .catName {
    font-size: 16px;
  }
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .card .item:hover img {
  transform: scale(1.1);
}
.KGA-Searchmodel .KGA-SearcToCat .products-search-slider .card .item:hover .catName {
  transform: scale(1.1) translateY(-10px);
}
.KGA-Searchmodel .KGA-SearchResult > span {
  display: block;
  text-align: center;
  font-size: 25px;
  margin-top: 42px;
}
.KGA-Searchmodel .KGA-SearchResult .result {
  padding: 0 30px;
  height: 100vh;
  padding-bottom: 170px;
  overflow-y: auto;
}
.KGA-Searchmodel .KGA-SearchResult .result::-webkit-scrollbar {
  width: 3px;
  background: #fff;
}
.KGA-Searchmodel .KGA-SearchResult .result::-webkit-scrollbar-track {
  box-shadow: none;
}
.KGA-Searchmodel .KGA-SearchResult .result::-webkit-scrollbar-thumb {
  background-color: #57201b;
  outline: 0;
}
.KGA-Searchmodel .KGA-SearchResult .result .flex {
  justify-content: flex-start;
  gap: 30px 0;
}
.KGA-Searchmodel .KGA-SearchResult .result .flex .col {
  flex: 0 1 25%;
  max-width: 25%;
  padding: 5px;
  width: 100%;
}
@media (max-width: 1140px) {
  .KGA-Searchmodel .KGA-SearchResult .result .flex .col {
    flex: 0 1 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 675px) {
  .KGA-Searchmodel .KGA-SearchResult .result .flex .col {
    flex: 0 1 50%;
    max-width: 50%;
  }
}
.KGA-Searchmodel .KGA-SearchResult .result .flex .col figure {
  overflow: hidden;
}
.KGA-Searchmodel .KGA-SearchResult .result .flex .col figure img {
  transition: 0.5s ease;
}
.KGA-Searchmodel .KGA-SearchResult .result .flex .col img {
  height: 343px;
  -o-object-fit: none;
     object-fit: none;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .KGA-Searchmodel .KGA-SearchResult .result .flex .col img {
    height: 175px;
    -o-object-fit: unset;
       object-fit: unset;
    padding: 25px;
  }
}
@media (max-width: 675px) {
  .KGA-Searchmodel .KGA-SearchResult .result .flex .col img {
    height: 150px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.KGA-Searchmodel .KGA-SearchResult .result .flex .col .product-inf {
  margin-top: 5px;
  text-align: center;
}
@media (max-width: 675px) {
  .KGA-Searchmodel .KGA-SearchResult .result .flex .col .product-inf p {
    font-size: 14px;
  }
}
.KGA-Searchmodel .KGA-SearchResult .result .flex .col:hover img {
  transform: scale(1.2);
}

@media (max-width: 675px) {
  .banner.product-listing-banner .bg img {
    height: 40vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 675px) {
  .banner.product-listing-banner .banner-wrapper {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translate(0, 0);
    padding: 30px;
  }
}
.banner.product-listing-banner .banner-wrapper .content {
  max-width: 310px;
  margin-right: auto;
}
@media (max-width: 675px) {
  .banner.product-listing-banner .banner-wrapper .content h1 {
    font-weight: 30px;
  }
}
.banner.product-listing-banner .banner-wrapper .content p {
  margin: 20px 0 30px;
}
@media (max-width: 1024px) {
  .banner.product-listing-banner .banner-wrapper .content p {
    margin: 5px 0 18px;
  }
}
@media (max-width: 675px) {
  .banner.product-listing-banner .banner-wrapper .content p {
    font-size: 14px;
    line-height: 18px;
  }
}
.banner.product-listing-banner .banner-wrapper .content .shop_btn a {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 3px 30px 4px;
  border-radius: 14px;
  transition: 0.4s ease;
  font-size: 14px;
}
@media (max-width: 675px) {
  .banner.product-listing-banner .banner-wrapper .content .shop_btn a {
    padding: 2px 25px 2px;
    font-size: 12px;
  }
}
.banner.product-listing-banner .banner-wrapper .content .shop_btn a:hover {
  background: #ca925a;
  color: #fff;
}

.product-listing_secA .Seca_wrapper {
  padding: 15px;
  display: grid;
  width: 100%;
  grid-template-rows: 60vh 40vh 40vh;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "col1 col2 col3" "col4 col4 col5" "col4 col4 col6";
  gap: 15px;
}
@media (max-width: 1024px) {
  .product-listing_secA .Seca_wrapper {
    gap: 7px;
    padding: 7px;
    grid-template-rows: 42vh 30vh 30vh;
  }
}
@media (max-width: 991px) {
  .product-listing_secA .Seca_wrapper {
    grid-template-rows: 25vh 15vh 15vh;
  }
}
@media (max-width: 675px) {
  .product-listing_secA .Seca_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 7px 0;
    padding: 7px;
  }
}
.product-listing_secA .Seca_wrapper .col {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 675px) {
  .product-listing_secA .Seca_wrapper .col {
    flex: 0 1 49%;
    max-width: 49%;
    width: 100%;
  }
}
.product-listing_secA .Seca_wrapper .col:nth-child(1) {
  grid-area: col1;
}
.product-listing_secA .Seca_wrapper .col:nth-child(2) {
  grid-area: col2;
}
.product-listing_secA .Seca_wrapper .col:nth-child(3) {
  grid-area: col3;
}
.product-listing_secA .Seca_wrapper .col:nth-child(4) {
  grid-area: col4;
}
.product-listing_secA .Seca_wrapper .col:nth-child(5) {
  grid-area: col5;
}
.product-listing_secA .Seca_wrapper .col:nth-child(6) {
  grid-area: col6;
}
.product-listing_secA .Seca_wrapper .col:nth-child(n+7) {
  height: 60vh;
}
.product-listing_secA .Seca_wrapper .col figure {
  position: relative;
  height: 100%;
}
.product-listing_secA .Seca_wrapper .col figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 62%, rgba(0, 0, 0, 0.68) 79%);
}
.product-listing_secA .Seca_wrapper .col figure img {
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
@media (max-width: 675px) {
  .product-listing_secA .Seca_wrapper .col figure img {
    height: 20vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.product-listing_secA .Seca_wrapper .col .prt_nm {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 20px;
  color: #fff;
  transition: 0.5s ease;
  z-index: 1;
}
@media (max-width: 991px) {
  .product-listing_secA .Seca_wrapper .col .prt_nm {
    font-size: 18px;
    bottom: 12%;
  }
}
@media (max-width: 675px) {
  .product-listing_secA .Seca_wrapper .col .prt_nm {
    font-size: 16px;
  }
}
.product-listing_secA .Seca_wrapper .col a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.product-listing_secA .Seca_wrapper .col:hover img {
  transform: scale(1.1);
}
.product-listing_secA .Seca_wrapper .col:hover .prt_nm {
  transform: scale(1.1) translateY(-15px);
}

@media (max-width: 675px) {
  .home_SecE.product-listing_secB .heading h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.home_SecE.product-listing_secB .heading h5 {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .home_SecE.product-listing_secB .heading h5 {
    font-weight: bold;
    font-size: 18px;
  }
}
.home_SecE.product-listing_secB .content_wrap .more-catagories-slider {
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .home_SecE.product-listing_secB .content_wrap .more-catagories-slider {
    padding: 0 25px;
  }
}
.home_SecE.product-listing_secB .content_wrap .more-catagories-slider .col {
  text-align: -webkit-center;
}
.home_SecE.product-listing_secB .content_wrap .more-catagories-slider .col img {
  transition: 0.5s ease;
}
.home_SecE.product-listing_secB .content_wrap .more-catagories-slider .col figure {
  position: relative;
}
.home_SecE.product-listing_secB .content_wrap .more-catagories-slider .col a:hover figure img {
  transform: scale(1.1);
}
.home_SecE.product-listing_secB .content_wrap .more-catagories-slider .col h5 {
  margin-top: 10px;
  font-family: "dinlight";
}
.home_SecE.product-listing_secB .content_wrap .more-catagories-slider .col img {
  width: auto;
}
.home_SecE.product-listing_secB .content_wrap .more-catagories-slider .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}
.home_SecE.product-listing_secB .content_wrap .more-catagories-slider .owl-nav button.owl-next, .home_SecE.product-listing_secB .content_wrap .more-catagories-slider .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}
@media (max-width: 991px) {
  .home_SecE.product-listing_secB .content_wrap .more-catagories-slider .owl-nav button.owl-next img, .home_SecE.product-listing_secB .content_wrap .more-catagories-slider .owl-nav .owl-prev img {
    width: 8px;
  }
}
.home_SecE.product-listing_secB .content_wrap .more-catagories-slider .owl-nav .owl-next {
  right: -35px;
}
@media (max-width: 1024px) {
  .home_SecE.product-listing_secB .content_wrap .more-catagories-slider .owl-nav .owl-next {
    right: 0;
  }
}
@media (max-width: 991px) {
  .home_SecE.product-listing_secB .content_wrap .more-catagories-slider .owl-nav .owl-next {
    right: 20px;
  }
}
.home_SecE.product-listing_secB .content_wrap .more-catagories-slider .owl-nav .owl-prev {
  left: -35px;
}
@media (max-width: 1024px) {
  .home_SecE.product-listing_secB .content_wrap .more-catagories-slider .owl-nav .owl-prev {
    left: 0;
  }
}
@media (max-width: 991px) {
  .home_SecE.product-listing_secB .content_wrap .more-catagories-slider .owl-nav .owl-prev {
    left: 20px;
  }
}

.product-listing_secC {
  padding: 75px 0;
}
@media (max-width: 675px) {
  .product-listing_secC {
    padding: 35px 0;
  }
}
.product-listing_secC .flex {
  justify-content: space-between;
}
.product-listing_secC .flex .colA {
  flex: 0 1 45%;
  max-width: 45%;
  width: 100%;
}
@media (max-width: 1024px) {
  .product-listing_secC .flex .colA {
    flex: 0 1 40%;
    max-width: 40%;
  }
}
@media (max-width: 991px) {
  .product-listing_secC .flex .colA {
    flex: 0 1 100%;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 675px) {
  .product-listing_secC .flex .colA {
    max-width: 100%;
  }
}
.product-listing_secC .flex .colA .recipes_demo {
  position: relative;
}
.product-listing_secC .flex .colA .recipes_demo .recipe-nm {
  position: absolute;
  right: -11%;
  top: 50%;
  transform: translate(0%, -50%);
  background: #57201b;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
  padding: 20px 30px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 675px) {
  .product-listing_secC .flex .colA .recipes_demo .recipe-nm {
    width: auto;
    position: unset;
    top: -11%;
    right: auto;
    left: 50%;
    transform: translate(0%, 0%);
    padding: 18px 22px;
  }
}
.product-listing_secC .flex .colA .recipes_demo .recipe-nm h2, .product-listing_secC .flex .colA .recipes_demo .recipe-nm h5 {
  display: inline-block;
  text-align: center;
  color: #fff;
}
@media (max-width: 675px) {
  .product-listing_secC .flex .colA .recipes_demo .recipe-nm h2, .product-listing_secC .flex .colA .recipes_demo .recipe-nm h5 {
    width: 100%;
    text-align: left;
  }
}
.product-listing_secC .flex .colA .recipes_demo .recipe-nm h2 {
  font-size: 45px;
  line-height: 48px;
  max-width: 130px;
  margin: 0 auto;
  position: relative;
  color: #fff;
}
@media (max-width: 991px) {
  .product-listing_secC .flex .colA .recipes_demo .recipe-nm h2 {
    font-size: 35px;
    line-height: 38px;
    max-width: 90px;
  }
}
@media (max-width: 675px) {
  .product-listing_secC .flex .colA .recipes_demo .recipe-nm h2 {
    max-width: 100%;
  }
}
.product-listing_secC .flex .colA .recipes_demo .recipe-nm h2 span {
  color: #ca925a;
}
.product-listing_secC .flex .colA .recipes_demo .recipe-slider {
  padding-right: 30px;
}
@media (max-width: 675px) {
  .product-listing_secC .flex .colA .recipes_demo .recipe-slider {
    padding-right: 0;
  }
}
.product-listing_secC .flex .colA .recipes_demo .recipe-slider .owl-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1024px) {
  .product-listing_secC .flex .colA .recipes_demo .recipe-slider .owl-dots {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .product-listing_secC .flex .colA .recipes_demo .recipe-slider .owl-dots {
    position: absolute;
    left: 0;
    bottom: -35px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
  }
}
.product-listing_secC .flex .colA .recipes_demo .recipe-slider .owl-dots button.owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: none;
  border: 2px solid #000;
}
@media (max-width: 991px) {
  .product-listing_secC .flex .colA .recipes_demo .recipe-slider .owl-dots button.owl-dot {
    height: 13px;
    width: 13px;
  }
}
.product-listing_secC .flex .colA .recipes_demo .recipe-slider .owl-dots button.owl-dot.active {
  background: #000;
}
.product-listing_secC .flex .colB {
  flex: 0 1 44%;
  max-width: 44%;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .product-listing_secC .flex .colB {
    flex: 0 1 52%;
    max-width: 52%;
  }
}
@media (max-width: 991px) {
  .product-listing_secC .flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
    margin-top: 55px;
  }
}
@media (max-width: 991px) {
  .product-listing_secC .flex .colB .recipe_content {
    flex: 0 1 100%;
    max-width: 90%;
    margin: 35px auto 0;
  }
}
@media only screen and (max-width: 365px) {
  .product-listing_secC .flex .colB .recipe_content {
    max-width: 100%;
  }
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .ttl_reciepe {
  max-width: 565px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .product-listing_secC .flex .colB .recipe_content .recipe_tab .ttl_reciepe {
    margin-right: auto;
    margin-left: 0;
  }
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .ttl_reciepe h5 {
  font-size: 30px;
  line-height: 1;
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .ttl_reciepe p {
  font-size: 18px;
  margin-top: 10px;
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .hw-t_ck ul {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .hw-t_ck ul li {
  flex: 0 1 25%;
  max-width: -moz-max-content;
  max-width: max-content;
  font-family: "dinmedium";
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .product-listing_secC .flex .colB .recipe_content .recipe_tab .hw-t_ck ul li {
    flex: 0 1 auto;
  }
}
@media only screen and (max-width: 365px) {
  .product-listing_secC .flex .colB .recipe_content .recipe_tab .hw-t_ck ul li {
    font-size: 14px;
  }
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .hw-t_ck ul li:not(:first-child) {
  padding: 0 20px;
  align-items: center;
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .hw-t_ck ul li:not(:last-child) {
  border-right: 1px solid #999999;
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .hw-t_ck ul li p {
  font-family: "dinlight";
}
@media only screen and (max-width: 365px) {
  .product-listing_secC .flex .colB .recipe_content .recipe_tab .hw-t_ck ul li p {
    font-size: 14px;
  }
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .ingrets {
  margin-top: 25px;
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .ingrets h4 {
  margin-bottom: 5px;
  font-size: 25px;
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .ingrets ul {
  padding-left: 20px;
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .ingrets ul li {
  list-style: disc;
}
.product-listing_secC .flex .colB .recipe_content .recipe_tab .ingrets ul li::marker {
  color: #000;
}

.product_detail_secA {
  padding: 85px 0;
}
@media (max-width: 1024px) {
  .product_detail_secA {
    padding: 75px 0;
  }
}
@media (max-width: 991px) {
  .product_detail_secA {
    padding: 65px 0;
  }
}
@media (max-width: 675px) {
  .product_detail_secA {
    padding: 90px 0 30px;
  }
}
.product_detail_secA .heading {
  margin-bottom: 65px;
}
@media (max-width: 1024px) {
  .product_detail_secA .heading {
    margin-bottom: 45px;
  }
}
@media (max-width: 991px) {
  .product_detail_secA .heading {
    margin-bottom: 35px;
  }
}
@media (max-width: 675px) {
  .product_detail_secA .heading {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .product_detail_secA .products_wrapper {
    position: relative;
    padding: 0 15px;
  }
}
@media (max-width: 520px) {
  .product_detail_secA .products_wrapper {
    padding: 0;
  }
}
.product_detail_secA .products_wrapper .products_nav {
  position: sticky;
  top: 87px;
  background: #fff;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .product_detail_secA .products_wrapper .products_nav {
    top: 82px;
  }
}
@media (max-width: 991px) {
  .product_detail_secA .products_wrapper .products_nav {
    top: 62px;
    display: inline-block;
    border: 1px solid #b6b6b6;
  }
}
@media (max-width: 675px) {
  .product_detail_secA .products_wrapper .products_nav {
    position: fixed;
    left: 0;
    right: 0;
  }
}
@media only screen and (max-width: 365px) {
  .product_detail_secA .products_wrapper .products_nav {
    top: 41.5px;
  }
}
.product_detail_secA .products_wrapper .products_nav p.active-product {
  display: none;
}
@media (max-width: 991px) {
  .product_detail_secA .products_wrapper .products_nav p.active-product {
    display: flex;
    align-items: center;
    gap: 0 125px;
    padding: 7px 12px;
  }
}
@media (max-width: 675px) {
  .product_detail_secA .products_wrapper .products_nav p.active-product {
    padding: 12px;
  }
}
@media (max-width: 520px) {
  .product_detail_secA .products_wrapper .products_nav p.active-product {
    justify-content: space-between;
    gap: 0;
  }
}
@media (max-width: 991px) {
  .product_detail_secA .products_wrapper .products_nav p.active-product img {
    filter: invert(1);
    width: 15px;
  }
}
.product_detail_secA .products_wrapper .products_nav ul {
  padding: 0 27px;
}
@media (max-width: 991px) {
  .product_detail_secA .products_wrapper .products_nav ul {
    padding: 0;
    display: none;
    position: absolute;
    left: 0;
    top: 102%;
    background: #fff;
    z-index: 3;
    max-height: 185px;
    overflow: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
}
@media (max-width: 991px) and (max-width: 675px) {
  .product_detail_secA .products_wrapper .products_nav ul {
    max-height: -moz-max-content;
    max-height: max-content;
    height: 100vh;
    padding-bottom: 160px;
  }
}
@media (max-width: 991px) {
  .product_detail_secA .products_wrapper .products_nav ul::-webkit-scrollbar {
    width: 2px;
    background: none;
  }
  .product_detail_secA .products_wrapper .products_nav ul::-webkit-scrollbar-track {
    box-shadow: none;
  }
  .product_detail_secA .products_wrapper .products_nav ul::-webkit-scrollbar-thumb {
    background-color: #666666;
    outline: 0;
  }
}
.product_detail_secA .products_wrapper .products_nav ul .owl-item:nth-child(1) {
  border-left: 1px solid #b6b6b6;
}
.product_detail_secA .products_wrapper .products_nav ul .owl-nav button.owl-prev, .product_detail_secA .products_wrapper .products_nav ul .owl-nav button.owl-next {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 27px;
  display: grid;
  place-items: center;
}
.product_detail_secA .products_wrapper .products_nav ul .owl-nav button.owl-prev img, .product_detail_secA .products_wrapper .products_nav ul .owl-nav button.owl-next img {
  width: 6px;
}
.product_detail_secA .products_wrapper .products_nav ul .owl-nav button.owl-prev:hover, .product_detail_secA .products_wrapper .products_nav ul .owl-nav button.owl-next:hover {
  background: #ca925a;
}
.product_detail_secA .products_wrapper .products_nav ul .owl-nav button.owl-prev:hover img, .product_detail_secA .products_wrapper .products_nav ul .owl-nav button.owl-next:hover img {
  filter: invert(1);
}
.product_detail_secA .products_wrapper .products_nav ul .owl-nav button.owl-prev {
  left: 0;
}
.product_detail_secA .products_wrapper .products_nav ul .owl-nav button.owl-next {
  right: 0;
}
.product_detail_secA .products_wrapper .products_nav ul li {
  text-align: center;
  transition: 0.5s ease;
  border-right: 1px solid #b6b6b6;
}
@media (max-width: 991px) {
  .product_detail_secA .products_wrapper .products_nav ul li {
    display: block;
    text-align: left;
    border: none !important;
  }
}
@media (max-width: 675px) {
  .product_detail_secA .products_wrapper .products_nav ul li {
    white-space: nowrap;
  }
}
@media (max-width: 1280px) {
  .product_detail_secA .products_wrapper .products_nav ul li:nth-child(n+7) {
    border-top: none;
    border-bottom: 1px solid #b6b6b6;
  }
}
@media (max-width: 1280px) {
  .product_detail_secA .products_wrapper .products_nav ul li:nth-child(-n+7) {
    border-top: 1px solid #b6b6b6;
    border-bottom: 1px solid #b6b6b6;
  }
}
.product_detail_secA .products_wrapper .products_nav ul li:nth-child(n+8) {
  border-top: none;
  border-bottom: 1px solid #b6b6b6;
}
.product_detail_secA .products_wrapper .products_nav ul li:nth-child(-n+7) {
  border-top: 1px solid #b6b6b6;
  border-bottom: 1px solid #b6b6b6;
}
.product_detail_secA .products_wrapper .products_nav ul li.active a, .product_detail_secA .products_wrapper .products_nav ul li:hover a {
  background: #57201b;
  color: #fff;
}
.product_detail_secA .products_wrapper .products_nav ul li a {
  font-size: 18px;
  font-family: "dinlight";
  color: #000;
  transition: 0.5s ease;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 1536px) {
  .product_detail_secA .products_wrapper .products_nav ul li a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .product_detail_secA .products_wrapper .products_nav ul li a {
    display: block;
    padding: 6px 12px;
  }
}
.product_detail_secA .products_wrapper .products_list_ghtd {
  padding: 25px 20px;
}
@media (max-width: 991px) {
  .product_detail_secA .products_wrapper .products_list_ghtd {
    padding: 15px 0 20px;
  }
}
@media (max-width: 520px) {
  .product_detail_secA .products_wrapper .products_list_ghtd {
    padding: 15px;
  }
}
.product_detail_secA .products_wrapper .products_list_ghtd .flex {
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .product_detail_secA .products_wrapper .products_list_ghtd .flex {
    justify-content: center;
  }
}
.product_detail_secA .products_wrapper .products_list_ghtd .flex .item {
  flex: 0 1 25%;
  max-width: 25%;
  padding: 15px;
  width: 100%;
  position: relative;
  text-align: -webkit-center;
  padding: 20px 0;
}
@media (max-width: 1024px) {
  .product_detail_secA .products_wrapper .products_list_ghtd .flex .item {
    flex: 0 1 33%;
    max-width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .product_detail_secA .products_wrapper .products_list_ghtd .flex .item {
    flex: 0 1 48.5%;
    max-width: 48.5%;
  }
}
@media (max-width: 1024px) {
  .product_detail_secA .products_wrapper .products_list_ghtd .flex .item figure {
    margin-top: auto;
  }
}
@media (max-width: 675px) {
  .product_detail_secA .products_wrapper .products_list_ghtd .flex .item figure {
    padding: 0 35px;
  }
}
.product_detail_secA .products_wrapper .products_list_ghtd .flex .item .product_name {
  max-width: 152px;
  margin: 40px auto 0;
  font-family: "dinlight";
}
@media (max-width: 520px) {
  .product_detail_secA .products_wrapper .products_list_ghtd .flex .item .product_name {
    font-size: 14px;
    line-height: 20px;
  }
}
.product_detail_secA .products_wrapper .products_list_ghtd .flex .item .price {
  font-family: "dinmedium";
  font-size: 25px;
  margin-top: 15px;
}
@media (max-width: 520px) {
  .product_detail_secA .products_wrapper .products_list_ghtd .flex .item .price {
    font-size: 18px;
    margin-top: 8px;
  }
}
.product_detail_secA .products_wrapper .products_list_ghtd .flex .item a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.product_detail_secB {
  padding: 95px 0;
  background: url("../images/home/Sec_c_bg.png");
}
@media (max-width: 991px) {
  .product_detail_secB {
    padding: 55px 0;
  }
}
.product_detail_secB .heading {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .product_detail_secB .heading {
    margin-bottom: 35px;
  }
}
.product_detail_secB .heading span {
  color: #ca925a;
}
.product_detail_secB .tetimonial_demo .testiomonial-slider {
  padding-left: 20px;
}
.product_detail_secB .tetimonial_demo .testiomonial-slider .owl-stage {
  padding: 10px 0;
}
.product_detail_secB .tetimonial_demo .testiomonial-slider .item {
  text-align: -webkit-center;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: rgba(99, 99, 99, 0.08) 0px 0px 3px 0px;
}
.product_detail_secB .tetimonial_demo .testiomonial-slider .item img {
  width: auto;
}
.product_detail_secB .tetimonial_demo .testiomonial-slider .item p {
  font-size: 18px;
  max-width: 290px;
  margin: 0 auto;
}
.product_detail_secB .tetimonial_demo .testiomonial-slider .item h4 {
  font-size: 25px;
  line-height: 1;
  color: #57201b;
  margin-bottom: 10px;
}
.product_detail_secB .tetimonial_demo .testiomonial-slider .item .ico_msg {
  margin: 30px 0;
}
.product_detail_secB .tetimonial_demo .testiomonial-slider .owl-dots {
  text-align: center;
  margin-top: 40px;
}
.product_detail_secB .tetimonial_demo .testiomonial-slider .owl-dots button.owl-dot {
  height: 9px;
  width: 9px;
  border-radius: 50%;
  margin-inline: 5px;
  background: none;
  border: 1px solid #000;
}
.product_detail_secB .tetimonial_demo .testiomonial-slider .owl-dots button.owl-dot.active {
  background: #000;
}

.home_SecB.product_detail_secC {
  padding: 95px 0;
}
@media (max-width: 991px) {
  .home_SecB.product_detail_secC {
    padding: 55px 0;
  }
}
.home_SecB.product_detail_secC .heading {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .home_SecB.product_detail_secC .heading {
    margin-bottom: 35px;
  }
}
.home_SecB.product_detail_secC .heading span {
  color: #ca925a;
}
.home_SecB.product_detail_secC .secBtab_content .tabs {
  position: unset;
  opacity: 1;
  visibility: visible;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  pointer-events: all;
}
.home_SecB.product_detail_secC .secBtab_content .flex {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.home_SecB.product_detail_secC .secBtab_content .flex .item {
  padding: 35px 0;
  position: relative;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .home_SecB.product_detail_secC .secBtab_content .flex .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .home_SecB.product_detail_secC .secBtab_content .flex .item {
    flex: 0 1 48.5%;
    max-width: 48.5%;
    margin-bottom: 25px;
  }
}
@media (max-width: 675px) {
  .home_SecB.product_detail_secC .secBtab_content .flex .item {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.home_SecB.product_detail_secC .secBtab_content .flex .item img {
  transition: 0.5s ease;
}
@media (max-width: 1024px) {
  .home_SecB.product_detail_secC .secBtab_content .flex .item figure {
    padding: 25px;
    padding-bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
  }
}
.home_SecB.product_detail_secC .secBtab_content .flex .item .title {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 675px) {
  .home_SecB.product_detail_secC .secBtab_content .flex .item .title h5 {
    font-weight: bold;
    font-size: 18px;
  }
}
.home_SecB.product_detail_secC .secBtab_content .flex .item a.link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.product-listing_secC.product-internal_SecA {
  padding: 0;
}
@media (max-width: 675px) {
  .product-listing_secC.product-internal_SecA {
    padding: 25px 0 0;
  }
}
.product-listing_secC.product-internal_SecA .flex {
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 675px) {
  .product-listing_secC.product-internal_SecA .flex {
    gap: 5px;
  }
}
.product-listing_secC.product-internal_SecA .flex .colA {
  flex: 0 1 30%;
  max-width: 30%;
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 675px) {
  .product-listing_secC.product-internal_SecA .flex .colA {
    display: block;
    flex: 0 1 100%;
    max-width: 100%;
    overflow: hidden;
  }
}
.product-listing_secC.product-internal_SecA .flex .colA .platList ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-listing_secC.product-internal_SecA .flex .colA .platList ul li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: none;
  border: 2px solid #000;
}
.product-listing_secC.product-internal_SecA .flex .colA .platList ul li.active {
  background: #000;
}
.product-listing_secC.product-internal_SecA .flex .colA .PlatformSLide2 .slideWrap {
  transition: 0.5s ease;
}
.product-listing_secC.product-internal_SecA .flex .colA .PlatformSLide2 .slideWrap .warpList {
  overflow: hidden;
  transition: 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 675px) {
  .product-listing_secC.product-internal_SecA .flex .colA .PlatformSLide2 .slideWrap .warpList {
    display: block;
    overflow: auto;
  }
}
.product-listing_secC.product-internal_SecA .flex .colA .PlatformSLide2 .slideWrap .warpList .item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}
@media (max-width: 675px) {
  .product-listing_secC.product-internal_SecA .flex .colA .PlatformSLide2 .slideWrap .warpList .item {
    display: block;
    position: unset;
  }
}
.product-listing_secC.product-internal_SecA .flex .colA .PlatformSLide2 .slideWrap .warpList .item img {
  height: 400px;
  -o-object-fit: none;
     object-fit: none;
}
@media (max-width: 675px) {
  .product-listing_secC.product-internal_SecA .flex .colA .PlatformSLide2 .slideWrap .warpList .item img {
    width: 100%;
  }
}
.product-listing_secC.product-internal_SecA .flex .colA .PlatformSLide2 .slideWrap .owl-dots {
  text-align: center;
  display: none;
  margin-top: 5px;
}
@media (max-width: 675px) {
  .product-listing_secC.product-internal_SecA .flex .colA .PlatformSLide2 .slideWrap .owl-dots {
    display: block;
  }
}
.product-listing_secC.product-internal_SecA .flex .colA .PlatformSLide2 .slideWrap .owl-dots button.owl-dot {
  height: 11px;
  width: 11px;
  border-radius: 50%;
  border: 1px solid #57201b;
  background: none;
  margin-inline: 5px;
}
.product-listing_secC.product-internal_SecA .flex .colA .PlatformSLide2 .slideWrap .owl-dots button.owl-dot.active {
  background: #57201b;
}
.product-listing_secC.product-internal_SecA .flex .colB {
  flex: 0 1 60%;
  max-width: 60%;
  margin-top: 40px;
  position: sticky;
  top: 222px;
  padding-bottom: 95px;
}
@media (max-width: 1024px) {
  .product-listing_secC.product-internal_SecA .flex .colB {
    flex: 0 1 54%;
    max-width: 54%;
  }
}
@media (max-width: 675px) {
  .product-listing_secC.product-internal_SecA .flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
    position: unset;
    top: 0;
    padding-bottom: 55px;
  }
}
.product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .ttl_reciepe .categ {
  font-size: 20px;
  font-family: "dinlight";
}
.product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .ttl_reciepe .produt_nm, .product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .ttl_reciepe .price {
  font-size: 30px;
}
.product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .ttl_reciepe .produt_nm {
  margin: 5px 0;
}
.product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .hw-t_ck ul {
  border-top: 1px solid #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
  padding: 5px 0;
}
.product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .hw-t_ck ul li {
  flex: 0 1 30%;
  padding-top: 0;
  padding-bottom: 0;
  border-color: #bdbdbd;
}
@media (max-width: 1024px) {
  .product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .hw-t_ck ul li {
    flex: 0 1 auto;
  }
}
.product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .content p {
  font-size: 18px;
}
.product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .content .btm_btn {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .content .btm_btn .inqr_btn a {
  background: #57201b;
  color: #fff;
  border-radius: 20px;
  padding: 4px 20px 6px;
  transition: 0.5s ease;
}
.product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .content .btm_btn .inqr_btn a:hover {
  background: #ca925a;
  color: #fff;
}
.product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .content .btm_btn .wtsp a img {
  transition: 0.5s ease;
}
.product-listing_secC.product-internal_SecA .flex .colB .recipe_tab .content .btm_btn .wtsp a:hover img {
  transform: scale(1.1);
}
.product-listing_secC.product-internal_SecA .btm_img {
  position: absolute;
  bottom: -5%;
  left: 18%;
}

.home_SecB.product-internal_SecB {
  padding: 95px 0 40px;
  background: url("../images/home/Sec_c_bg.png");
}
@media (max-width: 1024px) {
  .home_SecB.product-internal_SecB {
    padding: 55px 0 40px;
  }
}
.home_SecB.product-internal_SecB .heading {
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  .home_SecB.product-internal_SecB .heading {
    margin-bottom: 40px;
  }
}
.home_SecB.product-internal_SecB .heading h3 {
  color: #000;
}
.home_SecB.product-internal_SecB .heading h3 span {
  color: #ca925a;
}
.home_SecB.product-internal_SecB .secBtab_content .tabs {
  position: unset;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
.home_SecB.product-internal_SecB .home-eco-slider .owl-dots .owl-dot {
  border-color: #000;
}
.home_SecB.product-internal_SecB .home-eco-slider .owl-dots .owl-dot.active {
  background: #000;
}

.home_SecC.product-internal_Sec {
  padding: 35px 0;
  background: #f1e9e1;
}
@media (max-width: 1024px) {
  .home_SecC.product-internal_Sec {
    padding: 35px 0 0;
  }
}

.Blogs_secA {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .Blogs_secA {
    padding: 55px 0;
  }
}
.Blogs_secA .blogtab {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .Blogs_secA .blogtab {
    margin-bottom: 35px;
  }
}
.Blogs_secA .blogtab ul {
  text-align: center;
}
.Blogs_secA .blogtab ul li {
  display: inline-block;
  margin-inline: 30px;
  font-size: 20px;
  color: #000;
  position: relative;
  padding-bottom: 10px;
  cursor: pointer;
  transition: 0.5s ease;
}
@media (max-width: 991px) {
  .Blogs_secA .blogtab ul li {
    margin-inline: 15px;
  }
}
@media (max-width: 675px) {
  .Blogs_secA .blogtab ul li:nth-child(n+3) {
    margin-top: 15px;
    padding-bottom: 5px;
  }
}
.Blogs_secA .blogtab ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  left: 0;
  width: 0;
  transition: 0.5s ease;
  background: #000;
}
.Blogs_secA .blogtab ul li.active {
  font-family: "dinmedium";
}
.Blogs_secA .blogtab ul li.active:after {
  width: 100%;
}
.Blogs_secA .blogtab_content .tabs .flex {
  justify-content: flex-start;
  gap: 40px 0;
}
.Blogs_secA .blogtab_content .tabs .flex .col {
  flex: 0 1 33.3%;
  max-width: 33.33%;
  width: 100%;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .Blogs_secA .blogtab_content .tabs .flex .col {
    flex: 0 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 675px) {
  .Blogs_secA .blogtab_content .tabs .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0;
  }
}
.Blogs_secA .blogtab_content .tabs .flex .col figure {
  overflow: hidden;
}
.Blogs_secA .blogtab_content .tabs .flex .col figure img {
  transition: 0.5s ease;
}
.Blogs_secA .blogtab_content .tabs .flex .col figure:hover img {
  transform: scale(1.1);
}
.Blogs_secA .blogtab_content .tabs .flex .col h5 {
  margin: 25px 0 15px;
}
@media (max-width: 675px) {
  .Blogs_secA .blogtab_content .tabs .flex .col h5 {
    margin: 25px 0 10px;
    font-weight: bold;
  }
}
.Blogs_secA .blogtab_content .tabs .flex .col p {
  font-size: 18px;
  line-height: 22px;
}

.Blogs-detail_secA {
  padding: 75px 0;
}
@media (max-width: 1024px) {
  .Blogs-detail_secA {
    padding: 55px 0;
  }
}
@media (max-width: 675px) {
  .Blogs-detail_secA {
    padding: 25px 0;
  }
}
.Blogs-detail_secA .flex {
  justify-content: space-between;
}
.Blogs-detail_secA .flex .colA {
  flex: 0 1 65%;
  max-width: 65%;
  width: 100%;
}
@media (max-width: 1024px) {
  .Blogs-detail_secA .flex .colA {
    flex: 0 1 63%;
    max-width: 63%;
  }
}
@media (max-width: 991px) {
  .Blogs-detail_secA .flex .colA {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Blogs-detail_secA .flex .colA .blog-img img {
  width: 100%;
}
.Blogs-detail_secA .flex .colA .blog_content {
  padding: 50px 0;
}
@media (max-width: 1024px) {
  .Blogs-detail_secA .flex .colA .blog_content {
    padding: 35px 0;
  }
}
.Blogs-detail_secA .flex .colA .blog_content h5 {
  font-size: 18px;
  line-height: 24px;
  font-family: "dinlight";
}
.Blogs-detail_secA .flex .colA .blog_content h1 {
  font-size: 30px;
  line-height: 1;
  margin: 6px 0 20px;
}
.Blogs-detail_secA .flex .colA .blog_content h2 {
  font-size: 20px;
  line-height: 1;
  color: #57201b;
  margin-bottom: 20px;
}
.Blogs-detail_secA .flex .colA .blog_content p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 25px;
  text-align: justify;
}
@media (max-width: 1024px) {
  .Blogs-detail_secA .flex .colA .blog_content p {
    font-size: 16px;
    line-height: 22px;
  }
}
.Blogs-detail_secA .flex .colB {
  flex: 0 1 33%;
  max-width: 33%;
  width: 100%;
  height: 100%;
  background: #57201b;
  position: sticky;
  top: 95px;
}
@media (max-width: 991px) {
  .Blogs-detail_secA .flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
    position: unset;
  }
}
.Blogs-detail_secA .flex .colB .colB_wrap {
  padding: 30px 20px 20px;
}
.Blogs-detail_secA .flex .colB .colB_wrap .hedg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.Blogs-detail_secA .flex .colB .colB_wrap .hedg h3 {
  font-size: 30px;
  line-height: 1;
  font-weight: 100;
  color: #fff;
}
.Blogs-detail_secA .flex .colB .colB_wrap .hedg a.vie_all {
  font-size: 18px;
  color: #fff;
  transition: 0.5s ease;
  font-family: "dinlight";
}
.Blogs-detail_secA .flex .colB .colB_wrap .hedg a.vie_all:hover {
  color: #ca925a;
}
@media (max-width: 991px) {
  .Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .owl-stage {
    display: flex;
  }
}
@media (max-width: 991px) {
  .Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .owl-stage .owl-item {
    height: auto;
  }
}
.Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .col {
  background: #f1e6d8;
  padding: 10px;
}
@media (max-width: 991px) {
  .Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .col {
    height: 100%;
  }
}
.Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .col:not(:last-child) {
  margin-bottom: 20px;
}
.Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .col a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .col a figure {
  flex: 0 1 27%;
  max-width: 27%;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .col a figure {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .col a figure img {
  height: 100%;
  width: 100%;
  transition: 0.5s ease;
}
.Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .col a h5 {
  flex: 0 1 68%;
  max-width: 68%;
  width: 100%;
  color: #57201b;
  line-height: 22px;
  font-weight: 100;
}
@media (max-width: 991px) {
  .Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .col a h5 {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.Blogs-detail_secA .flex .colB .colB_wrap .more_blog_con .col a:hover img {
  transform: scale(1.1);
}

.contact_SecA {
  padding: 75px 0;
}
@media (max-width: 675px) {
  .contact_SecA {
    padding: 55px 0 25px;
  }
}
.contact_SecA .flex {
  justify-content: space-between;
}
@media (max-width: 991px) {
  .contact_SecA .flex {
    gap: 65px 0;
  }
}
.contact_SecA .flex .hdg_cont {
  margin-bottom: 25px;
}
.contact_SecA .flex .hdg_cont h3 {
  font-size: 30px;
  line-height: 32px;
}
.contact_SecA .flex .colA {
  flex: 0 1 50%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 991px) {
  .contact_SecA .flex .colA {
    flex: 0 1 100%;
    max-width: 75%;
    margin: 0 auto;
  }
}
@media (max-width: 675px) {
  .contact_SecA .flex .colA {
    max-width: 92%;
  }
}
.contact_SecA .flex .colA .form .col {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 0;
  justify-content: space-between;
}
.contact_SecA .flex .colA .form .col .form-group {
  flex: 0 1 48%;
  max-width: 48%;
  width: 100%;
  position: relative;
}
@media (max-width: 675px) {
  .contact_SecA .flex .colA .form .col .form-group {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.contact_SecA .flex .colA .form .col .form-group .form-control {
  border-radius: 27px;
  border: 1px solid #a8a8a8;
  outline: none;
  width: 100%;
  padding: 7px;
  padding-left: 12px;
}
.contact_SecA .flex .colA .form .col .form-group label {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translate(0, -50%);
  background: #fff;
  transition: 0.5s ease;
  pointer-events: none;
  color: #a8a8a8;
  font-size: 14px;
}
.contact_SecA .flex .colA .form .col .form-group label.valid {
  top: 0;
  font-size: 13px;
}
.contact_SecA .flex .colA .form .col .form-group .nice-select {
  width: 100%;
  border: 1px solid #a8a8a8;
  border-radius: 20px;
  color: #a8a8a8;
}
.contact_SecA .flex .colA .form .col .form-group.message_box {
  flex: 0 1 100%;
  max-width: 100%;
}
.contact_SecA .flex .colA .form .col .form-group.message_box textarea {
  resize: none;
  height: 70px;
  overflow-y: auto;
  font-family: inherit;
  font-size: 14px;
  color: #a8a8a8;
}
.contact_SecA .flex .colA .form .col .form-group.message_box label {
  top: 44%;
  left: 3%;
}
.contact_SecA .flex .colA .form .col .form-group.message_box label.valid {
  top: 0;
}
.contact_SecA .flex .colA .form .submit_btn {
  margin-top: 20px;
}
.contact_SecA .flex .colA .form .submit_btn a {
  padding: 8px 40px 10px;
  color: #fff;
  background: #57201b;
  border: none;
  border-radius: 20px;
  transition: 0.5s ease;
  cursor: pointer;
  font-size: 14px;
  font-family: "dinmedium";
}
@media (max-width: 675px) {
  .contact_SecA .flex .colA .form .submit_btn a {
    padding: 4px 30px 6px;
  }
}
.contact_SecA .flex .colA .form .submit_btn a:hover {
  background: #ca925a;
}
.contact_SecA .flex .colB {
  flex: 0 1 42%;
  max-width: 42%;
}
@media (max-width: 991px) {
  .contact_SecA .flex .colB {
    flex: 0 1 100%;
    max-width: 75%;
    margin: 0 auto;
  }
}
@media (max-width: 675px) {
  .contact_SecA .flex .colB {
    max-width: 92%;
  }
}
.contact_SecA .flex .colB .contact_dtls .col {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact_SecA .flex .colB .contact_dtls .col:first-child figure {
  margin-top: 5px;
}
.contact_SecA .flex .colB .contact_dtls .col:not(:first-child) {
  align-items: center;
}
.contact_SecA .flex .colB .contact_dtls .col figure {
  flex: 0 1 6%;
  max-width: 6%;
  width: 100%;
}
.contact_SecA .flex .colB .contact_dtls .col .dtls {
  flex: 0 1 70%;
  max-width: 70%;
  width: 100%;
}
.contact_SecA .flex .colB .contact_dtls .col .dtls a {
  color: #000;
  font-size: 20px;
  line-height: 28px;
  font-family: "dinlight";
  transition: 0.5s ease;
}
.contact_SecA .flex .colB .contact_dtls .col .dtls a:hover {
  color: #ca925a;
}
.contact_SecA .flex .colB .contact_dtls .col.wtsp_btn a {
  position: relative;
  background: #57201b;
  padding: 3px 40px 4px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-family: "dinmedium";
  transition: 0.5s ease;
}
.contact_SecA .flex .colB .contact_dtls .col.wtsp_btn a img {
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translate(0%, -50%);
  transition: 0.5s ease;
}
.contact_SecA .flex .colB .contact_dtls .col.wtsp_btn a:hover {
  background: #ca925a;
}
.contact_SecA .flex .colB .contact_dtls .col.wtsp_btn a:hover img {
  transform: scale(1.1) translateY(-14px);
}

.banner.faq-banner .banner-wrapper {
  left: 14%;
}
@media (max-width: 675px) {
  .banner.faq-banner .banner-wrapper {
    left: 10%;
  }
}
@media (max-width: 675px) {
  .banner.faq-banner .banner-wrapper h1 {
    font-size: 25px;
  }
}

.faq_secA {
  padding: 75px 0;
}
@media (max-width: 675px) {
  .faq_secA {
    padding: 40px 0;
  }
}
.faq_secA .flex {
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .faq_secA .flex {
    padding: 0 35px;
  }
}
@media (max-width: 675px) {
  .faq_secA .flex {
    padding: 0;
  }
}
.faq_secA .flex .colA {
  flex: 0 1 22%;
  max-width: 22%;
  width: 100%;
}
@media (max-width: 675px) {
  .faq_secA .flex .colA {
    flex: 0 1 100%;
    max-width: 100%;
    display: none;
  }
}
.faq_secA .flex .colA .faq_tab h3 {
  font-size: 30px;
  border-bottom: 1px solid #b2b2b2;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.faq_secA .flex .colA .faq_tab ul li {
  font-family: "tenor_sansregular";
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 10px;
  cursor: pointer;
}
.faq_secA .flex .colA .faq_tab ul li.active {
  color: #ca925a;
}
.faq_secA .flex .colB {
  flex: 0 1 70%;
  max-width: 70%;
  width: 100%;
}
@media (max-width: 675px) {
  .faq_secA .flex .colB {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.faq_secA .flex .colB .faq_tab_content .col {
  border-bottom: 1px solid #000;
}
.faq_secA .flex .colB .faq_tab_content .col:first-child .title {
  padding-top: 10px;
}
.faq_secA .flex .colB .faq_tab_content .col .title {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 18px 0;
  padding-left: 30px;
  cursor: pointer;
}
@media (max-width: 675px) {
  .faq_secA .flex .colB .faq_tab_content .col .title {
    padding-left: 5px;
    gap: 20px;
    padding: 10px 0;
  }
}
.faq_secA .flex .colB .faq_tab_content .col .title h5 {
  font-family: "dinlight";
  transition: 0.5s ease;
}
@media (max-width: 1024px) {
  .faq_secA .flex .colB .faq_tab_content .col .title h5 {
    font-size: 18px;
    line-height: 22px;
  }
}
.faq_secA .flex .colB .faq_tab_content .col .title.active h5 {
  font-family: "dinmedium";
}
.faq_secA .flex .colB .faq_tab_content .col .title.active .arr_ico {
  transform: rotate(90deg);
}
.faq_secA .flex .colB .faq_tab_content .col .title .arr_ico {
  transition: 0.5s ease;
  width: 7px;
}
@media (max-width: 675px) {
  .faq_secA .flex .colB .faq_tab_content .col .title .arr_ico {
    width: 5px;
  }
}
.faq_secA .flex .colB .faq_tab_content .col .ttlancont {
  max-width: 90%;
  margin-left: auto;
  padding-bottom: 18px;
}
@media (max-width: 675px) {
  .faq_secA .flex .colB .faq_tab_content .col .ttlancont {
    max-width: 100%;
  }
}
.faq_secA .flex .colB .faq_tab_content .col .ttlancont p {
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
}
@media (max-width: 1024px) {
  .faq_secA .flex .colB .faq_tab_content .col .ttlancont p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 675px) {
  .banner.terms-condition-banner .banner-wrapper {
    left: 10%;
  }
}
.banner.about-banner.thank-you-banner::before {
  display: none;
}

.privacy_secA {
  padding: 75px 0;
}
@media (max-width: 1024px) {
  .privacy_secA {
    padding: 55px 0;
  }
}
@media (max-width: 675px) {
  .privacy_secA {
    padding: 25px 0;
  }
}
.privacy_secA .cotent_privacy p {
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .privacy_secA .cotent_privacy p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}
.privacy_secA .cotent_privacy h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .privacy_secA .cotent_privacy h2 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
@media (max-width: 675px) {
  .privacy_secA .cotent_privacy h2 {
    line-height: 1.5;
  }
}

.thank-you_secA {
  padding: 75px 0;
}
@media (max-width: 675px) {
  .thank-you_secA {
    padding: 50px 0;
  }
}
.thank-you_secA .content {
  max-width: 400px;
  margin: 0 auto;
}
.thank-you_secA .content p {
  font-size: 18px;
  line-height: 28px;
}
.thank-you_secA .content p a {
  color: #57201b;
}

.distributer_secA {
  padding: 75px 0;
}
@media (max-width: 675px) {
  .distributer_secA {
    padding: 35px 0;
  }
}
.distributer_secA .flex {
  justify-content: space-between;
  padding-left: 15px;
}
@media (max-width: 675px) {
  .distributer_secA .flex {
    padding-left: 0;
  }
}
.distributer_secA .flex .col {
  flex: 0 100%;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .distributer_secA .flex .col {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .distributer_secA .flex .col img {
    width: 100%;
  }
}
.distributer_secA .flex .col:first-child {
  flex: 0 30%;
  max-width: 30%;
  width: 100%;
}
@media (max-width: 675px) {
  .distributer_secA .flex .col:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.distributer_secA .flex .col:first-child .map_wrap {
  position: relative;
  display: none;
}
@media (max-width: 991px) {
  .distributer_secA .flex .col:first-child .map_wrap {
    padding: 0 22px;
  }
}
@media (max-width: 675px) {
  .distributer_secA .flex .col:first-child .map_wrap {
    padding: 0 5px;
  }
}
.distributer_secA .flex .col:first-child .map_wrap .icon_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.distributer_secA .flex .col:first-child .map_wrap .icon_wrap .map_ico {
  position: absolute;
}
@media (max-width: 675px) {
  .distributer_secA .flex .col:first-child .map_wrap .icon_wrap .map_ico img {
    width: 10px;
  }
}
.distributer_secA .flex .col:first-child .map_wrap .icon_wrap .map_ico.m_1 {
  top: 29%;
  left: 26%;
  width: 12px;
}
.distributer_secA .flex .col:first-child .map_wrap .icon_wrap .map_ico.m_2 {
  top: 35%;
  left: 40%;
  width: 16px;
}
.distributer_secA .flex .col:first-child .map_wrap .icon_wrap .map_ico.m_3 {
  top: 39%;
  right: 15%;
  width: 15px;
}
.distributer_secA .flex .col:first-child .map_wrap .icon_wrap .map_ico.m_4 {
  top: 56%;
  left: 53%;
}
.distributer_secA .flex .col:first-child .map_wrap .icon_wrap .map_ico.m_5 {
  top: 66%;
  left: 35%;
}
.distributer_secA .flex .col:first-child .map_wrap .icon_wrap .map_ico.m_6 {
  top: 76%;
  left: 23%;
}
.distributer_secA .flex .col .select_wrap {
  margin-bottom: 30px;
}
.distributer_secA .flex .col .select_wrap .nice-select {
  float: inherit;
  margin-right: 65px;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  font-family: "tenor_sansregular";
  font-size: 25px;
  padding: 0;
  padding-bottom: 10px;
  height: 48px;
}
@media (max-width: 991px) {
  .distributer_secA .flex .col .select_wrap .nice-select {
    width: 375px;
  }
}
@media (max-width: 675px) {
  .distributer_secA .flex .col .select_wrap .nice-select {
    width: 100%;
  }
}
.distributer_secA .flex .col .select_wrap .nice-select::after {
  border-bottom: 0;
  border-right: 0;
  background: url("../icon/next.png");
  height: 22px;
  width: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}
.distributer_secA .flex .col .slide_wrap_dist {
  position: relative;
}
.distributer_secA .flex .col .slide_wrap_dist .platList ul {
  display: flex;
  flex-direction: column;
  gap: 45px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
}
.distributer_secA .flex .col .slide_wrap_dist .platList ul li {
  height: 11px;
  width: 11px;
  border-radius: 50%;
  background: none;
  border: 2px solid #000;
}
.distributer_secA .flex .col .slide_wrap_dist .platList ul li.active {
  background: #000;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 {
  overflow: hidden;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 {
  transition: 0.5s ease;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 {
  overflow: hidden;
  transition: 0.5s ease;
  flex: 0 1 33.33%;
  max-width: 33.33%;
  padding-right: 15px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 {
    flex: 0 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 675px) {
  .distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 {
    flex: 0 1 100%;
    max-width: 100%;
    padding-right: 0;
  }
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item {
  position: relative;
  height: 100%;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item:hover > figure img {
  transform: scale(1.1);
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.93) 74%);
}
@media (max-width: 675px) {
  .distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.93) 66%);
  }
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item > figure {
  overflow: hidden;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item > figure img {
  width: 100%;
  transition: 0.5s ease;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  color: #fff;
  bottom: 0;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card {
  padding: 25px;
}
@media (max-width: 675px) {
  .distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card img {
    width: auto;
  }
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card h5 {
  margin-bottom: 8px;
}
@media (max-width: 675px) {
  .distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card h5 {
    font-size: 18px;
    font-weight: bold;
  }
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 14px;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card ul li {
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 20px;
}
@media (max-width: 675px) {
  .distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card ul li {
    max-width: inherit;
  }
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card ul li figure {
  width: 15px;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card ul li:first-child {
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  align-items: baseline;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card ul li:nth-child(3) figure {
  width: 15px;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card ul li:nth-child(3) figure img {
  width: 100%;
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card ul li a {
  color: #fff;
  font-family: "dinlight";
}
.distributer_secA .flex .col .slide_wrap_dist .content_tab_state .PlatformSLide2 .slideWrap2 .warpList2 .item .loca_inf .card ul li a:hover {
  color: #ca925a;
}/*# sourceMappingURL=style.css.map */