/* [project]/public/styles/header/header.css [app-client] (css) */
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.form {
  --inputsize: 42px;
  --labelbefore: var(--text);
  --labelafter: var(--black);
  --borderbefore: var(--text);
  --borderafter: var(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 14px;
  --font: normal;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}

.form .form-group {
  --selectheight: var(--inputsize);
  flex: 0 100%;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  position: relative;
}

.form .form-group.active:after {
  width: 100%;
}

.form .form-group:before, .form .form-group:after {
  content: "";
  height: var(--borderwidth);
  transition: all .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group:before {
  background: var(--borderbefore);
}

.form .form-group:after {
  background: var(--borderafter);
  width: 0;
}

.form .form-group label {
  font-weight: var(--font);
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  background: none;
  transition: all .3s;
  position: absolute;
}

.form .form-group input, .form .form-group textarea, .form .form-group select {
  height: calc(var(--inputsize)  - var(--borderwidth));
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  border-radius: 0;
  font-family: inherit;
}

.form .form-group input:focus, .form .form-group textarea:focus, .form .form-group select:focus, .form .form-group input.valid, .form .form-group textarea.valid, .form .form-group select.valid {
  outline: none;
}

.form .form-group input.valid ~ label, .form .form-group textarea.valid ~ label, .form .form-group select.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group input:not(.no-focus):focus, .form .form-group textarea:not(.no-focus):focus, .form .form-group select:not(.no-focus):focus {
  outline: none;
}

.form .form-group input:not(.no-focus):focus ~ label, .form .form-group textarea:not(.no-focus):focus ~ label, .form .form-group select:not(.no-focus):focus ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group select option {
  color: var(--text);
}

.form .form-group select option:hover {
  color: var(--white);
  background-color: #000 !important;
}

.form .form-group textarea {
  height: var(--textareaheight);
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  border-radius: 0;
  padding-right: 15px;
  font-family: inherit;
  line-height: 1.2;
}

.form .form-group textarea::-webkit-scrollbar {
  background: none;
  width: 2px;
  height: 2px;
}

.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}

.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 15px;
}

.form .form-group textarea:focus, .form .form-group textarea.valid {
  height: calc(var(--textareaheight)  - 13px);
  outline: none;
  margin-top: 13px;
}

.form .form-group select:focus {
  outline: none;
}

.form .form-group select ~ label {
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: all .6s;
  position: absolute;
  translate: 0;
}

.form .form-group select.valid {
  color: var(--color);
}

.form .form-group select.valid ~ label {
  opacity: 1;
}

.form .form-group.file-input input[type="file"] {
  opacity: 0;
  z-index: 4;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize)  - var(--borderwidth));
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url("/assets/icon/clip-gray.svg") no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  position: relative;
}

.form .form-group.file-input .file-name:before, .form .form-group.file-input .file-name:after {
  position: absolute;
  inset: 0 0 0 3%;
}

.form .form-group.file-input .file-name:before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  text-overflow: ellipsis;
  background: none;
  width: 80%;
  overflow: hidden;
}

.form .form-group.file-input .file-name:after {
  content: "";
  background: var(--image);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
  right: 0;
}

.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.checkbox-full {
  --size: 20px;
  align-items: center;
  line-height: normal;
  display: flex;
  position: relative;
}

.checkbox-full:has(input:checked) .check-span {
  background: var(--primary);
}

.checkbox-full:has(input:checked) .check-span:before {
  opacity: 1;
}

.checkbox-full input {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.checkbox-full .check-span {
  --size: 20px;
  height: var(--size);
  width: var(--size);
  pointer-events: none;
  background: #d9d9d9;
  border-radius: 5px;
  flex: 0 auto;
  padding: 0;
  display: block;
  position: relative;
}

.checkbox-full .check-span:before {
  content: "";
  z-index: 2;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") 50% / 10px no-repeat;
  position: absolute;
  inset: 0;
}

.checkbox-full p {
  padding-left: 14px;
}

.radio-full {
  --size: 20px;
  align-items: center;
  line-height: normal;
  display: flex;
  position: relative;
}

.radio-full:has(input:checked) .check-span {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
  background: var(--primary);
}

.radio-full input {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.radio-full .check-span {
  --size: 17px;
  height: var(--size);
  width: var(--size);
  border: 1px solid var(--primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border-radius: 50%;
  flex: 0 auto;
  padding: 0;
  display: inline-block;
  position: relative;
}

.radio-full p {
  padding-left: 14px;
}

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

:root {
  --headerpadding: 12px;
  --headerheight: 90px;
  --headerfixed: 70px;
  --mobilesearchbar: 45px;
  --footerstrip: 38px;
  --filterstrip: 42px;
  --elementhover: #000;
  --primary: #fff;
  --colortext: #000;
  --red: #ff2323;
  --green: #4ea95f;
  --sucgreen: green;
  --blue: #2773e5;
  --text: #666;
  --white: #fff;
  --black: #000;
  --gray: #efefef;
  --container: 1280px;
  --containerfluid: 10px;
  --gradient-a: linear-gradient(90deg, #fff 40%, #efefef);
  --gradient-b: linear-gradient(90deg, #efefef 30%, #fff);
}

@media only screen and (width <= 991px) {
  :root {
    --headerheight: 90px;
    --headerfixed: 70px;
  }
}

@media only screen and (width <= 768px) {
  :root {
    --headerheight: 80px;
    --headerfixed: 60px;
  }
}

@media only screen and (width <= 540px) {
  :root {
    --headerheight: 70px;
    --headerfixed: 60px;
  }
}

.gray-bg {
  background-color: #efefef;
}

.sec-head {
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

@media only screen and (width <= 768px) {
  .sec-head {
    font-size: 18px;
  }
}

@media only screen and (width <= 540px) {
  .sec-head {
    font-size: 16px;
    line-height: 1.5;
  }
}

.sec-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.sec-pad {
  padding: 70px 0;
}

@media only screen and (width <= 991px) {
  .sec-pad {
    padding: 60px 0;
  }
}

@media only screen and (width <= 768px) {
  .sec-pad {
    padding: 50px 0;
  }
}

@media only screen and (width <= 540px) {
  .sec-pad {
    padding: 40px 0;
  }
}

body::-webkit-scrollbar {
  background: var(--black);
  width: 8px;
}

body::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb {
  background-color: #ccc;
}

@media only screen and (width <= 540px) {
  body {
    -webkit-tap-highlight-color: transparent;
  }
}

body.overflow-hidden {
  margin-right: 8px;
  overflow: hidden;
}

@media only screen and (width <= 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}

body.overflow-hidden header {
  width: calc(100% - 8px);
}

@media only screen and (width <= 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-optical-sizing: auto;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
}

a[href] {
  cursor: pointer;
  text-decoration: none;
  transition: all .5s;
}

a[href].logo {
  line-height: 0;
  display: block;
}

a[href]:not(.btn, .btn2) {
  color: #fff;
}

svg path {
  transition: all .5s;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

@media only screen and (width <= 1300px) {
  .container {
    padding: 0 25px;
  }
}

@media only screen and (width <= 767px) {
  .container {
    padding: 0 15px;
  }
}

@media only screen and (width <= 345px) {
  .container {
    padding: 0 13px;
  }
}

@media only screen and (width <= 320px) {
  .container {
    padding: 0 10px;
  }
}

@media only screen and (width <= 675px) {
  .container.container2 {
    padding-right: 0;
  }

  .container.container2 .heading {
    padding-right: 15px;
  }
}

@media only screen and (width <= 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}

@media only screen and (width <= 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  margin: 0 auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Le Jeune Deck;
  font-weight: normal;
}

h1 {
  text-transform: uppercase;
  font-size: 48px;
  line-height: 1.17;
}

@media only screen and (width <= 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.05;
}

h3 {
  text-transform: capitalize;
  font-size: 36px;
  line-height: 1.06;
}

.heading {
  text-align: center;
}

.heading h2 {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.282;
}

@media only screen and (width <= 991px) {
  .heading h2 {
    font-size: 26px;
  }
}

@media only screen and (width <= 768px) {
  .heading h2 {
    font-size: 24px;
  }
}

@media only screen and (width <= 540px) {
  .heading h2 {
    font-size: 20px;
  }
}

.heading.h-large h3, .heading.h-large h2 {
  font-size: 36px;
}

.heading.c-white h3, .heading.c-white h2 {
  color: var(--white);
}

.heading > p {
  margin-top: 10px;
}

.head {
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
}

@media only screen and (width <= 1024px) {
  .head {
    font-size: 70px;
  }
}

@media only screen and (width <= 991px) {
  .head {
    font-size: 60px;
  }
}

@media only screen and (width <= 768px) {
  .head {
    font-size: 40px;
  }
}

h4 {
  font-size: 36px;
  line-height: 1.28;
}

h5 {
  font-size: 24px;
  line-height: 1.25;
}

@media only screen and (width <= 1152px) {
  h5 {
    font-size: 22px;
  }
}

@media only screen and (width <= 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

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

.grid {
  display: grid;
}

.span-2 {
  grid-column: span(2);
}

.inline-flex {
  --gap: 12px;
  align-items: center;
  gap: 0 var(--gap);
  display: inline-flex;
}

img {
  max-width: 100%;
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input {
  border-radius: 0;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

button.remove, button.edit {
  text-transform: uppercase;
  font-size: 14px;
}

button.remove {
  color: var(--text);
}

.btn_wrap {
  align-items: center;
  gap: 20px;
  display: flex;
}

.tab-nav {
  cursor: default;
}

.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: #0000;
}

.tab-nav-content {
  position: relative;
}

.tab-nav-content .tabs:not(.active) {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  height: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.item-md {
  position: relative;
}

.item-md:before, .item-md:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: none;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.item-md figure, .item-md .figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.item-md figure img, .item-md figure video, .item-md .figure img, .item-md .figure video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.item-md figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md .link-md {
  z-index: 3;
  position: absolute;
  inset: 0;
}

.item-md.center-item figcaption {
  top: 50%;
  bottom: auto;
  translate: 0 -50%;
}

.testimony_col:before {
  background: linear-gradient(#0000 14%, #0009 88%);
}

.testimony_col figcaption {
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px;
  display: flex;
  bottom: 3%;
  translate: 0 3%;
}

.testimony_col figcaption .content h6, .testimony_col figcaption .content p {
  color: var(--white);
}

.testimony_col figcaption .content h6 {
  font-size: 24px;
}

@media only screen and (width <= 991px) {
  .testimony_col figcaption .content h6 {
    font-size: 22px;
  }
}

.testimony_col figcaption .content p {
  font-size: 14px;
}

.testimony_col figcaption .play-btn {
  --btnsize: 40px;
}

.product_col {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product_col.outofstock {
  pointer-events: none;
  cursor: no-drop;
}

.product_col.outofstock:before {
  content: "Out of stock";
  width: 100%;
  height: 100%;
  color: var(--white);
  z-index: 1;
  background-color: #00000021;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.product_col:hover figure img, .product_col:hover .figure img {
  transform: scale(1);
}

.product_col:hover .hoverItem {
  transform: translateY(0);
}

.product_col figure, .product_col .figure {
  width: 100%;
  height: 100%;
  max-height: 500px;
  padding: 20px 0;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.product_col figure img, .product_col .figure img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transform: scale(.9);
}

.product_col figcaption {
  padding: 0 20px 30px;
  overflow: hidden;
}

@media only screen and (width <= 540px) {
  .product_col figcaption {
    padding: 0 10px 10px;
  }
}

.product_col figcaption h6 {
  padding: 0 20px 5px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

@media only screen and (width <= 540px) {
  .product_col figcaption h6 {
    padding: 0 5px 5px;
  }
}

.product_col figcaption p {
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
}

@media only screen and (width <= 540px) {
  .product_col figcaption p {
    padding: 0 5px;
  }
}

.product_col .wislist {
  position: absolute;
  top: 3%;
  right: 5%;
  transform: translate(5%, -3%);
}

.product_col .wislist.added svg path, .product_col .wislist:hover svg path {
  fill: #000;
}

.product_col .hoverItem {
  align-items: center;
  width: 100%;
  transition: all .5s;
  display: flex;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
}

@media only screen and (width <= 540px) {
  .product_col .hoverItem {
    display: none;
    position: relative;
    transform: translateY(0);
  }
}

.product_col .hoverItem a, .product_col .hoverItem button {
  text-align: center;
  flex: 1;
  padding: 15px 10px;
  line-height: 1.2;
}

.product_col .hoverItem .enquireBtn {
  background: var(--black);
  color: var(--white);
  transition: all .5s;
}

.product_col .hoverItem .enquireBtn:hover {
  background: #3c3c3c;
}

@media only screen and (width <= 540px) {
  .product_col .hoverItem .enquireBtn {
    padding: 8px 5px;
    font-size: 12px;
  }
}

.product_col .hoverItem .viewDetails {
  background: var(--gray);
  color: var(--black);
  transition: all .5s;
}

.product_col .hoverItem .viewDetails:hover {
  background: #d9d9d9;
}

@media only screen and (width <= 540px) {
  .product_col .hoverItem .viewDetails {
    padding: 8px 5px;
    font-size: 12px;
  }
}

.category_col {
  cursor: pointer;
}

.category_col:before {
  background: linear-gradient(#0000 14%, #0009 88%);
}

.category_col:hover figure img {
  opacity: 0;
  transform: scale(1.2);
}

.category_col:hover figcaption h6, .category_col:hover figcaption p {
  opacity: 0;
}

.category_col:hover figcaption .btn_wrapper {
  transform: translateY(0);
}

.category_col figure {
  position: relative;
}

.category_col figure video {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.category_col figure img {
  transform-origin: 0 0;
  transition: all 1s;
}

.category_col figcaption {
  text-align: center;
  padding: 0 10px 20px;
  bottom: 5%;
  translate: 0 5%;
}

@media only screen and (width <= 991px) {
  .category_col figcaption {
    bottom: 2%;
    translate: 0 2%;
  }
}

@media only screen and (width <= 768px) {
  .category_col figcaption {
    bottom: 0;
    translate: 0%;
  }
}

.category_col figcaption h6, .category_col figcaption p {
  color: var(--white);
  transition: all .6s;
}

.category_col figcaption h6 {
  font-size: 24px;
}

@media only screen and (width <= 768px) {
  .category_col figcaption h6 {
    font-size: 22px;
  }
}

.category_col figcaption p {
  font-size: 14px;
}

.category_col figcaption .btn_wrapper {
  transition: all 1s;
  transform: translateY(7vw);
}

@media only screen and (width <= 768px) {
  .category_col figcaption .btn_wrapper {
    margin-top: 10px;
    transform: translateY(0);
  }
}

.overlay {
  z-index: 6;
  opacity: 0;
  cursor: pointer;
  background: #00000080;
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  inset: 0;
  transform: translateY(100%);
}

@media only screen and (width <= 991px) {
  .overlay {
    z-index: 2;
  }
}

@media only screen and (width <= 540px) {
  .overlay {
    display: none;
  }
}

.overlay.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.overlay2 {
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  background: #000000b3;
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  inset: 0;
  transform: translateY(100%);
}

@media only screen and (width <= 991px) {
  .overlay2 {
    z-index: 2;
  }
}

@media only screen and (width <= 675px) {
  .overlay2 {
    display: none;
  }
}

.overlay2.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.model {
  z-index: 7;
  background: var(--white);
  background-position: 0 80%;
  background-size: 75%;
  width: 100%;
  max-width: 435px;
  position: fixed;
  top: 0;
  bottom: 0;
}

.model .close:not(.btn) {
  position: absolute;
  top: 40px;
  right: 40px;
}

@media only screen and (width <= 520px) {
  .model .close:not(.btn) {
    top: 20px;
    right: 20px;
  }
}

.model .close:not(.btn) path {
  stroke: var(--black);
}

img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  transition: all .5s;
}

.btn {
  --padding: 10px;
  --height: 36px;
  height: var(--height);
  line-height: var(--height);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: all .5s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn:before, .btn:after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 0;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn:before {
  background-color: var(--white);
}

@media only screen and (width <= 540px) {
  .btn {
    --padding: 14px;
    font-size: 12px;
  }
}

.btn:hover {
  color: var(--black);
  padding: 0 var(--padding);
}

.btn:hover:before {
  height: 100%;
}

.btn:hover path {
  fill: var(--primary);
}

.btn.btn-large, .btn.btn-medium {
  letter-spacing: 0;
  font-size: 16px;
}

.btn.w-100 {
  width: 100%;
}

.btn.btn-large {
  --height: 52px;
  --padding: 38px;
}

.btn.btn-medium {
  --height: 45px;
  --padding: 25px;
}

.btn.btn-grad {
  background: linear-gradient(90deg, #fff, #b9b9b9);
}

.btn.btn-grad:hover {
  color: #000;
  background: linear-gradient(270deg, #fff, #fff);
}

.btn.black_fill {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn.black_fill:hover {
  color: var(--black);
  background: none;
  padding: 0;
}

.btn.gray_fill {
  color: var(--black);
  background: #d7d2d2;
  border: 1px solid #d7d2d2;
}

.btn.gray_fill:hover {
  color: var(--black);
  border-color: var(--black);
  background: none;
  padding: 0;
}

.btn.gray_border {
  color: var(--text);
  background: #fff;
  border: 1px solid #666;
  border-radius: 5px;
  padding: 0 18px;
}

.btn.gray_border:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn.black_round {
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 50px;
}

.btn.black_round path {
  fill: var(--black);
}

.btn.black_round:after {
  background-color: var(--black);
  height: 100%;
}

.btn.black_round:hover {
  color: var(--black);
  background-color: var(--white);
}

.btn.black_round:hover:after {
  height: 0;
}

.btn.black_round:hover:before {
  height: 100%;
}

.btn.black_round:hover path {
  fill: var(--white);
}

.btn.black {
  color: var(--black);
  border-bottom: 1px solid var(--black);
}

.btn.black:before {
  background-color: var(--black);
}

.btn.black:hover {
  color: var(--white);
}

.btn.black-border {
  color: var(--black);
  padding: 0 var(--padding);
  border: 1px solid #000;
}

.btn.black-border path {
  fill: var(--primary);
}

.btn.black-border:before {
  background-color: var(--black);
}

.btn.black-border:hover {
  color: var(--white);
}

.btn.black-border:hover:before {
  width: 100%;
}

.btn.black-border:hover path {
  fill: var(--white);
}

.btn2 {
  --padding: 18px;
  --height: 36px;
  letter-spacing: .1em;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  padding: 0 var(--padding);
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.btn2:hover {
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--black);
}

.btn2:hover path {
  fill: var(--black);
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item)  - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
  display: grid;
}

.form-grid .full {
  grid-column: span var(--item);
}

.banner {
  position: relative;
}

.banner:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: linear-gradient(270deg, #0000 0%, #000c 100%), linear-gradient(#0000 14%, #0009 88%);
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.banner .bg {
  height: 650px;
  line-height: 0;
}

@media only screen and (width <= 1366px) {
  .banner .bg {
    height: calc(100vh - var(--headerheight));
  }
}

.banner .bg video, .banner .bg img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .banner-wrapper {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  translate: 0 -50%;
}

.banner .banner-wrapper h1 {
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--white);
  font-family: Le Jeune Deck;
  font-size: 48px;
  line-height: 1.28;
}

.banner .banner-wrapper .content p {
  color: var(--white);
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.23;
}

@media only screen and (width <= 991px) {
  .banner .banner-wrapper .content p {
    font-size: 18px;
  }
}

@media only screen and (width <= 768px) {
  .banner .banner-wrapper .content p {
    font-size: 16px;
  }
}

.banner-banner .content h1 {
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 32px;
  line-height: 1.1875;
}

.banner-banner .content p {
  color: var(--text);
  margin-top: 18px;
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}

.swiper-nav.center-full {
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  user-select: auto;
}

.swiper-nav.group {
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
  display: flex;
}

@media only screen and (width <= 1152px) {
  .swiper-nav.group {
    gap: 0 8px;
  }
}

.swiper-nav.icon-width-auto .swiper-next svg, .swiper-nav.icon-width-auto .swiper-prev svg {
  width: auto;
  height: auto;
}

.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: .4;
}

.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.play-btn {
  --btnsize: 56px;
  --border: 2px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border: var(--border) solid var(--bordercolor);
  background: none;
  border-radius: 50%;
  position: relative;
}

@media only screen and (width <= 1024px) {
  .play-btn {
    --btnsize: 50px;
  }
}

@media only screen and (width <= 675px) {
  .play-btn {
    --btnsize: 45px;
    --border: 1px;
  }
}

.play-btn:before {
  content: "";
  background: var(--bordercolor);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 1.5s ease-out infinite pulse-border;
  display: block;
  position: absolute;
  inset: 50% 0 0 50%;
  transform: translateX(-50%)translateY(-50%);
}

@keyframes pulse-border {
  0% {
    opacity: .5;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1.5);
  }
}

.play-btn:after {
  content: "";
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.website-content > :first-child {
  margin-top: 0 !important;
}

.website-content > :last-child {
  margin-bottom: 0 !important;
}

.website-content h1, .website-content h2, .website-content h3, .website-content h4, .website-content h5, .website-content h6 {
  color: var(--black);
}

.website-content h1 {
  text-align: center;
  margin-bottom: 45px;
  font-family: Le Jeune Deck;
  font-size: 48px;
}

@media only screen and (width <= 675px) {
  .website-content h1 {
    font-size: 34px;
  }
}

@media only screen and (width <= 520px) {
  .website-content h1 {
    font-size: 30px;
  }
}

.website-content h2 {
  font-size: 34px;
}

@media only screen and (width <= 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}

.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
}

@media only screen and (width <= 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}

.website-content h4 {
  font-size: 22px;
}

@media only screen and (width <= 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}

.website-content h5 {
  font-size: 18px;
}

@media only screen and (width <= 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}

.website-content h6 {
  font-size: 18px;
}

.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}

.website-content h5, .website-content h6 {
  margin: 28px 0 18px;
}

.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-spacing: -.07em;
}

.website-content p b, .website-content li b {
  font-weight: normal;
}

.website-content a {
  color: var(--black) !important;
}

.website-content a:hover {
  text-decoration: underline;
}

.website-content p, .website-content ul {
  margin-bottom: 20px;
}

.website-content ul {
  padding-left: 18px;
}

@media only screen and (width <= 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}

.website-content ul li {
  padding-left: 28px;
  position: relative;
}

@media only screen and (width <= 675px) {
  .website-content ul li {
    padding-left: 20px;
  }
}

.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}

.website-content ul li:before {
  content: "";
  aspect-ratio: 1;
  background: var(--black);
  border-radius: 50%;
  width: 10px;
  position: absolute;
  top: 8px;
  left: 0;
}

.container-fluid.slider-section .upper-sec .slider-nav {
  right: 3%;
  transform: translate(3%, -50%);
}

@media only screen and (width <= 675px) {
  .slider-section .container {
    padding-right: 0;
  }
}

.slider-section .upper-sec {
  margin-bottom: 4rem;
  position: relative;
}

@media only screen and (width <= 991px) {
  .slider-section .upper-sec {
    margin-bottom: 3rem;
  }
}

@media only screen and (width <= 768px) {
  .slider-section .upper-sec {
    margin-bottom: 2rem;
  }
}

@media only screen and (width <= 540px) {
  .slider-section .upper-sec {
    margin-bottom: 1.5rem;
  }
}

.slider-section .upper-sec .slider-nav {
  align-items: center;
  gap: 20px;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

@media only screen and (width <= 768px) {
  .slider-section .upper-sec .slider-nav {
    display: none;
  }
}

.slider-section .upper-sec .slider-nav .swiper-prev svg, .slider-section .upper-sec .slider-nav .swiper-prev img {
  transform: scaleX(-1);
}

.slider-section .upper-sec .heading {
  text-align: center;
}

.lctn {
  color: var(--text);
  --arrow: 20px;
  --space: 5px;
  padding-left: calc(var(--arrow)  + var(--space));
  font-size: 14px;
  line-height: 1;
  position: relative;
}

.lctn:before {
  content: "";
  height: var(--arrow);
  width: var(--arrow);
  transform-origin: 100%;
  background-image: url("/assets/icon/location-gradient.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all .5s;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

.lctn.clndr {
  color: var(--white);
  --arrow: 17px;
  --space: 12px;
}

.lctn.clndr:before {
  background-image: url("/assets/icon/calender.svg");
}

.common-grid {
  grid-gap: 50px 20px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@media only screen and (width <= 991px) {
  .common-grid {
    grid-gap: 30px 18px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (width <= 675px) {
  .common-grid {
    grid-gap: 10px;
    grid-template-columns: 100%;
  }
}

.product-col {
  position: relative;
}

.product-col:before {
  content: "";
  opacity: 0;
  z-index: 1;
  background: #fff;
  width: 0;
  height: 86%;
  display: block;
  position: absolute;
  top: 7%;
  left: 0%;
  transform: skewX(-20deg);
  box-shadow: 0 0 55px 12px #fff;
}

.product-col:hover:before {
  animation: .4s linear shine;
}

.product-col .figure, .product-col figure {
  line-height: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.product-col .figure .add-to, .product-col figure .add-to {
  text-align: right;
  opacity: 0;
  justify-content: end;
  align-items: center;
  width: 100%;
  transition: all .5s;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.product-col .figure .add-to a, .product-col figure .add-to a {
  padding: 11px 20px;
  transition: all .5s;
  display: block;
}

.product-col .figure .add-to a svg, .product-col figure .add-to a svg {
  vertical-align: middle;
  width: 25px;
  height: 25px;
}

.product-col .figure .add-to a.add2cart, .product-col figure .add-to a.add2cart {
  background-color: #13195f;
}

.product-col .figure .add-to a.add2cart:hover, .product-col figure .add-to a.add2cart:hover {
  background-color: #fff;
}

.product-col .figure .add-to a.add2cart:hover svg path, .product-col figure .add-to a.add2cart:hover svg path {
  fill: var(--primary);
}

.product-col .figure .add-to a.add2wish, .product-col figure .add-to a.add2wish {
  background-color: #030735;
}

.product-col .figure .add-to a.add2wish.active, .product-col figure .add-to a.add2wish.active {
  background-color: #fff;
}

.product-col .figure .add-to a.add2wish.active svg path, .product-col figure .add-to a.add2wish.active svg path {
  fill: var(--primary);
}

.product-col .figure .add-to a.add2wish:hover, .product-col figure .add-to a.add2wish:hover {
  background-color: #fff;
}

.product-col .figure .add-to a.add2wish:hover svg path, .product-col figure .add-to a.add2wish:hover svg path {
  stroke: var(--primary);
}

.product-col .figure img, .product-col figure img {
  -o-object-position: cover;
  object-position: cover;
  -o-object-position: top;
  object-position: top;
  transform-origin: 0 0;
  width: 100%;
  transition: all .5s;
}

.product-col figcaption {
  text-align: center;
  max-width: 305px;
  margin: 0 auto;
  padding: 18px 20px 0;
}

.product-col figcaption .pro_name {
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.product-col figcaption .price {
  text-align: center;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.product-col figcaption .color-select-wrap {
  padding-bottom: 10px;
}

.product-col figcaption .color-select-wrap li {
  vertical-align: middle;
  display: inline-block;
  position: relative;
}

.product-col figcaption .color-select-wrap li:not(:last-child) {
  margin-right: 15px;
}

.product-col figcaption .color-select-wrap li:has(input:checked) span:before {
  opacity: 1;
}

.product-col figcaption .color-select-wrap li span {
  background-color: #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.product-col figcaption .color-select-wrap li span:before {
  content: "";
  opacity: 0;
  border: 1px solid #000;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  position: absolute;
  bottom: -3px;
  left: -3px;
}

.product-col figcaption .color-select-wrap li input {
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.product-col figcaption .color-select-wrap li input:checked ~ span:before, .product-col:hover .add-to {
  opacity: 1;
}

.product-col:hover .figure img, .product-col:hover figure img {
  transform: scale(1.1);
}

.product-col .wishlist-ico, .product-col-2 .wishlist-ico {
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: absolute;
  top: 13px;
  right: 10px;
}

.product-col .wishlist-ico img, .product-col .wishlist-ico svg, .product-col-2 .wishlist-ico img, .product-col-2 .wishlist-ico svg {
  width: 15px;
  height: auto;
}

.product-col .wishlist-ico:hover, .product-col .wishlist-ico.is-active, .product-col-2 .wishlist-ico:hover, .product-col-2 .wishlist-ico.is-active {
  background: var(--primary);
}

.product-col .wishlist-ico:hover img, .product-col .wishlist-ico.is-active img, .product-col-2 .wishlist-ico:hover img, .product-col-2 .wishlist-ico.is-active img {
  filter: brightness(0) saturate() invert() sepia() saturate(1%) hue-rotate(236deg) brightness(103%) contrast(101%);
}

.product-col:hover .wishlist-ico, .product-col-2:hover .wishlist-ico {
  opacity: 1;
  pointer-events: all;
}

.product-col-2, .product-col-3 {
  position: relative;
}

.product-col-2:before, .product-col-3:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: none;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.product-col-2 .figure, .product-col-2 figure, .product-col-3 .figure, .product-col-3 figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.product-col-2 .figure img, .product-col-2 figure img, .product-col-3 .figure img, .product-col-3 figure img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.product-col-2:before, .product-col-3:before {
  z-index: 1;
}

.product-col-2:hover .figure img, .product-col-2:hover figure img, .product-col-3:hover .figure img, .product-col-3:hover figure img {
  transform: scale(1.1);
}

.product-col-2 figcaption, .product-col-3 figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.product-col-2:before {
  background: linear-gradient(#0000 0%, #000c 100%);
}

.product-col-2 figcaption {
  text-align: center;
  padding: 0 2rem 46px;
}

.product-col-2 figcaption .prdt-nm, .product-col-2 figcaption .prd-price {
  color: var(--white);
  font-size: 18px;
  display: block;
}

.product-col-2 figcaption .prdt-nm {
  margin-bottom: 8px;
}

.product-col-3:before {
  background: linear-gradient(#0000 0%, #000000f2 100%);
}

.product-col-3:hover .figure img, .product-col-3:hover figure img {
  transform: scale(1.05);
}

.product-col-3 figure img, .product-col-3 .figure img {
  aspect-ratio: .9;
}

.product-col-3 figcaption {
  text-align: center;
  --btnheight: 36px;
  --titlepad: 30px;
  margin-bottom: 3.5rem;
  padding: 0 2rem;
  transition: all .5s;
}

.product-col-3 figcaption .ico {
  opacity: 0;
  margin-bottom: 20px;
  line-height: 0;
  transition: all .5s;
  transform: translateY(30px)scale(.4);
}

.product-col-3 figcaption h6 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 22px;
  line-height: 1.283;
  transition: all .6s;
}

.product-col-3 .xbjs {
  opacity: 0;
  transition: all .6s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(30px)scale(.9);
}

.product-col-3 .xbjs .btn {
  --height: var(--btnheight);
}

.product-col-3:hover {
  transform: translateY(0);
}

.product-col-3:hover figcaption .ico {
  opacity: 1;
  transform: translateY(0)scale(1);
}

.product-col-3:hover figcaption h6 {
  padding-bottom: calc(var(--btnheight)  + var(--titlepad));
}

.product-col-3:hover figcaption .xbjs {
  opacity: 1;
  transform: translateY(0)scale(1);
}

.gray-bg {
  background: var(--gray);
}

.gradient-head {
  text-transform: initial;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: var(--gradient-a);
  display: inline-block;
}

.whitetxt {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  background: var(--primary);
  border-color: var(--primary);
  border-radius: 50%;
  width: 17px;
  height: 17px;
  top: 50%;
  translate: 0 -50%;
  border: none !important;
}

.ui-state-default:focus, .ui-widget-content .ui-state-default:focus, .ui-widget-header .ui-state-default:focus, .ui-button:focus, html .ui-button.ui-state-disabled:hover:focus, html .ui-button.ui-state-disabled:active:focus {
  outline: none;
}

.ui-slider-horizontal {
  height: 2px;
  border: none !important;
}

.ui-widget-content {
  background: #cecece;
  border: none !important;
}

.ui-widget-header {
  background: var(--primary);
}

.kmr-select-wrap {
  --labelheight: 45px;
  --liheight: 34px;
  --boxsize: calc(var(--liheight)  - 14px);
  --arrowsize: 16px;
  --space: 11px;
  display: inline-block;
  position: relative;
}

.kmr-select-wrap .label {
  color: var(--black);
  height: var(--labelheight);
  line-height: var(--labelheight);
  background-image: url("/assets/icon/arrow-down-black.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize)  + var(--space));
  cursor: pointer;
  caret-color: #0000;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Lato, sans-serif;
  font-size: 12px;
}

.kmr-select-wrap.active {
  --btn: 10px;
}

.kmr-select-wrap.active.price_select .kmr-select-menu .upper-sec .reset-btn {
  display: block;
}

.kmr-select-wrap.slt-rgt .kmr-select-menu {
  left: auto;
  right: 0;
}

.kmr-select-wrap.color-select .kmr-select-menu li .in-bx {
  border-color: #ccc;
  border-radius: 50%;
}

.kmr-select-wrap.price_select .kmr-select-menu {
  width: 325px;
  padding: 20px;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec {
  display: flex;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn {
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn svg {
  vertical-align: middle;
  width: 15px;
  height: auto;
  margin-left: 3px;
  display: inline-block;
}

.kmr-select-wrap.price_select .kmr-select-menu h6 {
  color: var(--black);
  flex: 1;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.kmr-select-wrap.price_select .product-range-slider-wrap {
  margin: 30px 0 40px;
}

.kmr-select-wrap.price_select .price-range-input-wrap {
  color: var(--text);
  align-items: center;
  gap: 18px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input {
  background: var(--white);
  height: 30px;
  color: var(--text);
  border: 1px solid #e0e0e0;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input {
  width: 100%;
  color: var(--text);
  border: none;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input:focus {
  outline: none;
}

.kmr-select-wrap .kmr-select-menu {
  z-index: 1;
  background: var(--white);
  width: 260px;
  max-height: 244px;
  padding: 20px 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  overflow-y: auto;
  box-shadow: 0 2px 8px #63636333;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar {
  background: none;
  width: 6px;
  height: 6px;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-track {
  box-shadow: none;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 10px;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx {
  border-radius: 50%;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx:before {
  display: none;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]):has(input:checked) li .in-bx {
  outline: 5px solid var(--white);
  outline-offset: -10px;
}

.kmr-select-wrap .kmr-select-menu li {
  height: var(--liheight);
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  display: flex;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx {
  background: var(--black);
  transition: all .4s;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx:before {
  opacity: 1;
}

.kmr-select-wrap .kmr-select-menu li .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--black);
  border-radius: 3px;
  transition: all;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li .in-bx:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") center / 48% no-repeat;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.kmr-select-wrap .kmr-select-menu li span {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: block;
}

.kmr-select-wrap .kmr-select-menu li input {
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

@media only screen and (width <= 991px) {
  .breadcrumps {
    display: none;
  }
}

.breadcrumps li {
  vertical-align: middle;
  display: inline-block;
}

.breadcrumps li a {
  font-size: 14px;
  color: var(--text) !important;
}

@media only screen and (width <= 520px) {
  .breadcrumps li a {
    text-overflow: ellipsis;
    font-size: 12px;
  }
}

.breadcrumps li a.active {
  color: var(--black) !important;
}

.breadcrumps li:not(:last-child) {
  padding-right: 20px;
  position: relative;
}

@media only screen and (width <= 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}

.breadcrumps li:not(:last-child):before {
  content: ">";
  color: var(--text);
  font-family: monospace;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 0 -50%;
}

.breadcrumps li:not(:first-child) {
  padding-left: 20px;
}

@media only screen and (width <= 520px) {
  .breadcrumps li:not(:first-child) {
    padding-left: 8px;
  }
}

[data-scrollTo] {
  cursor: pointer;
}

.fancybox__container {
  --fancybox-bg: var(--black);
}

.green-color {
  color: var(--green) !important;
}

.light-green {
  color: var(--green);
}

.red-color {
  color: var(--red) !important;
}

.orange-color {
  color: orange !important;
}

em {
  font-style: normal;
}

.mt-hdrfxd {
  margin-top: var(--headerfixed);
}

.mt-hdr {
  margin-top: var(--headerheight);
}

.w-full {
  width: 100%;
}

.disc {
  text-align: center;
  margin: 15px 0;
}

.disc p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  transition: all .5s;
}

.disc p a {
  transition: all .5s;
  color: var(--primary) !important;
}

.disc p a:hover {
  text-decoration: underline;
}

.check_term {
  margin: 15px 0;
}

.check_term .input_box {
  --boxsize: 15px;
  gap: 10px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}

.check_term .input_box:has(input:checked) .in-bx {
  background: var(--primary);
  transition: all .4s;
}

.check_term .input_box:has(input:checked) .in-bx:before {
  opacity: 1;
}

.check_term .input_box input {
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.check_term .input_box .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--black);
  border-radius: 3px;
  transition: all;
  position: relative;
}

.check_term .input_box .in-bx:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") center / 48% no-repeat;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.check_term .input_box p {
  color: var(--text);
  flex: 1;
  font-size: 14px;
  line-height: 1;
}

.sm-block {
  display: none;
}

@media only screen and (width <= 540px) {
  .sm-block {
    display: block;
  }
}

.md-block {
  display: none;
}

@media only screen and (width <= 768px) {
  .md-block {
    display: block;
  }
}

.sm-none {
  display: block;
}

@media only screen and (width <= 540px) {
  .sm-none {
    display: none;
  }
}

.md-none {
  display: block;
}

@media only screen and (width <= 768px) {
  .md-none {
    display: none;
  }
}

.bestSeller_slider_wrapper {
  z-index: 0;
  position: relative;
}

.bestSeller_slider_wrapper .container-fluid .btn_wrapper {
  text-align: center;
  margin-top: 50px;
}

.verify {
  color: red;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
}

@keyframes scroll {
  0% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(10px);
  }
}

.display-none {
  display: none;
}

.text-black {
  color: var(--black) !important;
}

.page-not-found-container {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.page-not-found-container .not-found {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.page-not-found-container .not-found img {
  filter: grayscale();
  width: 120px;
}

.page-not-found-container .not-found h3 {
  color: var(--black);
}

.page-not-found-container .not-found p {
  color: var(--black);
  padding-bottom: 10px;
}

header {
  z-index: 6;
  height: var(--headerheight);
  transition: all .5s;
  position: fixed;
  inset: 0;
}

header:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: var(--black);
  z-index: -1;
  height: 0;
  transition: all .5s;
  position: absolute;
  inset: 0 0 auto;
}

header .header-wrapper {
  align-items: center;
  height: 100%;
  transition: all .5s;
  display: flex;
}

@media only screen and (width <= 991px) {
  header .header-wrapper {
    justify-content: space-between;
  }
}

header .header-wrapper .colA {
  flex: 0 auto;
}

header .header-wrapper .colA a {
  height: 100%;
  padding: var(--headerpadding) 0;
  display: block;
}

header .header-wrapper .colA a img {
  height: 100%;
}

header .header-wrapper .colB {
  flex: 1;
  height: 100%;
}

@media only screen and (width <= 991px) {
  header .header-wrapper .colB {
    display: none;
  }
}

header .header-wrapper .colB .navlist {
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 100%;
  display: flex;
}

@media only screen and (width <= 1300px) {
  header .header-wrapper .colB .navlist {
    gap: 20px;
  }
}

header .header-wrapper .colB .navlist a {
  font-size: 14px;
}

header .header-wrapper .colB .navlist li {
  align-items: center;
  height: 100%;
  display: flex;
}

header .header-wrapper .colB .navlist li.hasDropdown {
  position: relative;
}

header .header-wrapper .colB .navlist li.hasDropdown:last-child .dropdown-menu {
  left: -100%;
}

header .header-wrapper .colB .navlist li.hasDropdown:last-child .dropdown-menu:before {
  left: 20%;
  translate: -20%;
}

header .header-wrapper .colB .navlist li.hasDropdown.active .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu {
  background: var(--white);
  transform-origin: top;
  opacity: 0;
  z-index: 5;
  width: 100%;
  min-width: 500px;
  transition: all .4s;
  position: absolute;
  top: 100%;
  left: 0%;
  transform: perspective(2000px)translate3d(0, 0, 50px)rotateX(-90deg)scale3d(.86, .75, 1)translateY(50px);
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu:before {
  content: "";
  z-index: 4;
  background: #fff;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  bottom: calc(100% - 7.5px);
  left: 5%;
  transform: rotate(45deg);
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap {
  --rightwidth: 45%;
  --ulpadding: 25px 15px 20px 30px;
  width: 100%;
  height: 300px;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colA-md {
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: auto;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colA-md::-webkit-scrollbar {
  background: var(--white);
  width: 2px;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colA-md::-webkit-scrollbar-track {
  box-shadow: none;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colA-md::-webkit-scrollbar-thumb {
  background-color: #000;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul {
  padding: var(--ulpadding);
  overflow-y: auto;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul .subcat-li {
  transition: all .5s;
  position: relative;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul .subcat-li:hover {
  padding-left: 15px;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul .subcat-li:hover:before {
  opacity: 1;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul .subcat-li:before {
  content: "";
  opacity: 0;
  background: url("/assets/icon/next-black.svg") 0 0 / contain no-repeat;
  width: 13px;
  height: 13px;
  transition: all .5s;
  position: absolute;
  top: 40%;
  left: 0;
  translate: 0 -40%;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul .subcat-li a {
  color: var(--text);
  padding-bottom: 7px;
  display: block;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colA-md .subcat-ul .subcat-li a:hover {
  color: var(--black);
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colB-md {
  flex: 0 1 var(--rightwidth);
  width: 100%;
  height: 100%;
}

header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colB-md video, header .header-wrapper .colB .navlist li.hasDropdown .dropdown-menu .dropdown-menu-wrap .colB-md img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

header .header-wrapper .colC {
  flex: 0 auto;
}

header .header-wrapper .colC .call_action {
  align-items: center;
  gap: 25px;
  display: flex;
}

@media only screen and (width <= 1300px) {
  header .header-wrapper .colC .call_action {
    gap: 15px;
  }
}

@media only screen and (width <= 540px) {
  header .header-wrapper .colC .call_action {
    gap: 25px;
  }
}

header .header-wrapper .colC .call_action .myAccount {
  position: relative;
}

header .header-wrapper .colC .call_action .myAccount:hover .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

header .header-wrapper .colC .call_action .myAccount .dropdown-menu {
  transform-origin: top;
  opacity: 0;
  transition: all .5s;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: perspective(2000px)translate3d(0, 0, 50px)rotateX(-90deg)scale3d(.86, .75, 1)translateY(50px);
}

header .header-wrapper .colC .call_action .myAccount .dropdown-menu ul {
  background: var(--white);
  border-radius: 5px;
  padding: 10px 15px;
  position: relative;
  box-shadow: 0 3px 8px #0000003d;
}

header .header-wrapper .colC .call_action .myAccount .dropdown-menu ul:before {
  content: "";
  border-bottom: 20px solid #fff;
  border-left: 15px solid #0000;
  border-right: 15px solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: -9px;
  left: 50%;
  translate: -50%;
}

header .header-wrapper .colC .call_action .myAccount .dropdown-menu ul li {
  vertical-align: middle;
  white-space: nowrap;
  display: block;
}

header .header-wrapper .colC .call_action .myAccount .dropdown-menu ul li a {
  color: var(--black);
  padding: 5px 0;
  font-size: 14px;
  line-height: 1.2;
  display: block;
}

header .header-wrapper .colC .call_action .myAccount .dropdown-menu ul li a:hover {
  color: var(--text);
}

header .header-wrapper .colC .call_action .ham_btn {
  width: 100%;
}

header .header-wrapper .colC .call_action .ham_btn span {
  background-color: var(--white);
  width: 35px;
  height: 1px;
  transition: all .5s;
  display: block;
}

header .header-wrapper .colC .call_action .ham_btn span:not(:last-child) {
  margin-bottom: 7px;
}

header .header-wrapper .colC .call_action li:has(.dot-noti) {
  position: relative;
}

header .header-wrapper .colC .call_action li:has(.dot-noti) span {
  background: var(--white);
  width: 18px;
  height: 18px;
  color: var(--black);
  pointer-events: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  display: flex;
  position: absolute;
  top: -8px;
  right: -8px;
}

@media only screen and (width <= 991px) {
  header.header-fixed {
    box-shadow: 0 2px 8px #63636333;
  }
}

header.header-fixed, header.header-fit, header.header-fill {
  height: var(--headerfixed);
  transition: all .5s;
}

header.header-fixed:after, header.header-fit:after, header.header-fill:after {
  height: 100%;
}

header.header-fit {
  transition: all .5s;
}

header.header-fit:after {
  height: 100%;
}

header.header-fit .header-container .colA .logo {
  transition: none !important;
}

header.header-shadow {
  box-shadow: 0 2px 8px #63636333;
}

.product-size-pop {
  max-width: 933px;
  transition: all .5s;
  right: 0;
  transform: translateX(100%);
}

.product-size-pop.is-open {
  transform: translateX(0%);
}

.product-size-pop .model-body {
  height: 100%;
  padding: 56px 41px;
  overflow-y: auto;
}

.product-size-pop .model-body::-webkit-scrollbar {
  background: none;
  width: 6px;
  height: 6px;
}

.product-size-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}

.product-size-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #0000004d;
  border-radius: 10px;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body {
    padding: 51px 10px 30px;
  }
}

.product-size-pop .model-body .upper-sopku {
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .upper-sopku {
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
  }
}

.product-size-pop .model-body .upper-sopku figure {
  width: 107px;
  line-height: 0;
}

.product-size-pop .model-body .upper-sopku figure img {
  width: 100%;
}

.product-size-pop .model-body .upper-sopku figcaption {
  flex: 1;
  padding-left: 34px;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .upper-sopku figcaption {
    padding-left: 0;
  }
}

.product-size-pop .model-body .upper-sopku figcaption .title-lctpr {
  color: var(--black);
  max-width: 407px;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.2;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .upper-sopku figcaption .title-lctpr {
    margin-bottom: 5px;
    font-size: 16px;
  }
}

.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz li {
  vertical-align: middle;
  display: inline-block;
}

.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz li:not(:last-child) {
  margin-right: 25px;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz li:not(:last-child) {
    margin-right: 6px;
  }
}

.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .price-bbjvz {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .price-bbjvz {
    font-size: 16px;
  }
}

.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .price-bbjvz.mrp {
  color: #666;
  text-decoration: line-through;
}

.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .price-fvyrq {
  color: #666;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .price-fvyrq {
    font-size: 16px;
  }
}

.product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .discount-lsirg {
  color: var(--colortext);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .upper-sopku figcaption .price-btm-bbjvz .discount-lsirg {
    font-size: 14px;
  }
}

.product-size-pop .model-body .upper-sopku .region {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
}

.product-size-pop .model-body .upper-sopku .region label {
  position: relative;
}

.product-size-pop .model-body .upper-sopku .region label:before {
  content: "";
  background-image: url("/assets/icon/globe.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 2px;
  left: -23px;
}

.product-size-pop .model-body .upper-sopku .region .custom-select {
  width: 60px;
}

.product-size-pop .model-body .upper-sopku .region .custom-select .current {
  text-align: center;
}

.product-size-pop .model-body .upper-sopku .region .custom-select .list {
  border-radius: 0;
}

.product-size-pop .model-body .upper-sopku .region .custom-select .list li {
  padding: 8px 16px;
}

.product-size-pop .model-body .drsgu-tab-nav {
  margin-bottom: 28px;
  display: flex;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .drsgu-tab-nav {
    margin-bottom: 20px;
  }
}

.product-size-pop .model-body .drsgu-tab-nav li {
  color: var(--text);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  border-bottom: 2px solid #e1dce1;
  flex: 1;
  padding: 10px;
  font-size: 18px;
  line-height: 1.2;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .drsgu-tab-nav li {
    letter-spacing: 2px;
    padding: 5px;
    font-size: 11px;
  }
}

.product-size-pop .model-body .drsgu-tab-nav li.active {
  color: var(--colortext);
  border-color: var(--colortext);
}

.product-size-pop .model-body .drsgu-tab-nav-content {
  margin-bottom: 50px;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .drsgu-tab-nav-content {
    margin-bottom: 10px;
  }
}

@media only screen and (width <= 768px) {
  .product-size-pop .model-body .drsgu-tab-nav-content .table-div {
    overflow-x: auto;
  }
}

.product-size-pop .model-body .drsgu-tab-nav-content .table-div table {
  border-spacing: 0;
  border: 0;
  width: 100%;
}

.product-size-pop .model-body .drsgu-tab-nav-content .table-div table th, .product-size-pop .model-body .drsgu-tab-nav-content .table-div table td {
  padding: 10px;
}

.product-size-pop .model-body .drsgu-tab-nav-content .table-div table th {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: #f1f1f1;
  font-size: 12px;
  font-weight: 200;
}

.product-size-pop .model-body .drsgu-tab-nav-content .table-div table td {
  color: var(--text);
  text-align: center;
  font-size: 14px;
}

.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr {
  position: relative;
}

.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr:has(input:checked) td {
  color: var(--black);
}

.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr:has(input:checked) td .check-dot {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
}

.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr td {
  border-bottom: 1px solid #e7e7e8;
}

.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr td .check-dot {
  --size: 17px;
  height: var(--size);
  width: var(--size);
  border: 1px solid var(--primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border-radius: 50%;
  padding: 0;
  display: inline-block;
  position: relative;
}

.product-size-pop .model-body .drsgu-tab-nav-content .table-div table tbody tr input {
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.product-size-pop .model-body .drsgu-tab-nav-content .size-chart-img {
  margin: 0 auto;
  display: block;
}

.product-size-pop .model-body .drsgu-tab-nav-content .measure-div {
  grid-gap: 30px;
  grid-template-columns: .7fr 1fr;
  width: 100%;
  display: grid;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .drsgu-tab-nav-content .measure-div {
    grid-template-columns: repeat(1, 1fr);
  }
}

.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colA {
  width: 100%;
}

.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colA .apparel-layout {
  width: 100%;
  margin-bottom: 20px;
}

.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colA .item-md figcaption {
  top: 50%;
  left: 50%;
  bottom: unset;
  right: unset;
  translate: -50% -50%;
}

.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colB p {
  color: var(--text);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.2;
}

.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colB p.discl {
  color: var(--black);
  margin-bottom: 30px;
}

.product-size-pop .model-body .drsgu-tab-nav-content .measure-div .colB h3 {
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 15px;
  font-family: Le Jeune Deck;
  font-size: 16px;
  line-height: 1.2;
}

.product-size-pop .model-body .btn-wrap-wvguf {
  gap: 30px;
  margin-top: 50px;
  display: none;
}

@media only screen and (width <= 540px) {
  .product-size-pop .model-body .btn-wrap-wvguf {
    gap: 20px;
    margin-top: 30px;
  }

  .product-size-pop .model-body .btn-wrap-wvguf span {
    font-size: 12px;
  }
}

.product-size-pop .model-body .btn-wrap-wvguf > * {
  flex: 1;
}

.login-pop.model, .signUp-pop.model {
  background: var(--white);
  background: var(--white);
  max-width: 550px;
  transition: all .7s;
  right: 0;
  transform: translateX(100%);
}

.login-pop.model.is-open, .signUp-pop.model.is-open {
  transform: translateX(0%);
}

.login-pop.model .close, .signUp-pop.model .close {
  top: 25px;
  right: 25px;
}

@media only screen and (width <= 675px) {
  .login-pop.model .close, .signUp-pop.model .close {
    top: 20px;
    right: 20px;
  }
}

.login-pop.model .close path, .signUp-pop.model .close path {
  stroke: var(--black);
}

.login-pop.model .model-body, .signUp-pop.model .model-body {
  height: calc(100% - 40px);
  margin-top: 40px;
  padding: 0 70px 50px;
  overflow-y: auto;
}

.login-pop.model .model-body::-webkit-scrollbar, .signUp-pop.model .model-body::-webkit-scrollbar {
  background: none;
  width: 6px;
  height: 6px;
}

.login-pop.model .model-body::-webkit-scrollbar-track, .signUp-pop.model .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}

.login-pop.model .model-body::-webkit-scrollbar-thumb, .signUp-pop.model .model-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 25px;
}

@media only screen and (width <= 675px) {
  .login-pop.model .model-body, .signUp-pop.model .model-body {
    padding: 40px 25px 50px;
  }
}

.login-pop.model .model-body .title, .signUp-pop.model .model-body .title {
  margin-bottom: 2.5rem;
}

.login-pop.model .model-body .title .icon, .signUp-pop.model .model-body .title .icon {
  width: 70px;
  margin: 0 auto 10px;
  line-height: 0;
}

.login-pop.model .model-body .title .icon svg path, .signUp-pop.model .model-body .title .icon svg path {
  fill: #000;
}

.login-pop.model .model-body .title .icon img, .signUp-pop.model .model-body .title .icon img {
  width: 100%;
}

.login-pop.model .model-body .title h2, .signUp-pop.model .model-body .title h2 {
  text-align: center;
  color: var(--black);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.282;
}

.login-pop.model .model-body .form, .signUp-pop.model .model-body .form {
  --gaptb: 30px;
}

.login-pop.model .model-body .form .verify, .signUp-pop.model .model-body .form .verify {
  color: red;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
}

.login-pop.model .model-body .form .forget_pass, .signUp-pop.model .model-body .form .forget_pass {
  text-align: end;
  color: var(--text);
}

.login-pop.model .model-body .form .resend_code .upper_resend, .signUp-pop.model .model-body .form .resend_code .upper_resend {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.login-pop.model .model-body .form .resend_code .upper_resend p, .signUp-pop.model .model-body .form .resend_code .upper_resend p {
  color: var(--text);
}

.login-pop.model .model-body .form .resend_code .upper_resend .resend, .signUp-pop.model .model-body .form .resend_code .upper_resend .resend {
  font-size: 14px;
  text-decoration: underline;
}

.login-pop.model .model-body .form .resend_code .otp_verify, .signUp-pop.model .model-body .form .resend_code .otp_verify {
  flex-wrap: wrap;
  gap: 0 21px;
  margin: 30px auto 0;
  display: flex;
  position: relative;
}

.login-pop.model .model-body .form .resend_code .otp_verify .verify, .signUp-pop.model .model-body .form .resend_code .otp_verify .verify {
  left: 50%;
  transform: translateX(-50%);
}

.login-pop.model .model-body .form .resend_code .otp_verify input, .signUp-pop.model .model-body .form .resend_code .otp_verify input {
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  flex: 1;
  width: 100%;
  height: 40px;
  font-weight: 500;
}

.login-pop.model .model-body .form .resend_code .otp_verify input:focus, .signUp-pop.model .model-body .form .resend_code .otp_verify input:focus {
  outline: none;
}

.login-pop.model .model-body .form .resend_code .otp_verify .verify_btn, .signUp-pop.model .model-body .form .resend_code .otp_verify .verify_btn {
  background: #d5d4d4;
  border: 1px solid #c5c4c4;
  border-radius: 5px;
  flex: 1;
  width: 100%;
  height: 40px;
  transition: all .5s;
}

.login-pop.model .model-body .form .resend_code .otp_verify .verify_btn:hover, .signUp-pop.model .model-body .form .resend_code .otp_verify .verify_btn:hover {
  background: var(--white);
  border-color: var(--black);
}

.login-pop.model .model-body .sbmt-btn-div, .signUp-pop.model .model-body .sbmt-btn-div {
  text-align: center;
  margin: 10px 0 20px;
}

.login-pop.model .model-body .sbmt-btn-div .btn, .signUp-pop.model .model-body .sbmt-btn-div .btn {
  --height: 40px;
  width: 100%;
}

.login-pop.model .model-body .split-sec, .signUp-pop.model .model-body .split-sec {
  overflow: hidden;
}

.login-pop.model .model-body .split-sec p, .signUp-pop.model .model-body .split-sec p {
  text-align: center;
  width: fit-content;
  color: var(--text);
  margin: 0 auto;
  font-weight: 500;
  position: relative;
}

.login-pop.model .model-body .split-sec p:before, .login-pop.model .model-body .split-sec p:after, .signUp-pop.model .model-body .split-sec p:before, .signUp-pop.model .model-body .split-sec p:after {
  content: "";
  background: #ececec;
  width: 200px;
  height: 1px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}

.login-pop.model .model-body .split-sec p:before, .signUp-pop.model .model-body .split-sec p:before {
  left: calc(100% + 12px);
}

.login-pop.model .model-body .split-sec p:after, .signUp-pop.model .model-body .split-sec p:after {
  right: calc(100% + 12px);
}

.login-pop.model .model-body .btm-social-wrp, .signUp-pop.model .model-body .btm-social-wrp {
  align-items: center;
  gap: 0 30px;
  margin: 40px 0;
  display: flex;
}

.login-pop.model .model-body .btm-social-wrp > *, .signUp-pop.model .model-body .btm-social-wrp > * {
  flex: 1;
}

.login-pop.model .model-body .btm-social-wrp svg, .signUp-pop.model .model-body .btm-social-wrp svg {
  width: auto;
}

.login-pop.model .model-body .btm-social-wrp .google-btn, .login-pop.model .model-body .btm-social-wrp .facebook-btn, .signUp-pop.model .model-body .btm-social-wrp .google-btn, .signUp-pop.model .model-body .btm-social-wrp .facebook-btn {
  color: var(--text);
  border: 1px solid #d1d1d1;
}

.login-pop.model .model-body .btm-social-wrp .google-btn:before, .login-pop.model .model-body .btm-social-wrp .facebook-btn:before, .signUp-pop.model .model-body .btm-social-wrp .google-btn:before, .signUp-pop.model .model-body .btm-social-wrp .facebook-btn:before {
  background-color: #000;
}

.login-pop.model .model-body .btm-social-wrp .google-btn:hover, .login-pop.model .model-body .btm-social-wrp .facebook-btn:hover, .signUp-pop.model .model-body .btm-social-wrp .google-btn:hover, .signUp-pop.model .model-body .btm-social-wrp .facebook-btn:hover {
  color: var(--white);
  padding: 0;
}

.login-pop.model .model-body .non_member, .signUp-pop.model .model-body .non_member {
  text-align: center;
  color: var(--text);
}

.login-pop.model .model-body .non_member .signup, .signUp-pop.model .model-body .non_member .signup {
  color: var(--black);
}

.model.ham-pop {
  z-index: 10;
  max-width: 480px;
  transition: all .5s;
  right: 0;
  transform: translateX(100%);
}

.model.ham-pop:before {
  content: "";
  opacity: .04;
  background: url("/assets/icon/ub_grad.svg") 100% 100% / 50% 30% no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.model.ham-pop.is-open {
  transform: translateX(0%);
}

.model.ham-pop .close {
  top: 17px;
  right: 22px;
}

.model.ham-pop .close svg {
  width: 18px;
}

.model.ham-pop .close svg path {
  stroke: var(--black) !important;
  stroke-width: 2px !important;
}

.model.ham-pop .model-body {
  flex-direction: column;
  height: calc(100% - 40px);
  margin-top: 40px;
  padding: 0 40px 30px;
  display: flex;
  position: relative;
  overflow-y: auto;
}

.model.ham-pop .model-body::-webkit-scrollbar {
  background: var(--black);
  width: 0;
  height: 0;
}

.model.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}

.model.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0;
}

@media only screen and (width <= 540px) {
  .model.ham-pop .model-body {
    padding: 0 20px 40px;
  }
}

.model.ham-pop .model-body .icon {
  letter-spacing: 4px;
  color: #000;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-family: Le Jeune Deck;
  font-size: 30px;
  font-weight: 600;
  line-height: 0;
  display: flex;
}

.model.ham-pop .model-body .icon img, .model.ham-pop .model-body .icon svg {
  width: 70px;
  height: auto;
}

.model.ham-pop .model-body .icon img path, .model.ham-pop .model-body .icon svg path {
  fill: #000;
}

.model.ham-pop .model-body .nav-list {
  width: 100%;
}

.model.ham-pop .model-body .nav-list > li {
  cursor: pointer;
}

.model.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 15px;
}

.model.ham-pop .model-body .nav-list > li.desktop-non {
  display: none;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown {
  position: relative;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown:hover .title h5 {
  color: #666;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title.active img {
  transform: rotate(90deg);
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title h5 {
  color: #000;
  font-family: Lato, sans-serif;
  font-size: 22px;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title .arrow {
  -o-object-fit: contain;
  object-fit: contain;
  width: 15px;
  height: 15px;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .title svg {
  width: 16px;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham {
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  transition: all .5s;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham.active {
  opacity: 1;
  pointer-events: auto;
  max-height: 300px;
  padding-top: 10px;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul {
  max-height: 175px;
  padding: 0 10px 10px;
  overflow-y: auto;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul::-webkit-scrollbar {
  background: #fff;
  width: 4px;
  height: 4px;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul::-webkit-scrollbar-track {
  box-shadow: none;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 4px;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul li:first-child a {
  padding-top: 0;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul li a {
  color: #666;
  padding: 5px 0;
  font-size: 16px;
  transition: all .5s;
  display: block;
}

.model.ham-pop .model-body .nav-list > li.hamDropdown .dropdown-menu-ham ul li a:hover {
  color: #000;
}

.model.ham-pop .model-body .nav-list > li > a {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.06;
  display: inline-block;
}

.model.ham-pop .model-body .nav-list > li > a:hover {
  color: #666;
}

.model.ham-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1rem;
  display: flex;
}

.model.ham-pop .model-body .bottom-list .social-icons a {
  vertical-align: middle;
  color: #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  line-height: 0;
  display: inline-flex;
  overflow: hidden;
}

.model.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 4px;
}

.model.ham-pop .model-body .bottom-list .social-icons a:hover img {
  opacity: .5;
  transform: scale(1.1);
}

.model.ham-pop .model-body .bottom-list .social-icons a img {
  filter: invert();
  width: 24px;
  height: 24px;
  transition: all .5s;
}

.message-pop.model {
  top: calc(var(--headerheight)  + 12px);
  background: var(--primary);
  z-index: 7;
  border-radius: 5px;
  padding: 8px 15px;
  position: fixed;
  right: 30px;
  box-shadow: 0 2px 8px #63636333;
}

.message-pop.model * {
  color: var(--white);
}

.model-full {
  pointer-events: none;
  background: none;
  align-items: center;
  width: 100%;
  max-width: 100%;
  transition: all .5s;
  display: flex;
  left: 0;
  right: 0;
  overflow: hidden;
  transform: translateY(100%);
}

.model-full.is-open {
  transform: translateY(0%);
}

.model-full .dialog-wrapper {
  background: var(--white);
  pointer-events: all;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.model-full .dialog-wrapper .title {
  color: var(--black);
  border-bottom: 1px solid #e7e7e7;
  padding: 8px 20px;
  font-size: 20px;
  font-weight: 600;
}

.model-full .dialog-wrapper .title:has(.close) {
  position: relative;
}

.model-full .dialog-wrapper .title .close {
  z-index: 2;
  line-height: 0;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}

.model-full .dialog-wrapper .title .close svg {
  width: 20px;
  height: auto;
}

.model-full .dialog-wrapper .title .close path {
  stroke: var(--black);
}

.model-full .dialog-wrapper .content {
  padding: 12px 20px;
}

.model-full.cancel-order-pop .dialog-wrapper {
  max-width: 540px;
}

.model-full.cancel-order-pop .dialog-wrapper .close {
  top: 28px;
  right: 18px;
}

.model-full.cancel-order-pop .dialog-wrapper .close svg {
  width: 18px;
}

.model-full.cancel-order-pop .dialog-wrapper .model-body {
  padding: 35px 30px 55px;
}

.model-full.cancel-order-pop .dialog-wrapper .model-body .ksxif {
  margin-bottom: 50px;
}

.model-full.cancel-order-pop .dialog-wrapper .model-body .ksxif h4 {
  color: var(--black);
  font-size: 20px;
  line-height: 24px;
}

.model-full.cancel-order-pop .dialog-wrapper .model-body .form {
  --gaptb: 18px;
}

.model-full.add-address-pop .dialog-wrapper {
  max-width: 470px;
}

.model-full.add-address-pop .close {
  top: 28px;
  right: 18px;
}

.model-full.add-address-pop .model-body {
  padding: 36px 38px 60px;
}

@media only screen and (width <= 1366px) {
  .model-full.add-address-pop .model-body {
    max-height: 530px;
    overflow-y: auto;
  }

  .model-full.add-address-pop .model-body::-webkit-scrollbar {
    background: none;
    width: 6px;
    height: 6px;
  }

  .model-full.add-address-pop .model-body::-webkit-scrollbar-track {
    box-shadow: none;
  }

  .model-full.add-address-pop .model-body::-webkit-scrollbar-thumb {
    background-color: #0000004d;
    border-radius: 10px;
  }
}

.model-full.add-address-pop .model-body .pilce {
  gap: 1rem;
  margin-bottom: 50px;
  display: flex;
}

.model-full.add-address-pop .model-body .pilce h4 {
  letter-spacing: .2em;
  text-transform: uppercase;
  flex: 1;
  font-family: Lato, sans-serif;
  font-size: 20px;
  line-height: 25.64px;
}

.model-full.add-address-pop .model-body .pilce .close svg {
  width: 18px;
}

.model-full.add-address-pop .model-body .form {
  --item: 2;
  --borderbefore: var(--text);
  --gaptb: 16px;
  --gaplr: 16px;
  --labelfontbefore: 14px;
  --labelfontafter: 12px;
}

.model-full.add-address-pop .model-body .form .label-tzooz {
  color: var(--black);
}

.model-full.add-address-pop .model-body .form .chckbx-tkfrb {
  margin-top: 12px;
}

.model-full.add-address-pop .model-body .form .chckbx-tkfrb p {
  font-size: var(--labelfontbefore);
}

.model-full.add-address-pop .model-body .form .btn-grp {
  margin-top: 20px;
}

.video-pop.model {
  z-index: 9;
  background: #0000007a;
  max-width: 100%;
  transition: all .5s;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.video-pop.model.is-open {
  transform: translateY(0%);
}

.video-pop.model .close-video {
  background: var(--black);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: calc(100% + 20px);
  right: -40px;
}

@media only screen and (width <= 675px) {
  .video-pop.model .close-video {
    right: 0;
  }
}

.video-pop.model .close-video:hover {
  background: var(--black);
}

.video-pop.model .close-video svg {
  width: 35%;
  height: 35%;
}

.video-pop.model .close-video path {
  stroke-width: 2px;
  stroke: var(--white);
}

.video-pop.model .model-body {
  width: 100%;
  max-width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

@media only screen and (width <= 675px) {
  .video-pop.model .model-body {
    max-width: 95%;
  }
}

.video-pop.model .model-body iframe {
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
  width: 100%;
}

.tdur-search-pop.model {
  z-index: 9;
  background: var(--white);
  --searchstrip: 70px;
  max-width: 100%;
  height: 100%;
  transition: all .5s;
  left: 0;
  right: 0;
  transform: translateY(100%)scale(.8);
}

.tdur-search-pop.model.is-open {
  transform: translateY(0)scale(1);
}

.tdur-search-pop.model .upper-strip-search {
  border-bottom: 1px solid #ccc;
}

.tdur-search-pop.model .upper-strip-search .form-group-search {
  height: var(--searchstrip);
  align-items: center;
  gap: 20px;
  display: flex;
}

.tdur-search-pop.model .upper-strip-search .form-group-search input {
  border: none;
  flex: 1;
  font-size: 20px;
}

.tdur-search-pop.model .upper-strip-search .form-group-search input:focus {
  outline: none;
}

.tdur-search-pop.model .upper-strip-search .form-group-search input::-moz-placeholder {
  text-transform: uppercase;
  letter-spacing: .05em;
}

.tdur-search-pop.model .upper-strip-search .form-group-search input::placeholder {
  text-transform: uppercase;
  letter-spacing: .05em;
}

.tdur-search-pop.model .upper-strip-search .form-group-search .close-search-whktk, .tdur-search-pop.model .upper-strip-search .form-group-search .ico {
  width: 30px;
  line-height: 0;
}

@media only screen and (width <= 540px) {
  .tdur-search-pop.model .upper-strip-search .form-group-search .close-search-whktk, .tdur-search-pop.model .upper-strip-search .form-group-search .ico {
    width: 20px;
  }
}

.tdur-search-pop.model .upper-strip-search .form-group-search .close-search-whktk svg, .tdur-search-pop.model .upper-strip-search .form-group-search .ico svg {
  width: 100%;
  height: auto;
}

.tdur-search-pop.model .upper-strip-search .form-group-search .close-search-whktk {
  position: unset;
}

.tdur-search-pop.model .secsrch-moxqj {
  min-height: calc(100% - var(--searchstrip));
  max-height: calc(100% - var(--searchstrip));
  padding: 5rem 0;
  overflow-y: auto;
}

.tdur-search-pop.model .secsrch-moxqj::-webkit-scrollbar {
  background: none;
  width: 6px;
  height: 6px;
}

.tdur-search-pop.model .secsrch-moxqj::-webkit-scrollbar-track {
  box-shadow: none;
}

.tdur-search-pop.model .secsrch-moxqj::-webkit-scrollbar-thumb {
  background-color: #0000004d;
  border-radius: 0;
}

@media only screen and (width <= 991px) {
  .tdur-search-pop.model .secsrch-moxqj {
    padding: 4rem 0;
  }
}

@media only screen and (width <= 768px) {
  .tdur-search-pop.model .secsrch-moxqj {
    padding: 3rem 0;
  }
}

@media only screen and (width <= 540px) {
  .tdur-search-pop.model .secsrch-moxqj {
    padding: 2rem 0;
  }
}

.tdur-search-pop.model .secsrch-moxqj .secsrch-cjrvs-sec {
  height: 100%;
}

.tdur-search-pop.model .secsrch-moxqj .secsrch-cjrvs-sec .upper-sec .heading h3 {
  color: #000;
  font-weight: 500;
}

.tdur-search-pop.model .secsrch-moxqj .search-result-prdct-wrap .search-result-prdct {
  grid-gap: 40px 20px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@media only screen and (width <= 768px) {
  .tdur-search-pop.model .secsrch-moxqj .search-result-prdct-wrap .search-result-prdct {
    grid-gap: 30px 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (width <= 350px) {
  .tdur-search-pop.model .secsrch-moxqj .search-result-prdct-wrap .search-result-prdct {
    grid-template-columns: repeat(1, 1fr);
  }
}

.tdur-search-pop.model .secsrch-moxqj .search-result-prdct-wrap .search-result-prdct .product-col figcaption a {
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.tdur-search-pop.model .secsrch-moxqj .search-result-prdct-wrap .search-result-prdct .product-col figcaption p.prd-price {
  text-align: center;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

div:has( > .product-not-found) {
  position: relative;
}

.product-not-found {
  z-index: 1;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.product-not-found.not-found2 {
  position: relative;
}

.product-not-found .nt-fnd-wrp {
  text-align: center;
}

.product-not-found .nt-fnd-wrp .ico {
  filter: grayscale();
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}

.product-not-found .nt-fnd-wrp p {
  margin: 10px 0 3rem;
  font-family: Lato, sans-serif;
  font-size: 24px;
}

.enquire-pop.model {
  background: #fff;
  transition: all .5s;
  right: 0;
  transform: translateX(100%);
}

.enquire-pop.model.is-open {
  transform: translateX(0%);
}

.enquire-pop.model .model-body {
  height: calc(100% - 40px);
  margin-top: 40px;
  padding: 0 35px 30px;
  overflow-y: auto;
}

.enquire-pop.model .model-body::-webkit-scrollbar {
  background: var(--white);
  width: 3px;
  height: 3px;
}

.enquire-pop.model .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}

.enquire-pop.model .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}

.enquire-pop.model .model-body .title {
  text-align: center;
  margin-bottom: 1rem;
}

.enquire-pop.model .model-body .title .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
}

.enquire-pop.model .model-body .title .icon img {
  -o-object-fit: contain;
  object-fit: contain;
}

.enquire-pop.model .model-body .title h2 {
  color: var(--black);
  letter-spacing: 2px;
  font-size: 24px;
  font-weight: 500;
}

.enquire-pop.model .model-body .title p {
  color: var(--text);
  max-width: 340px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.2;
}

@media only screen and (width <= 675px) {
  .enquire-pop.model .model-body .title p {
    max-width: 300px;
    font-size: 14px;
  }
}

.enquire-pop.model .model-body .form {
  --gaptb: 15px;
  --item: 1;
  --labelbefore: var(--text);
  --labelafter: #000;
  --borderbefore: var(--text);
  --borderafter: #000;
}

.enquire-pop.model .model-body .btn {
  --height: 40px;
  width: 100%;
  height: 40px;
  margin: 15px auto 0;
}


/* [project]/public/styles/footer/footer.css [app-client] (css) */
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.form {
  --inputsize: 42px;
  --labelbefore: var(--text);
  --labelafter: var(--black);
  --borderbefore: var(--text);
  --borderafter: var(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 14px;
  --font: normal;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}

.form .form-group {
  --selectheight: var(--inputsize);
  flex: 0 100%;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  position: relative;
}

.form .form-group.active:after {
  width: 100%;
}

.form .form-group:before, .form .form-group:after {
  content: "";
  height: var(--borderwidth);
  transition: all .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group:before {
  background: var(--borderbefore);
}

.form .form-group:after {
  background: var(--borderafter);
  width: 0;
}

.form .form-group label {
  font-weight: var(--font);
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  background: none;
  transition: all .3s;
  position: absolute;
}

.form .form-group input, .form .form-group textarea, .form .form-group select {
  height: calc(var(--inputsize)  - var(--borderwidth));
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  border-radius: 0;
  font-family: inherit;
}

.form .form-group input:focus, .form .form-group textarea:focus, .form .form-group select:focus, .form .form-group input.valid, .form .form-group textarea.valid, .form .form-group select.valid {
  outline: none;
}

.form .form-group input.valid ~ label, .form .form-group textarea.valid ~ label, .form .form-group select.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group input:not(.no-focus):focus, .form .form-group textarea:not(.no-focus):focus, .form .form-group select:not(.no-focus):focus {
  outline: none;
}

.form .form-group input:not(.no-focus):focus ~ label, .form .form-group textarea:not(.no-focus):focus ~ label, .form .form-group select:not(.no-focus):focus ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group select option {
  color: var(--text);
}

.form .form-group select option:hover {
  color: var(--white);
  background-color: #000 !important;
}

.form .form-group textarea {
  height: var(--textareaheight);
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  border-radius: 0;
  padding-right: 15px;
  font-family: inherit;
  line-height: 1.2;
}

.form .form-group textarea::-webkit-scrollbar {
  background: none;
  width: 2px;
  height: 2px;
}

.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}

.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 15px;
}

.form .form-group textarea:focus, .form .form-group textarea.valid {
  height: calc(var(--textareaheight)  - 13px);
  outline: none;
  margin-top: 13px;
}

.form .form-group select:focus {
  outline: none;
}

.form .form-group select ~ label {
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: all .6s;
  position: absolute;
  translate: 0;
}

.form .form-group select.valid {
  color: var(--color);
}

.form .form-group select.valid ~ label {
  opacity: 1;
}

.form .form-group.file-input input[type="file"] {
  opacity: 0;
  z-index: 4;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize)  - var(--borderwidth));
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url("/assets/icon/clip-gray.svg") no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  position: relative;
}

.form .form-group.file-input .file-name:before, .form .form-group.file-input .file-name:after {
  position: absolute;
  inset: 0 0 0 3%;
}

.form .form-group.file-input .file-name:before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  text-overflow: ellipsis;
  background: none;
  width: 80%;
  overflow: hidden;
}

.form .form-group.file-input .file-name:after {
  content: "";
  background: var(--image);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
  right: 0;
}

.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.checkbox-full {
  --size: 20px;
  align-items: center;
  line-height: normal;
  display: flex;
  position: relative;
}

.checkbox-full:has(input:checked) .check-span {
  background: var(--primary);
}

.checkbox-full:has(input:checked) .check-span:before {
  opacity: 1;
}

.checkbox-full input {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.checkbox-full .check-span {
  --size: 20px;
  height: var(--size);
  width: var(--size);
  pointer-events: none;
  background: #d9d9d9;
  border-radius: 5px;
  flex: 0 auto;
  padding: 0;
  display: block;
  position: relative;
}

.checkbox-full .check-span:before {
  content: "";
  z-index: 2;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") 50% / 10px no-repeat;
  position: absolute;
  inset: 0;
}

.checkbox-full p {
  padding-left: 14px;
}

.radio-full {
  --size: 20px;
  align-items: center;
  line-height: normal;
  display: flex;
  position: relative;
}

.radio-full:has(input:checked) .check-span {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
  background: var(--primary);
}

.radio-full input {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.radio-full .check-span {
  --size: 17px;
  height: var(--size);
  width: var(--size);
  border: 1px solid var(--primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border-radius: 50%;
  flex: 0 auto;
  padding: 0;
  display: inline-block;
  position: relative;
}

.radio-full p {
  padding-left: 14px;
}

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

:root {
  --headerpadding: 12px;
  --headerheight: 90px;
  --headerfixed: 70px;
  --mobilesearchbar: 45px;
  --footerstrip: 38px;
  --filterstrip: 42px;
  --elementhover: #000;
  --primary: #fff;
  --colortext: #000;
  --red: #ff2323;
  --green: #4ea95f;
  --sucgreen: green;
  --blue: #2773e5;
  --text: #666;
  --white: #fff;
  --black: #000;
  --gray: #efefef;
  --container: 1280px;
  --containerfluid: 10px;
  --gradient-a: linear-gradient(90deg, #fff 40%, #efefef);
  --gradient-b: linear-gradient(90deg, #efefef 30%, #fff);
}

@media only screen and (width <= 991px) {
  :root {
    --headerheight: 90px;
    --headerfixed: 70px;
  }
}

@media only screen and (width <= 768px) {
  :root {
    --headerheight: 80px;
    --headerfixed: 60px;
  }
}

@media only screen and (width <= 540px) {
  :root {
    --headerheight: 70px;
    --headerfixed: 60px;
  }
}

.gray-bg {
  background-color: #efefef;
}

.sec-head {
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

@media only screen and (width <= 768px) {
  .sec-head {
    font-size: 18px;
  }
}

@media only screen and (width <= 540px) {
  .sec-head {
    font-size: 16px;
    line-height: 1.5;
  }
}

.sec-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.sec-pad {
  padding: 70px 0;
}

@media only screen and (width <= 991px) {
  .sec-pad {
    padding: 60px 0;
  }
}

@media only screen and (width <= 768px) {
  .sec-pad {
    padding: 50px 0;
  }
}

@media only screen and (width <= 540px) {
  .sec-pad {
    padding: 40px 0;
  }
}

body::-webkit-scrollbar {
  background: var(--black);
  width: 8px;
}

body::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb {
  background-color: #ccc;
}

@media only screen and (width <= 540px) {
  body {
    -webkit-tap-highlight-color: transparent;
  }
}

body.overflow-hidden {
  margin-right: 8px;
  overflow: hidden;
}

@media only screen and (width <= 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}

body.overflow-hidden header {
  width: calc(100% - 8px);
}

@media only screen and (width <= 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-optical-sizing: auto;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
}

a[href] {
  cursor: pointer;
  text-decoration: none;
  transition: all .5s;
}

a[href].logo {
  line-height: 0;
  display: block;
}

a[href]:not(.btn, .btn2) {
  color: #fff;
}

svg path {
  transition: all .5s;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

@media only screen and (width <= 1300px) {
  .container {
    padding: 0 25px;
  }
}

@media only screen and (width <= 767px) {
  .container {
    padding: 0 15px;
  }
}

@media only screen and (width <= 345px) {
  .container {
    padding: 0 13px;
  }
}

@media only screen and (width <= 320px) {
  .container {
    padding: 0 10px;
  }
}

@media only screen and (width <= 675px) {
  .container.container2 {
    padding-right: 0;
  }

  .container.container2 .heading {
    padding-right: 15px;
  }
}

@media only screen and (width <= 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}

@media only screen and (width <= 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  margin: 0 auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Le Jeune Deck;
  font-weight: normal;
}

h1 {
  text-transform: uppercase;
  font-size: 48px;
  line-height: 1.17;
}

@media only screen and (width <= 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.05;
}

h3 {
  text-transform: capitalize;
  font-size: 36px;
  line-height: 1.06;
}

.heading {
  text-align: center;
}

.heading h2 {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.282;
}

@media only screen and (width <= 991px) {
  .heading h2 {
    font-size: 26px;
  }
}

@media only screen and (width <= 768px) {
  .heading h2 {
    font-size: 24px;
  }
}

@media only screen and (width <= 540px) {
  .heading h2 {
    font-size: 20px;
  }
}

.heading.h-large h3, .heading.h-large h2 {
  font-size: 36px;
}

.heading.c-white h3, .heading.c-white h2 {
  color: var(--white);
}

.heading > p {
  margin-top: 10px;
}

.head {
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
}

@media only screen and (width <= 1024px) {
  .head {
    font-size: 70px;
  }
}

@media only screen and (width <= 991px) {
  .head {
    font-size: 60px;
  }
}

@media only screen and (width <= 768px) {
  .head {
    font-size: 40px;
  }
}

h4 {
  font-size: 36px;
  line-height: 1.28;
}

h5 {
  font-size: 24px;
  line-height: 1.25;
}

@media only screen and (width <= 1152px) {
  h5 {
    font-size: 22px;
  }
}

@media only screen and (width <= 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

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

.grid {
  display: grid;
}

.span-2 {
  grid-column: span(2);
}

.inline-flex {
  --gap: 12px;
  align-items: center;
  gap: 0 var(--gap);
  display: inline-flex;
}

img {
  max-width: 100%;
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input {
  border-radius: 0;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

button.remove, button.edit {
  text-transform: uppercase;
  font-size: 14px;
}

button.remove {
  color: var(--text);
}

.btn_wrap {
  align-items: center;
  gap: 20px;
  display: flex;
}

.tab-nav {
  cursor: default;
}

.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: #0000;
}

.tab-nav-content {
  position: relative;
}

.tab-nav-content .tabs:not(.active) {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  height: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.item-md {
  position: relative;
}

.item-md:before, .item-md:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: none;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.item-md figure, .item-md .figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.item-md figure img, .item-md figure video, .item-md .figure img, .item-md .figure video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.item-md figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md .link-md {
  z-index: 3;
  position: absolute;
  inset: 0;
}

.item-md.center-item figcaption {
  top: 50%;
  bottom: auto;
  translate: 0 -50%;
}

.testimony_col:before {
  background: linear-gradient(#0000 14%, #0009 88%);
}

.testimony_col figcaption {
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px;
  display: flex;
  bottom: 3%;
  translate: 0 3%;
}

.testimony_col figcaption .content h6, .testimony_col figcaption .content p {
  color: var(--white);
}

.testimony_col figcaption .content h6 {
  font-size: 24px;
}

@media only screen and (width <= 991px) {
  .testimony_col figcaption .content h6 {
    font-size: 22px;
  }
}

.testimony_col figcaption .content p {
  font-size: 14px;
}

.testimony_col figcaption .play-btn {
  --btnsize: 40px;
}

.product_col {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product_col.outofstock {
  pointer-events: none;
  cursor: no-drop;
}

.product_col.outofstock:before {
  content: "Out of stock";
  width: 100%;
  height: 100%;
  color: var(--white);
  z-index: 1;
  background-color: #00000021;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.product_col:hover figure img, .product_col:hover .figure img {
  transform: scale(1);
}

.product_col:hover .hoverItem {
  transform: translateY(0);
}

.product_col figure, .product_col .figure {
  width: 100%;
  height: 100%;
  max-height: 500px;
  padding: 20px 0;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.product_col figure img, .product_col .figure img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transform: scale(.9);
}

.product_col figcaption {
  padding: 0 20px 30px;
  overflow: hidden;
}

@media only screen and (width <= 540px) {
  .product_col figcaption {
    padding: 0 10px 10px;
  }
}

.product_col figcaption h6 {
  padding: 0 20px 5px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

@media only screen and (width <= 540px) {
  .product_col figcaption h6 {
    padding: 0 5px 5px;
  }
}

.product_col figcaption p {
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
}

@media only screen and (width <= 540px) {
  .product_col figcaption p {
    padding: 0 5px;
  }
}

.product_col .wislist {
  position: absolute;
  top: 3%;
  right: 5%;
  transform: translate(5%, -3%);
}

.product_col .wislist.added svg path, .product_col .wislist:hover svg path {
  fill: #000;
}

.product_col .hoverItem {
  align-items: center;
  width: 100%;
  transition: all .5s;
  display: flex;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
}

@media only screen and (width <= 540px) {
  .product_col .hoverItem {
    display: none;
    position: relative;
    transform: translateY(0);
  }
}

.product_col .hoverItem a, .product_col .hoverItem button {
  text-align: center;
  flex: 1;
  padding: 15px 10px;
  line-height: 1.2;
}

.product_col .hoverItem .enquireBtn {
  background: var(--black);
  color: var(--white);
  transition: all .5s;
}

.product_col .hoverItem .enquireBtn:hover {
  background: #3c3c3c;
}

@media only screen and (width <= 540px) {
  .product_col .hoverItem .enquireBtn {
    padding: 8px 5px;
    font-size: 12px;
  }
}

.product_col .hoverItem .viewDetails {
  background: var(--gray);
  color: var(--black);
  transition: all .5s;
}

.product_col .hoverItem .viewDetails:hover {
  background: #d9d9d9;
}

@media only screen and (width <= 540px) {
  .product_col .hoverItem .viewDetails {
    padding: 8px 5px;
    font-size: 12px;
  }
}

.category_col {
  cursor: pointer;
}

.category_col:before {
  background: linear-gradient(#0000 14%, #0009 88%);
}

.category_col:hover figure img {
  opacity: 0;
  transform: scale(1.2);
}

.category_col:hover figcaption h6, .category_col:hover figcaption p {
  opacity: 0;
}

.category_col:hover figcaption .btn_wrapper {
  transform: translateY(0);
}

.category_col figure {
  position: relative;
}

.category_col figure video {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.category_col figure img {
  transform-origin: 0 0;
  transition: all 1s;
}

.category_col figcaption {
  text-align: center;
  padding: 0 10px 20px;
  bottom: 5%;
  translate: 0 5%;
}

@media only screen and (width <= 991px) {
  .category_col figcaption {
    bottom: 2%;
    translate: 0 2%;
  }
}

@media only screen and (width <= 768px) {
  .category_col figcaption {
    bottom: 0;
    translate: 0%;
  }
}

.category_col figcaption h6, .category_col figcaption p {
  color: var(--white);
  transition: all .6s;
}

.category_col figcaption h6 {
  font-size: 24px;
}

@media only screen and (width <= 768px) {
  .category_col figcaption h6 {
    font-size: 22px;
  }
}

.category_col figcaption p {
  font-size: 14px;
}

.category_col figcaption .btn_wrapper {
  transition: all 1s;
  transform: translateY(7vw);
}

@media only screen and (width <= 768px) {
  .category_col figcaption .btn_wrapper {
    margin-top: 10px;
    transform: translateY(0);
  }
}

.overlay {
  z-index: 6;
  opacity: 0;
  cursor: pointer;
  background: #00000080;
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  inset: 0;
  transform: translateY(100%);
}

@media only screen and (width <= 991px) {
  .overlay {
    z-index: 2;
  }
}

@media only screen and (width <= 540px) {
  .overlay {
    display: none;
  }
}

.overlay.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.overlay2 {
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  background: #000000b3;
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  inset: 0;
  transform: translateY(100%);
}

@media only screen and (width <= 991px) {
  .overlay2 {
    z-index: 2;
  }
}

@media only screen and (width <= 675px) {
  .overlay2 {
    display: none;
  }
}

.overlay2.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.model {
  z-index: 7;
  background: var(--white);
  background-position: 0 80%;
  background-size: 75%;
  width: 100%;
  max-width: 435px;
  position: fixed;
  top: 0;
  bottom: 0;
}

.model .close:not(.btn) {
  position: absolute;
  top: 40px;
  right: 40px;
}

@media only screen and (width <= 520px) {
  .model .close:not(.btn) {
    top: 20px;
    right: 20px;
  }
}

.model .close:not(.btn) path {
  stroke: var(--black);
}

img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  transition: all .5s;
}

.btn {
  --padding: 10px;
  --height: 36px;
  height: var(--height);
  line-height: var(--height);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: all .5s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn:before, .btn:after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 0;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn:before {
  background-color: var(--white);
}

@media only screen and (width <= 540px) {
  .btn {
    --padding: 14px;
    font-size: 12px;
  }
}

.btn:hover {
  color: var(--black);
  padding: 0 var(--padding);
}

.btn:hover:before {
  height: 100%;
}

.btn:hover path {
  fill: var(--primary);
}

.btn.btn-large, .btn.btn-medium {
  letter-spacing: 0;
  font-size: 16px;
}

.btn.w-100 {
  width: 100%;
}

.btn.btn-large {
  --height: 52px;
  --padding: 38px;
}

.btn.btn-medium {
  --height: 45px;
  --padding: 25px;
}

.btn.btn-grad {
  background: linear-gradient(90deg, #fff, #b9b9b9);
}

.btn.btn-grad:hover {
  color: #000;
  background: linear-gradient(270deg, #fff, #fff);
}

.btn.black_fill {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn.black_fill:hover {
  color: var(--black);
  background: none;
  padding: 0;
}

.btn.gray_fill {
  color: var(--black);
  background: #d7d2d2;
  border: 1px solid #d7d2d2;
}

.btn.gray_fill:hover {
  color: var(--black);
  border-color: var(--black);
  background: none;
  padding: 0;
}

.btn.gray_border {
  color: var(--text);
  background: #fff;
  border: 1px solid #666;
  border-radius: 5px;
  padding: 0 18px;
}

.btn.gray_border:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn.black_round {
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 50px;
}

.btn.black_round path {
  fill: var(--black);
}

.btn.black_round:after {
  background-color: var(--black);
  height: 100%;
}

.btn.black_round:hover {
  color: var(--black);
  background-color: var(--white);
}

.btn.black_round:hover:after {
  height: 0;
}

.btn.black_round:hover:before {
  height: 100%;
}

.btn.black_round:hover path {
  fill: var(--white);
}

.btn.black {
  color: var(--black);
  border-bottom: 1px solid var(--black);
}

.btn.black:before {
  background-color: var(--black);
}

.btn.black:hover {
  color: var(--white);
}

.btn.black-border {
  color: var(--black);
  padding: 0 var(--padding);
  border: 1px solid #000;
}

.btn.black-border path {
  fill: var(--primary);
}

.btn.black-border:before {
  background-color: var(--black);
}

.btn.black-border:hover {
  color: var(--white);
}

.btn.black-border:hover:before {
  width: 100%;
}

.btn.black-border:hover path {
  fill: var(--white);
}

.btn2 {
  --padding: 18px;
  --height: 36px;
  letter-spacing: .1em;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  padding: 0 var(--padding);
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.btn2:hover {
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--black);
}

.btn2:hover path {
  fill: var(--black);
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item)  - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
  display: grid;
}

.form-grid .full {
  grid-column: span var(--item);
}

.banner {
  position: relative;
}

.banner:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: linear-gradient(270deg, #0000 0%, #000c 100%), linear-gradient(#0000 14%, #0009 88%);
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.banner .bg {
  height: 650px;
  line-height: 0;
}

@media only screen and (width <= 1366px) {
  .banner .bg {
    height: calc(100vh - var(--headerheight));
  }
}

.banner .bg video, .banner .bg img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .banner-wrapper {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  translate: 0 -50%;
}

.banner .banner-wrapper h1 {
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--white);
  font-family: Le Jeune Deck;
  font-size: 48px;
  line-height: 1.28;
}

.banner .banner-wrapper .content p {
  color: var(--white);
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.23;
}

@media only screen and (width <= 991px) {
  .banner .banner-wrapper .content p {
    font-size: 18px;
  }
}

@media only screen and (width <= 768px) {
  .banner .banner-wrapper .content p {
    font-size: 16px;
  }
}

.banner-banner .content h1 {
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 32px;
  line-height: 1.1875;
}

.banner-banner .content p {
  color: var(--text);
  margin-top: 18px;
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}

.swiper-nav.center-full {
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  user-select: auto;
}

.swiper-nav.group {
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
  display: flex;
}

@media only screen and (width <= 1152px) {
  .swiper-nav.group {
    gap: 0 8px;
  }
}

.swiper-nav.icon-width-auto .swiper-next svg, .swiper-nav.icon-width-auto .swiper-prev svg {
  width: auto;
  height: auto;
}

.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: .4;
}

.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.play-btn {
  --btnsize: 56px;
  --border: 2px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border: var(--border) solid var(--bordercolor);
  background: none;
  border-radius: 50%;
  position: relative;
}

@media only screen and (width <= 1024px) {
  .play-btn {
    --btnsize: 50px;
  }
}

@media only screen and (width <= 675px) {
  .play-btn {
    --btnsize: 45px;
    --border: 1px;
  }
}

.play-btn:before {
  content: "";
  background: var(--bordercolor);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 1.5s ease-out infinite pulse-border;
  display: block;
  position: absolute;
  inset: 50% 0 0 50%;
  transform: translateX(-50%)translateY(-50%);
}

@keyframes pulse-border {
  0% {
    opacity: .5;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1.5);
  }
}

.play-btn:after {
  content: "";
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.website-content > :first-child {
  margin-top: 0 !important;
}

.website-content > :last-child {
  margin-bottom: 0 !important;
}

.website-content h1, .website-content h2, .website-content h3, .website-content h4, .website-content h5, .website-content h6 {
  color: var(--black);
}

.website-content h1 {
  text-align: center;
  margin-bottom: 45px;
  font-family: Le Jeune Deck;
  font-size: 48px;
}

@media only screen and (width <= 675px) {
  .website-content h1 {
    font-size: 34px;
  }
}

@media only screen and (width <= 520px) {
  .website-content h1 {
    font-size: 30px;
  }
}

.website-content h2 {
  font-size: 34px;
}

@media only screen and (width <= 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}

.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
}

@media only screen and (width <= 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}

.website-content h4 {
  font-size: 22px;
}

@media only screen and (width <= 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}

.website-content h5 {
  font-size: 18px;
}

@media only screen and (width <= 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}

.website-content h6 {
  font-size: 18px;
}

.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}

.website-content h5, .website-content h6 {
  margin: 28px 0 18px;
}

.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-spacing: -.07em;
}

.website-content p b, .website-content li b {
  font-weight: normal;
}

.website-content a {
  color: var(--black) !important;
}

.website-content a:hover {
  text-decoration: underline;
}

.website-content p, .website-content ul {
  margin-bottom: 20px;
}

.website-content ul {
  padding-left: 18px;
}

@media only screen and (width <= 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}

.website-content ul li {
  padding-left: 28px;
  position: relative;
}

@media only screen and (width <= 675px) {
  .website-content ul li {
    padding-left: 20px;
  }
}

.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}

.website-content ul li:before {
  content: "";
  aspect-ratio: 1;
  background: var(--black);
  border-radius: 50%;
  width: 10px;
  position: absolute;
  top: 8px;
  left: 0;
}

.container-fluid.slider-section .upper-sec .slider-nav {
  right: 3%;
  transform: translate(3%, -50%);
}

@media only screen and (width <= 675px) {
  .slider-section .container {
    padding-right: 0;
  }
}

.slider-section .upper-sec {
  margin-bottom: 4rem;
  position: relative;
}

@media only screen and (width <= 991px) {
  .slider-section .upper-sec {
    margin-bottom: 3rem;
  }
}

@media only screen and (width <= 768px) {
  .slider-section .upper-sec {
    margin-bottom: 2rem;
  }
}

@media only screen and (width <= 540px) {
  .slider-section .upper-sec {
    margin-bottom: 1.5rem;
  }
}

.slider-section .upper-sec .slider-nav {
  align-items: center;
  gap: 20px;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

@media only screen and (width <= 768px) {
  .slider-section .upper-sec .slider-nav {
    display: none;
  }
}

.slider-section .upper-sec .slider-nav .swiper-prev svg, .slider-section .upper-sec .slider-nav .swiper-prev img {
  transform: scaleX(-1);
}

.slider-section .upper-sec .heading {
  text-align: center;
}

.lctn {
  color: var(--text);
  --arrow: 20px;
  --space: 5px;
  padding-left: calc(var(--arrow)  + var(--space));
  font-size: 14px;
  line-height: 1;
  position: relative;
}

.lctn:before {
  content: "";
  height: var(--arrow);
  width: var(--arrow);
  transform-origin: 100%;
  background-image: url("/assets/icon/location-gradient.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all .5s;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

.lctn.clndr {
  color: var(--white);
  --arrow: 17px;
  --space: 12px;
}

.lctn.clndr:before {
  background-image: url("/assets/icon/calender.svg");
}

.common-grid {
  grid-gap: 50px 20px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@media only screen and (width <= 991px) {
  .common-grid {
    grid-gap: 30px 18px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (width <= 675px) {
  .common-grid {
    grid-gap: 10px;
    grid-template-columns: 100%;
  }
}

.product-col {
  position: relative;
}

.product-col:before {
  content: "";
  opacity: 0;
  z-index: 1;
  background: #fff;
  width: 0;
  height: 86%;
  display: block;
  position: absolute;
  top: 7%;
  left: 0%;
  transform: skewX(-20deg);
  box-shadow: 0 0 55px 12px #fff;
}

.product-col:hover:before {
  animation: .4s linear shine;
}

.product-col .figure, .product-col figure {
  line-height: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.product-col .figure .add-to, .product-col figure .add-to {
  text-align: right;
  opacity: 0;
  justify-content: end;
  align-items: center;
  width: 100%;
  transition: all .5s;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.product-col .figure .add-to a, .product-col figure .add-to a {
  padding: 11px 20px;
  transition: all .5s;
  display: block;
}

.product-col .figure .add-to a svg, .product-col figure .add-to a svg {
  vertical-align: middle;
  width: 25px;
  height: 25px;
}

.product-col .figure .add-to a.add2cart, .product-col figure .add-to a.add2cart {
  background-color: #13195f;
}

.product-col .figure .add-to a.add2cart:hover, .product-col figure .add-to a.add2cart:hover {
  background-color: #fff;
}

.product-col .figure .add-to a.add2cart:hover svg path, .product-col figure .add-to a.add2cart:hover svg path {
  fill: var(--primary);
}

.product-col .figure .add-to a.add2wish, .product-col figure .add-to a.add2wish {
  background-color: #030735;
}

.product-col .figure .add-to a.add2wish.active, .product-col figure .add-to a.add2wish.active {
  background-color: #fff;
}

.product-col .figure .add-to a.add2wish.active svg path, .product-col figure .add-to a.add2wish.active svg path {
  fill: var(--primary);
}

.product-col .figure .add-to a.add2wish:hover, .product-col figure .add-to a.add2wish:hover {
  background-color: #fff;
}

.product-col .figure .add-to a.add2wish:hover svg path, .product-col figure .add-to a.add2wish:hover svg path {
  stroke: var(--primary);
}

.product-col .figure img, .product-col figure img {
  -o-object-position: cover;
  object-position: cover;
  -o-object-position: top;
  object-position: top;
  transform-origin: 0 0;
  width: 100%;
  transition: all .5s;
}

.product-col figcaption {
  text-align: center;
  max-width: 305px;
  margin: 0 auto;
  padding: 18px 20px 0;
}

.product-col figcaption .pro_name {
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.product-col figcaption .price {
  text-align: center;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.product-col figcaption .color-select-wrap {
  padding-bottom: 10px;
}

.product-col figcaption .color-select-wrap li {
  vertical-align: middle;
  display: inline-block;
  position: relative;
}

.product-col figcaption .color-select-wrap li:not(:last-child) {
  margin-right: 15px;
}

.product-col figcaption .color-select-wrap li:has(input:checked) span:before {
  opacity: 1;
}

.product-col figcaption .color-select-wrap li span {
  background-color: #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.product-col figcaption .color-select-wrap li span:before {
  content: "";
  opacity: 0;
  border: 1px solid #000;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  position: absolute;
  bottom: -3px;
  left: -3px;
}

.product-col figcaption .color-select-wrap li input {
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.product-col figcaption .color-select-wrap li input:checked ~ span:before, .product-col:hover .add-to {
  opacity: 1;
}

.product-col:hover .figure img, .product-col:hover figure img {
  transform: scale(1.1);
}

.product-col .wishlist-ico, .product-col-2 .wishlist-ico {
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: absolute;
  top: 13px;
  right: 10px;
}

.product-col .wishlist-ico img, .product-col .wishlist-ico svg, .product-col-2 .wishlist-ico img, .product-col-2 .wishlist-ico svg {
  width: 15px;
  height: auto;
}

.product-col .wishlist-ico:hover, .product-col .wishlist-ico.is-active, .product-col-2 .wishlist-ico:hover, .product-col-2 .wishlist-ico.is-active {
  background: var(--primary);
}

.product-col .wishlist-ico:hover img, .product-col .wishlist-ico.is-active img, .product-col-2 .wishlist-ico:hover img, .product-col-2 .wishlist-ico.is-active img {
  filter: brightness(0) saturate() invert() sepia() saturate(1%) hue-rotate(236deg) brightness(103%) contrast(101%);
}

.product-col:hover .wishlist-ico, .product-col-2:hover .wishlist-ico {
  opacity: 1;
  pointer-events: all;
}

.product-col-2, .product-col-3 {
  position: relative;
}

.product-col-2:before, .product-col-3:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: none;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.product-col-2 .figure, .product-col-2 figure, .product-col-3 .figure, .product-col-3 figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.product-col-2 .figure img, .product-col-2 figure img, .product-col-3 .figure img, .product-col-3 figure img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.product-col-2:before, .product-col-3:before {
  z-index: 1;
}

.product-col-2:hover .figure img, .product-col-2:hover figure img, .product-col-3:hover .figure img, .product-col-3:hover figure img {
  transform: scale(1.1);
}

.product-col-2 figcaption, .product-col-3 figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.product-col-2:before {
  background: linear-gradient(#0000 0%, #000c 100%);
}

.product-col-2 figcaption {
  text-align: center;
  padding: 0 2rem 46px;
}

.product-col-2 figcaption .prdt-nm, .product-col-2 figcaption .prd-price {
  color: var(--white);
  font-size: 18px;
  display: block;
}

.product-col-2 figcaption .prdt-nm {
  margin-bottom: 8px;
}

.product-col-3:before {
  background: linear-gradient(#0000 0%, #000000f2 100%);
}

.product-col-3:hover .figure img, .product-col-3:hover figure img {
  transform: scale(1.05);
}

.product-col-3 figure img, .product-col-3 .figure img {
  aspect-ratio: .9;
}

.product-col-3 figcaption {
  text-align: center;
  --btnheight: 36px;
  --titlepad: 30px;
  margin-bottom: 3.5rem;
  padding: 0 2rem;
  transition: all .5s;
}

.product-col-3 figcaption .ico {
  opacity: 0;
  margin-bottom: 20px;
  line-height: 0;
  transition: all .5s;
  transform: translateY(30px)scale(.4);
}

.product-col-3 figcaption h6 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 22px;
  line-height: 1.283;
  transition: all .6s;
}

.product-col-3 .xbjs {
  opacity: 0;
  transition: all .6s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(30px)scale(.9);
}

.product-col-3 .xbjs .btn {
  --height: var(--btnheight);
}

.product-col-3:hover {
  transform: translateY(0);
}

.product-col-3:hover figcaption .ico {
  opacity: 1;
  transform: translateY(0)scale(1);
}

.product-col-3:hover figcaption h6 {
  padding-bottom: calc(var(--btnheight)  + var(--titlepad));
}

.product-col-3:hover figcaption .xbjs {
  opacity: 1;
  transform: translateY(0)scale(1);
}

.gray-bg {
  background: var(--gray);
}

.gradient-head {
  text-transform: initial;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: var(--gradient-a);
  display: inline-block;
}

.whitetxt {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  background: var(--primary);
  border-color: var(--primary);
  border-radius: 50%;
  width: 17px;
  height: 17px;
  top: 50%;
  translate: 0 -50%;
  border: none !important;
}

.ui-state-default:focus, .ui-widget-content .ui-state-default:focus, .ui-widget-header .ui-state-default:focus, .ui-button:focus, html .ui-button.ui-state-disabled:hover:focus, html .ui-button.ui-state-disabled:active:focus {
  outline: none;
}

.ui-slider-horizontal {
  height: 2px;
  border: none !important;
}

.ui-widget-content {
  background: #cecece;
  border: none !important;
}

.ui-widget-header {
  background: var(--primary);
}

.kmr-select-wrap {
  --labelheight: 45px;
  --liheight: 34px;
  --boxsize: calc(var(--liheight)  - 14px);
  --arrowsize: 16px;
  --space: 11px;
  display: inline-block;
  position: relative;
}

.kmr-select-wrap .label {
  color: var(--black);
  height: var(--labelheight);
  line-height: var(--labelheight);
  background-image: url("/assets/icon/arrow-down-black.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize)  + var(--space));
  cursor: pointer;
  caret-color: #0000;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Lato, sans-serif;
  font-size: 12px;
}

.kmr-select-wrap.active {
  --btn: 10px;
}

.kmr-select-wrap.active.price_select .kmr-select-menu .upper-sec .reset-btn {
  display: block;
}

.kmr-select-wrap.slt-rgt .kmr-select-menu {
  left: auto;
  right: 0;
}

.kmr-select-wrap.color-select .kmr-select-menu li .in-bx {
  border-color: #ccc;
  border-radius: 50%;
}

.kmr-select-wrap.price_select .kmr-select-menu {
  width: 325px;
  padding: 20px;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec {
  display: flex;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn {
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn svg {
  vertical-align: middle;
  width: 15px;
  height: auto;
  margin-left: 3px;
  display: inline-block;
}

.kmr-select-wrap.price_select .kmr-select-menu h6 {
  color: var(--black);
  flex: 1;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.kmr-select-wrap.price_select .product-range-slider-wrap {
  margin: 30px 0 40px;
}

.kmr-select-wrap.price_select .price-range-input-wrap {
  color: var(--text);
  align-items: center;
  gap: 18px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input {
  background: var(--white);
  height: 30px;
  color: var(--text);
  border: 1px solid #e0e0e0;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input {
  width: 100%;
  color: var(--text);
  border: none;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input:focus {
  outline: none;
}

.kmr-select-wrap .kmr-select-menu {
  z-index: 1;
  background: var(--white);
  width: 260px;
  max-height: 244px;
  padding: 20px 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  overflow-y: auto;
  box-shadow: 0 2px 8px #63636333;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar {
  background: none;
  width: 6px;
  height: 6px;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-track {
  box-shadow: none;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 10px;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx {
  border-radius: 50%;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx:before {
  display: none;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]):has(input:checked) li .in-bx {
  outline: 5px solid var(--white);
  outline-offset: -10px;
}

.kmr-select-wrap .kmr-select-menu li {
  height: var(--liheight);
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  display: flex;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx {
  background: var(--black);
  transition: all .4s;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx:before {
  opacity: 1;
}

.kmr-select-wrap .kmr-select-menu li .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--black);
  border-radius: 3px;
  transition: all;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li .in-bx:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") center / 48% no-repeat;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.kmr-select-wrap .kmr-select-menu li span {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: block;
}

.kmr-select-wrap .kmr-select-menu li input {
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

@media only screen and (width <= 991px) {
  .breadcrumps {
    display: none;
  }
}

.breadcrumps li {
  vertical-align: middle;
  display: inline-block;
}

.breadcrumps li a {
  font-size: 14px;
  color: var(--text) !important;
}

@media only screen and (width <= 520px) {
  .breadcrumps li a {
    text-overflow: ellipsis;
    font-size: 12px;
  }
}

.breadcrumps li a.active {
  color: var(--black) !important;
}

.breadcrumps li:not(:last-child) {
  padding-right: 20px;
  position: relative;
}

@media only screen and (width <= 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}

.breadcrumps li:not(:last-child):before {
  content: ">";
  color: var(--text);
  font-family: monospace;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 0 -50%;
}

.breadcrumps li:not(:first-child) {
  padding-left: 20px;
}

@media only screen and (width <= 520px) {
  .breadcrumps li:not(:first-child) {
    padding-left: 8px;
  }
}

[data-scrollTo] {
  cursor: pointer;
}

.fancybox__container {
  --fancybox-bg: var(--black);
}

.green-color {
  color: var(--green) !important;
}

.light-green {
  color: var(--green);
}

.red-color {
  color: var(--red) !important;
}

.orange-color {
  color: orange !important;
}

em {
  font-style: normal;
}

.mt-hdrfxd {
  margin-top: var(--headerfixed);
}

.mt-hdr {
  margin-top: var(--headerheight);
}

.w-full {
  width: 100%;
}

.disc {
  text-align: center;
  margin: 15px 0;
}

.disc p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  transition: all .5s;
}

.disc p a {
  transition: all .5s;
  color: var(--primary) !important;
}

.disc p a:hover {
  text-decoration: underline;
}

.check_term {
  margin: 15px 0;
}

.check_term .input_box {
  --boxsize: 15px;
  gap: 10px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}

.check_term .input_box:has(input:checked) .in-bx {
  background: var(--primary);
  transition: all .4s;
}

.check_term .input_box:has(input:checked) .in-bx:before {
  opacity: 1;
}

.check_term .input_box input {
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.check_term .input_box .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--black);
  border-radius: 3px;
  transition: all;
  position: relative;
}

.check_term .input_box .in-bx:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") center / 48% no-repeat;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.check_term .input_box p {
  color: var(--text);
  flex: 1;
  font-size: 14px;
  line-height: 1;
}

.sm-block {
  display: none;
}

@media only screen and (width <= 540px) {
  .sm-block {
    display: block;
  }
}

.md-block {
  display: none;
}

@media only screen and (width <= 768px) {
  .md-block {
    display: block;
  }
}

.sm-none {
  display: block;
}

@media only screen and (width <= 540px) {
  .sm-none {
    display: none;
  }
}

.md-none {
  display: block;
}

@media only screen and (width <= 768px) {
  .md-none {
    display: none;
  }
}

.bestSeller_slider_wrapper {
  z-index: 0;
  position: relative;
}

.bestSeller_slider_wrapper .container-fluid .btn_wrapper {
  text-align: center;
  margin-top: 50px;
}

.verify {
  color: red;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
}

@keyframes scroll {
  0% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(10px);
  }
}

.display-none {
  display: none;
}

.text-black {
  color: var(--black) !important;
}

.page-not-found-container {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.page-not-found-container .not-found {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.page-not-found-container .not-found img {
  filter: grayscale();
  width: 120px;
}

.page-not-found-container .not-found h3 {
  color: var(--black);
}

.page-not-found-container .not-found p {
  color: var(--black);
  padding-bottom: 10px;
}

.upper-wrapper {
  background-color: #e5e5e5;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 20px;
  display: flex;
}

@media only screen and (width <= 991px) {
  .upper-wrapper {
    gap: 30px;
  }
}

@media only screen and (width <= 768px) {
  .upper-wrapper {
    gap: 20px;
  }
}

@media only screen and (width <= 540px) {
  .upper-wrapper {
    flex-direction: column;
  }
}

.upper-wrapper .add_item {
  align-items: center;
  gap: 6px;
  display: flex;
}

@media only screen and (width <= 768px) {
  .upper-wrapper .add_item {
    text-align: center;
    flex-direction: column;
  }
}

.upper-wrapper .add_item img {
  width: 40px;
  height: 40px;
}

@media only screen and (width <= 768px) {
  .upper-wrapper .add_item img {
    width: 35px;
    height: 35px;
  }
}

.upper-wrapper .add_item .content h6 {
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.upper-wrapper .add_item .content p {
  font-size: 13px;
}

footer {
  width: 100%;
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}

@media only screen and (width <= 991px) {
  footer {
    padding: 60px 0 50px;
  }
}

@media only screen and (width <= 540px) {
  footer {
    padding: 50px 0 40px;
  }
}

footer:before {
  content: "";
  z-index: -1;
  background: url("/assets/images/home/footer_bg.jpg") center / cover no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

footer .container {
  z-index: 2;
  position: relative;
}

footer .container .upper-footer, footer .container .lower-footer {
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

footer .container .upper-footer .colA, footer .container .upper-footer .colB, footer .container .lower-footer .colA, footer .container .lower-footer .colB {
  flex: 1;
  width: 100%;
  height: 100%;
}

footer .container .upper-footer .colA, footer .container .lower-footer .colA {
  --borderbefore: #ffffffb2;
  --labelbefore: #ffffffb2;
  --labelafter: var(--white);
  --borderafter: var(--white);
  --color: var(--white);
}

@media only screen and (width <= 991px) {
  footer .container .upper-footer .colA, footer .container .lower-footer .colA {
    flex: 0 25%;
  }
}

footer .container .upper-footer .colA a, footer .container .lower-footer .colA a {
  width: 320px;
  height: 100%;
  display: block;
}

@media only screen and (width <= 991px) {
  footer .container .upper-footer .colA a, footer .container .lower-footer .colA a {
    width: 250px;
  }
}

footer .container .upper-footer .colA a img, footer .container .lower-footer .colA a img {
  height: 100%;
}

footer .container .upper-footer .colA .form-group, footer .container .lower-footer .colA .form-group {
  max-width: 450px;
  margin: 25px 0 30px;
}

@media only screen and (width <= 991px) {
  footer .container .upper-footer .colA .form-group, footer .container .lower-footer .colA .form-group {
    margin: 20px 0 25px;
  }
}

footer .container .upper-footer .colA .form-group button, footer .container .lower-footer .colA .form-group button {
  z-index: 1;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

footer .container .upper-footer .colA .discl, footer .container .lower-footer .colA .discl {
  color: #ffffffbf;
  max-width: 450px;
  font-size: 12px;
}

footer .container .upper-footer .colA .discl > a, footer .container .lower-footer .colA .discl > a {
  font-weight: 600;
  display: inline;
}

footer .container .upper-footer .colB, footer .container .lower-footer .colB {
  color: var(--white);
  justify-content: center;
  gap: 70px;
  display: flex;
}

@media only screen and (width <= 991px) {
  footer .container .upper-footer .colB, footer .container .lower-footer .colB {
    gap: 50px;
  }
}

@media only screen and (width <= 768px) {
  footer .container .upper-footer .colB, footer .container .lower-footer .colB {
    justify-content: start;
  }
}

footer .container .upper-footer .colB .list_item h6, footer .container .lower-footer .colB .list_item h6 {
  text-transform: uppercase;
  padding-bottom: 15px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

footer .container .upper-footer .colB .list_item ul li, footer .container .lower-footer .colB .list_item ul li {
  padding-bottom: 5px;
}

footer .container .upper-footer .colB .list_item ul li:hover a, footer .container .lower-footer .colB .list_item ul li:hover a {
  color: var(--white);
  transform: translateX(2px);
}

footer .container .upper-footer .colB .list_item ul li a, footer .container .lower-footer .colB .list_item ul li a {
  color: #ffffffb2;
  font-size: 14px;
  transition: all .5s;
  display: block;
}

@media only screen and (width <= 991px) {
  footer .container .upper-footer {
    gap: 50px;
  }
}

@media only screen and (width <= 768px) {
  footer .container .upper-footer {
    gap: 40px;
  }
}

@media only screen and (width <= 540px) {
  footer .container .upper-footer {
    flex-direction: column;
  }

  footer .container .upper-footer .colB {
    gap: 40px;
  }
}

footer .container .lower-footer {
  padding: 30px 0 40px;
}

@media only screen and (width <= 991px) {
  footer .container .lower-footer {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 30px 0;
  }
}

footer .container .lower-footer .colC {
  flex: 1;
  align-items: center;
  display: flex;
}

@media only screen and (width <= 540px) {
  footer .container .lower-footer .colC {
    flex-direction: column;
    gap: 15px;
  }
}

footer .container .lower-footer .colC .social_icons {
  border-right: 1px solid var(--white);
  align-items: center;
  gap: 15px;
  padding-right: 15px;
  display: flex;
}

@media only screen and (width <= 540px) {
  footer .container .lower-footer .colC .social_icons {
    border-right: none;
    padding-right: 0;
  }
}

footer .container .lower-footer .colC .social_icons li a {
  display: block;
}

footer .container .lower-footer .colC .contact_no {
  align-items: center;
  padding-left: 15px;
  display: flex;
}

footer .container .lower-footer .colC .contact_no li:first-child {
  border-right: 1px solid var(--white);
  padding-left: 0;
  padding-right: 10px;
}

footer .container .lower-footer .colC .contact_no li {
  padding-left: 10px;
}

footer .container .lower-footer .colD {
  align-items: center;
  gap: 20px;
}

@media only screen and (width <= 540px) {
  footer .container .lower-footer .colD {
    justify-content: center;
    gap: 10px;
  }
}

footer .container .lower-footer .colD a, footer .container .lower-footer .colD .corp_login {
  border: 1px solid var(--white);
  color: var(--white);
  align-items: center;
  gap: 10px;
  height: 100%;
  padding: 8px 15px;
  line-height: 1.5;
  display: flex;
}

@media only screen and (width <= 540px) {
  footer .container .lower-footer .colD a, footer .container .lower-footer .colD .corp_login {
    gap: 2px;
    padding: 2px 6px;
  }
}

footer .container .lower-footer .colD .corp_login {
  background-color: var(--white);
  color: var(--black);
  transition: all .5s;
}

footer .container .lower-footer .colD .corp_login:hover {
  color: var(--white);
  background-color: #0000;
}

footer .container .lower-footer .colD a:not(.corp_login):hover {
  background-color: var(--white);
  color: var(--black);
}

footer .container .lower-footer .colD a:not(.corp_login):hover img {
  filter: invert();
}

footer .footer_rights {
  border-top: 1px solid #ffffff40;
  padding: 30px 0 0;
}

footer .footer_rights .flex {
  justify-content: space-between;
  align-items: center;
}

@media only screen and (width <= 768px) {
  footer .footer_rights .flex {
    flex-direction: column;
    gap: 10px;
  }
}

footer .footer_rights .flex p {
  color: var(--white);
  font-size: 14px;
}

footer .footer_rights .flex .add_icon {
  flex: 0 auto;
  align-items: center;
  gap: 10px;
  display: flex;
}

footer .footer_rights .flex .add_icon img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 200px;
}

footer .footer_rights .flex .add_icon p {
  color: var(--white);
  width: 100%;
  font-size: 14px;
}

.sticky_action {
  z-index: 5;
  align-items: center;
  gap: 15px;
  position: fixed;
  bottom: 3%;
  right: 3%;
  translate: 3% 3%;
}

.sticky_action .whatsapp {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  box-shadow: 0 5px 15px #00000059;
}

.sticky_action .whatsapp img {
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
  filter: invert();
  width: 25px;
  height: 25px;
}

.sticky_action .call_action {
  background: var(--white);
  border-radius: 50px;
  align-items: center;
  gap: 5px;
  padding: 8px 20px;
  display: flex;
  box-shadow: 0 5px 15px #00000059;
}

.sticky_action .call_action img {
  width: 25px;
  height: 25px;
}

.sticky_action .call_action p {
  font-weight: 500;
}


/* [project]/node_modules/swiper/swiper.css [app-client] (css) */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.swiper {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  display: block;
  position: relative;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide, .swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: auto;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom {
  pointer-events: none;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(#00000080, #0000);
}

.swiper-lazy-preloader {
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top-color: #0000;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: 1s linear infinite swiper-preloader-spin;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* [project]/node_modules/swiper/modules/navigation.css [app-client] (css) */
:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-prev, .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden, .swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev, .swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg, .swiper-button-next svg {
  object-fit: contain;
  transform-origin: center;
  width: 100%;
  height: 100%;
}

.swiper-rtl .swiper-button-prev svg, .swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev:after, .swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  text-transform: none !important;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}


/* [project]/public/styles/component/component.css [app-client] (css) */
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.form {
  --inputsize: 42px;
  --labelbefore: var(--text);
  --labelafter: var(--black);
  --borderbefore: var(--text);
  --borderafter: var(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 14px;
  --font: normal;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}

.form .form-group {
  --selectheight: var(--inputsize);
  flex: 0 100%;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  position: relative;
}

.form .form-group.active:after {
  width: 100%;
}

.form .form-group:before, .form .form-group:after {
  content: "";
  height: var(--borderwidth);
  transition: all .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group:before {
  background: var(--borderbefore);
}

.form .form-group:after {
  background: var(--borderafter);
  width: 0;
}

.form .form-group label {
  font-weight: var(--font);
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  background: none;
  transition: all .3s;
  position: absolute;
}

.form .form-group input, .form .form-group textarea, .form .form-group select {
  height: calc(var(--inputsize)  - var(--borderwidth));
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  border-radius: 0;
  font-family: inherit;
}

.form .form-group input:focus, .form .form-group textarea:focus, .form .form-group select:focus, .form .form-group input.valid, .form .form-group textarea.valid, .form .form-group select.valid {
  outline: none;
}

.form .form-group input.valid ~ label, .form .form-group textarea.valid ~ label, .form .form-group select.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group input:not(.no-focus):focus, .form .form-group textarea:not(.no-focus):focus, .form .form-group select:not(.no-focus):focus {
  outline: none;
}

.form .form-group input:not(.no-focus):focus ~ label, .form .form-group textarea:not(.no-focus):focus ~ label, .form .form-group select:not(.no-focus):focus ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group select option {
  color: var(--text);
}

.form .form-group select option:hover {
  color: var(--white);
  background-color: #000 !important;
}

.form .form-group textarea {
  height: var(--textareaheight);
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  border-radius: 0;
  padding-right: 15px;
  font-family: inherit;
  line-height: 1.2;
}

.form .form-group textarea::-webkit-scrollbar {
  background: none;
  width: 2px;
  height: 2px;
}

.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}

.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 15px;
}

.form .form-group textarea:focus, .form .form-group textarea.valid {
  height: calc(var(--textareaheight)  - 13px);
  outline: none;
  margin-top: 13px;
}

.form .form-group select:focus {
  outline: none;
}

.form .form-group select ~ label {
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: all .6s;
  position: absolute;
  translate: 0;
}

.form .form-group select.valid {
  color: var(--color);
}

.form .form-group select.valid ~ label {
  opacity: 1;
}

.form .form-group.file-input input[type="file"] {
  opacity: 0;
  z-index: 4;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize)  - var(--borderwidth));
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url("/assets/icon/clip-gray.svg") no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  position: relative;
}

.form .form-group.file-input .file-name:before, .form .form-group.file-input .file-name:after {
  position: absolute;
  inset: 0 0 0 3%;
}

.form .form-group.file-input .file-name:before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  text-overflow: ellipsis;
  background: none;
  width: 80%;
  overflow: hidden;
}

.form .form-group.file-input .file-name:after {
  content: "";
  background: var(--image);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
  right: 0;
}

.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.checkbox-full {
  --size: 20px;
  align-items: center;
  line-height: normal;
  display: flex;
  position: relative;
}

.checkbox-full:has(input:checked) .check-span {
  background: var(--primary);
}

.checkbox-full:has(input:checked) .check-span:before {
  opacity: 1;
}

.checkbox-full input {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.checkbox-full .check-span {
  --size: 20px;
  height: var(--size);
  width: var(--size);
  pointer-events: none;
  background: #d9d9d9;
  border-radius: 5px;
  flex: 0 auto;
  padding: 0;
  display: block;
  position: relative;
}

.checkbox-full .check-span:before {
  content: "";
  z-index: 2;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") 50% / 10px no-repeat;
  position: absolute;
  inset: 0;
}

.checkbox-full p {
  padding-left: 14px;
}

.radio-full {
  --size: 20px;
  align-items: center;
  line-height: normal;
  display: flex;
  position: relative;
}

.radio-full:has(input:checked) .check-span {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
  background: var(--primary);
}

.radio-full input {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.radio-full .check-span {
  --size: 17px;
  height: var(--size);
  width: var(--size);
  border: 1px solid var(--primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border-radius: 50%;
  flex: 0 auto;
  padding: 0;
  display: inline-block;
  position: relative;
}

.radio-full p {
  padding-left: 14px;
}

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

:root {
  --headerpadding: 12px;
  --headerheight: 90px;
  --headerfixed: 70px;
  --mobilesearchbar: 45px;
  --footerstrip: 38px;
  --filterstrip: 42px;
  --elementhover: #000;
  --primary: #fff;
  --colortext: #000;
  --red: #ff2323;
  --green: #4ea95f;
  --sucgreen: green;
  --blue: #2773e5;
  --text: #666;
  --white: #fff;
  --black: #000;
  --gray: #efefef;
  --container: 1280px;
  --containerfluid: 10px;
  --gradient-a: linear-gradient(90deg, #fff 40%, #efefef);
  --gradient-b: linear-gradient(90deg, #efefef 30%, #fff);
}

@media only screen and (width <= 991px) {
  :root {
    --headerheight: 90px;
    --headerfixed: 70px;
  }
}

@media only screen and (width <= 768px) {
  :root {
    --headerheight: 80px;
    --headerfixed: 60px;
  }
}

@media only screen and (width <= 540px) {
  :root {
    --headerheight: 70px;
    --headerfixed: 60px;
  }
}

.gray-bg {
  background-color: #efefef;
}

.sec-head {
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

@media only screen and (width <= 768px) {
  .sec-head {
    font-size: 18px;
  }
}

@media only screen and (width <= 540px) {
  .sec-head {
    font-size: 16px;
    line-height: 1.5;
  }
}

.sec-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.sec-pad {
  padding: 70px 0;
}

@media only screen and (width <= 991px) {
  .sec-pad {
    padding: 60px 0;
  }
}

@media only screen and (width <= 768px) {
  .sec-pad {
    padding: 50px 0;
  }
}

@media only screen and (width <= 540px) {
  .sec-pad {
    padding: 40px 0;
  }
}

body::-webkit-scrollbar {
  background: var(--black);
  width: 8px;
}

body::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb {
  background-color: #ccc;
}

@media only screen and (width <= 540px) {
  body {
    -webkit-tap-highlight-color: transparent;
  }
}

body.overflow-hidden {
  margin-right: 8px;
  overflow: hidden;
}

@media only screen and (width <= 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}

body.overflow-hidden header {
  width: calc(100% - 8px);
}

@media only screen and (width <= 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-optical-sizing: auto;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
}

a[href] {
  cursor: pointer;
  text-decoration: none;
  transition: all .5s;
}

a[href].logo {
  line-height: 0;
  display: block;
}

a[href]:not(.btn, .btn2) {
  color: #fff;
}

svg path {
  transition: all .5s;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

@media only screen and (width <= 1300px) {
  .container {
    padding: 0 25px;
  }
}

@media only screen and (width <= 767px) {
  .container {
    padding: 0 15px;
  }
}

@media only screen and (width <= 345px) {
  .container {
    padding: 0 13px;
  }
}

@media only screen and (width <= 320px) {
  .container {
    padding: 0 10px;
  }
}

@media only screen and (width <= 675px) {
  .container.container2 {
    padding-right: 0;
  }

  .container.container2 .heading {
    padding-right: 15px;
  }
}

@media only screen and (width <= 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}

@media only screen and (width <= 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  margin: 0 auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Le Jeune Deck;
  font-weight: normal;
}

h1 {
  text-transform: uppercase;
  font-size: 48px;
  line-height: 1.17;
}

@media only screen and (width <= 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.05;
}

h3 {
  text-transform: capitalize;
  font-size: 36px;
  line-height: 1.06;
}

.heading {
  text-align: center;
}

.heading h2 {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.282;
}

@media only screen and (width <= 991px) {
  .heading h2 {
    font-size: 26px;
  }
}

@media only screen and (width <= 768px) {
  .heading h2 {
    font-size: 24px;
  }
}

@media only screen and (width <= 540px) {
  .heading h2 {
    font-size: 20px;
  }
}

.heading.h-large h3, .heading.h-large h2 {
  font-size: 36px;
}

.heading.c-white h3, .heading.c-white h2 {
  color: var(--white);
}

.heading > p {
  margin-top: 10px;
}

.head {
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
}

@media only screen and (width <= 1024px) {
  .head {
    font-size: 70px;
  }
}

@media only screen and (width <= 991px) {
  .head {
    font-size: 60px;
  }
}

@media only screen and (width <= 768px) {
  .head {
    font-size: 40px;
  }
}

h4 {
  font-size: 36px;
  line-height: 1.28;
}

h5 {
  font-size: 24px;
  line-height: 1.25;
}

@media only screen and (width <= 1152px) {
  h5 {
    font-size: 22px;
  }
}

@media only screen and (width <= 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

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

.grid {
  display: grid;
}

.span-2 {
  grid-column: span(2);
}

.inline-flex {
  --gap: 12px;
  align-items: center;
  gap: 0 var(--gap);
  display: inline-flex;
}

img {
  max-width: 100%;
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input {
  border-radius: 0;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

button.remove, button.edit {
  text-transform: uppercase;
  font-size: 14px;
}

button.remove {
  color: var(--text);
}

.btn_wrap {
  align-items: center;
  gap: 20px;
  display: flex;
}

.tab-nav {
  cursor: default;
}

.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: #0000;
}

.tab-nav-content {
  position: relative;
}

.tab-nav-content .tabs:not(.active) {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  height: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.item-md {
  position: relative;
}

.item-md:before, .item-md:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: none;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.item-md figure, .item-md .figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.item-md figure img, .item-md figure video, .item-md .figure img, .item-md .figure video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.item-md figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md .link-md {
  z-index: 3;
  position: absolute;
  inset: 0;
}

.item-md.center-item figcaption {
  top: 50%;
  bottom: auto;
  translate: 0 -50%;
}

.testimony_col:before {
  background: linear-gradient(#0000 14%, #0009 88%);
}

.testimony_col figcaption {
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px;
  display: flex;
  bottom: 3%;
  translate: 0 3%;
}

.testimony_col figcaption .content h6, .testimony_col figcaption .content p {
  color: var(--white);
}

.testimony_col figcaption .content h6 {
  font-size: 24px;
}

@media only screen and (width <= 991px) {
  .testimony_col figcaption .content h6 {
    font-size: 22px;
  }
}

.testimony_col figcaption .content p {
  font-size: 14px;
}

.testimony_col figcaption .play-btn {
  --btnsize: 40px;
}

.product_col {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product_col.outofstock {
  pointer-events: none;
  cursor: no-drop;
}

.product_col.outofstock:before {
  content: "Out of stock";
  width: 100%;
  height: 100%;
  color: var(--white);
  z-index: 1;
  background-color: #00000021;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.product_col:hover figure img, .product_col:hover .figure img {
  transform: scale(1);
}

.product_col:hover .hoverItem {
  transform: translateY(0);
}

.product_col figure, .product_col .figure {
  width: 100%;
  height: 100%;
  max-height: 500px;
  padding: 20px 0;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.product_col figure img, .product_col .figure img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transform: scale(.9);
}

.product_col figcaption {
  padding: 0 20px 30px;
  overflow: hidden;
}

@media only screen and (width <= 540px) {
  .product_col figcaption {
    padding: 0 10px 10px;
  }
}

.product_col figcaption h6 {
  padding: 0 20px 5px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

@media only screen and (width <= 540px) {
  .product_col figcaption h6 {
    padding: 0 5px 5px;
  }
}

.product_col figcaption p {
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
}

@media only screen and (width <= 540px) {
  .product_col figcaption p {
    padding: 0 5px;
  }
}

.product_col .wislist {
  position: absolute;
  top: 3%;
  right: 5%;
  transform: translate(5%, -3%);
}

.product_col .wislist.added svg path, .product_col .wislist:hover svg path {
  fill: #000;
}

.product_col .hoverItem {
  align-items: center;
  width: 100%;
  transition: all .5s;
  display: flex;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
}

@media only screen and (width <= 540px) {
  .product_col .hoverItem {
    display: none;
    position: relative;
    transform: translateY(0);
  }
}

.product_col .hoverItem a, .product_col .hoverItem button {
  text-align: center;
  flex: 1;
  padding: 15px 10px;
  line-height: 1.2;
}

.product_col .hoverItem .enquireBtn {
  background: var(--black);
  color: var(--white);
  transition: all .5s;
}

.product_col .hoverItem .enquireBtn:hover {
  background: #3c3c3c;
}

@media only screen and (width <= 540px) {
  .product_col .hoverItem .enquireBtn {
    padding: 8px 5px;
    font-size: 12px;
  }
}

.product_col .hoverItem .viewDetails {
  background: var(--gray);
  color: var(--black);
  transition: all .5s;
}

.product_col .hoverItem .viewDetails:hover {
  background: #d9d9d9;
}

@media only screen and (width <= 540px) {
  .product_col .hoverItem .viewDetails {
    padding: 8px 5px;
    font-size: 12px;
  }
}

.category_col {
  cursor: pointer;
}

.category_col:before {
  background: linear-gradient(#0000 14%, #0009 88%);
}

.category_col:hover figure img {
  opacity: 0;
  transform: scale(1.2);
}

.category_col:hover figcaption h6, .category_col:hover figcaption p {
  opacity: 0;
}

.category_col:hover figcaption .btn_wrapper {
  transform: translateY(0);
}

.category_col figure {
  position: relative;
}

.category_col figure video {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.category_col figure img {
  transform-origin: 0 0;
  transition: all 1s;
}

.category_col figcaption {
  text-align: center;
  padding: 0 10px 20px;
  bottom: 5%;
  translate: 0 5%;
}

@media only screen and (width <= 991px) {
  .category_col figcaption {
    bottom: 2%;
    translate: 0 2%;
  }
}

@media only screen and (width <= 768px) {
  .category_col figcaption {
    bottom: 0;
    translate: 0%;
  }
}

.category_col figcaption h6, .category_col figcaption p {
  color: var(--white);
  transition: all .6s;
}

.category_col figcaption h6 {
  font-size: 24px;
}

@media only screen and (width <= 768px) {
  .category_col figcaption h6 {
    font-size: 22px;
  }
}

.category_col figcaption p {
  font-size: 14px;
}

.category_col figcaption .btn_wrapper {
  transition: all 1s;
  transform: translateY(7vw);
}

@media only screen and (width <= 768px) {
  .category_col figcaption .btn_wrapper {
    margin-top: 10px;
    transform: translateY(0);
  }
}

.overlay {
  z-index: 6;
  opacity: 0;
  cursor: pointer;
  background: #00000080;
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  inset: 0;
  transform: translateY(100%);
}

@media only screen and (width <= 991px) {
  .overlay {
    z-index: 2;
  }
}

@media only screen and (width <= 540px) {
  .overlay {
    display: none;
  }
}

.overlay.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.overlay2 {
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  background: #000000b3;
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  inset: 0;
  transform: translateY(100%);
}

@media only screen and (width <= 991px) {
  .overlay2 {
    z-index: 2;
  }
}

@media only screen and (width <= 675px) {
  .overlay2 {
    display: none;
  }
}

.overlay2.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.model {
  z-index: 7;
  background: var(--white);
  background-position: 0 80%;
  background-size: 75%;
  width: 100%;
  max-width: 435px;
  position: fixed;
  top: 0;
  bottom: 0;
}

.model .close:not(.btn) {
  position: absolute;
  top: 40px;
  right: 40px;
}

@media only screen and (width <= 520px) {
  .model .close:not(.btn) {
    top: 20px;
    right: 20px;
  }
}

.model .close:not(.btn) path {
  stroke: var(--black);
}

img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  transition: all .5s;
}

.btn {
  --padding: 10px;
  --height: 36px;
  height: var(--height);
  line-height: var(--height);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: all .5s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn:before, .btn:after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 0;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn:before {
  background-color: var(--white);
}

@media only screen and (width <= 540px) {
  .btn {
    --padding: 14px;
    font-size: 12px;
  }
}

.btn:hover {
  color: var(--black);
  padding: 0 var(--padding);
}

.btn:hover:before {
  height: 100%;
}

.btn:hover path {
  fill: var(--primary);
}

.btn.btn-large, .btn.btn-medium {
  letter-spacing: 0;
  font-size: 16px;
}

.btn.w-100 {
  width: 100%;
}

.btn.btn-large {
  --height: 52px;
  --padding: 38px;
}

.btn.btn-medium {
  --height: 45px;
  --padding: 25px;
}

.btn.btn-grad {
  background: linear-gradient(90deg, #fff, #b9b9b9);
}

.btn.btn-grad:hover {
  color: #000;
  background: linear-gradient(270deg, #fff, #fff);
}

.btn.black_fill {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn.black_fill:hover {
  color: var(--black);
  background: none;
  padding: 0;
}

.btn.gray_fill {
  color: var(--black);
  background: #d7d2d2;
  border: 1px solid #d7d2d2;
}

.btn.gray_fill:hover {
  color: var(--black);
  border-color: var(--black);
  background: none;
  padding: 0;
}

.btn.gray_border {
  color: var(--text);
  background: #fff;
  border: 1px solid #666;
  border-radius: 5px;
  padding: 0 18px;
}

.btn.gray_border:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn.black_round {
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 50px;
}

.btn.black_round path {
  fill: var(--black);
}

.btn.black_round:after {
  background-color: var(--black);
  height: 100%;
}

.btn.black_round:hover {
  color: var(--black);
  background-color: var(--white);
}

.btn.black_round:hover:after {
  height: 0;
}

.btn.black_round:hover:before {
  height: 100%;
}

.btn.black_round:hover path {
  fill: var(--white);
}

.btn.black {
  color: var(--black);
  border-bottom: 1px solid var(--black);
}

.btn.black:before {
  background-color: var(--black);
}

.btn.black:hover {
  color: var(--white);
}

.btn.black-border {
  color: var(--black);
  padding: 0 var(--padding);
  border: 1px solid #000;
}

.btn.black-border path {
  fill: var(--primary);
}

.btn.black-border:before {
  background-color: var(--black);
}

.btn.black-border:hover {
  color: var(--white);
}

.btn.black-border:hover:before {
  width: 100%;
}

.btn.black-border:hover path {
  fill: var(--white);
}

.btn2 {
  --padding: 18px;
  --height: 36px;
  letter-spacing: .1em;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  padding: 0 var(--padding);
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.btn2:hover {
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--black);
}

.btn2:hover path {
  fill: var(--black);
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item)  - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
  display: grid;
}

.form-grid .full {
  grid-column: span var(--item);
}

.banner {
  position: relative;
}

.banner:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: linear-gradient(270deg, #0000 0%, #000c 100%), linear-gradient(#0000 14%, #0009 88%);
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.banner .bg {
  height: 650px;
  line-height: 0;
}

@media only screen and (width <= 1366px) {
  .banner .bg {
    height: calc(100vh - var(--headerheight));
  }
}

.banner .bg video, .banner .bg img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .banner-wrapper {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  translate: 0 -50%;
}

.banner .banner-wrapper h1 {
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--white);
  font-family: Le Jeune Deck;
  font-size: 48px;
  line-height: 1.28;
}

.banner .banner-wrapper .content p {
  color: var(--white);
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.23;
}

@media only screen and (width <= 991px) {
  .banner .banner-wrapper .content p {
    font-size: 18px;
  }
}

@media only screen and (width <= 768px) {
  .banner .banner-wrapper .content p {
    font-size: 16px;
  }
}

.banner-banner .content h1 {
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 32px;
  line-height: 1.1875;
}

.banner-banner .content p {
  color: var(--text);
  margin-top: 18px;
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}

.swiper-nav.center-full {
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  user-select: auto;
}

.swiper-nav.group {
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
  display: flex;
}

@media only screen and (width <= 1152px) {
  .swiper-nav.group {
    gap: 0 8px;
  }
}

.swiper-nav.icon-width-auto .swiper-next svg, .swiper-nav.icon-width-auto .swiper-prev svg {
  width: auto;
  height: auto;
}

.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: .4;
}

.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.play-btn {
  --btnsize: 56px;
  --border: 2px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border: var(--border) solid var(--bordercolor);
  background: none;
  border-radius: 50%;
  position: relative;
}

@media only screen and (width <= 1024px) {
  .play-btn {
    --btnsize: 50px;
  }
}

@media only screen and (width <= 675px) {
  .play-btn {
    --btnsize: 45px;
    --border: 1px;
  }
}

.play-btn:before {
  content: "";
  background: var(--bordercolor);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 1.5s ease-out infinite pulse-border;
  display: block;
  position: absolute;
  inset: 50% 0 0 50%;
  transform: translateX(-50%)translateY(-50%);
}

@keyframes pulse-border {
  0% {
    opacity: .5;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1.5);
  }
}

.play-btn:after {
  content: "";
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.website-content > :first-child {
  margin-top: 0 !important;
}

.website-content > :last-child {
  margin-bottom: 0 !important;
}

.website-content h1, .website-content h2, .website-content h3, .website-content h4, .website-content h5, .website-content h6 {
  color: var(--black);
}

.website-content h1 {
  text-align: center;
  margin-bottom: 45px;
  font-family: Le Jeune Deck;
  font-size: 48px;
}

@media only screen and (width <= 675px) {
  .website-content h1 {
    font-size: 34px;
  }
}

@media only screen and (width <= 520px) {
  .website-content h1 {
    font-size: 30px;
  }
}

.website-content h2 {
  font-size: 34px;
}

@media only screen and (width <= 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}

.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
}

@media only screen and (width <= 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}

.website-content h4 {
  font-size: 22px;
}

@media only screen and (width <= 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}

.website-content h5 {
  font-size: 18px;
}

@media only screen and (width <= 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}

.website-content h6 {
  font-size: 18px;
}

.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}

.website-content h5, .website-content h6 {
  margin: 28px 0 18px;
}

.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-spacing: -.07em;
}

.website-content p b, .website-content li b {
  font-weight: normal;
}

.website-content a {
  color: var(--black) !important;
}

.website-content a:hover {
  text-decoration: underline;
}

.website-content p, .website-content ul {
  margin-bottom: 20px;
}

.website-content ul {
  padding-left: 18px;
}

@media only screen and (width <= 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}

.website-content ul li {
  padding-left: 28px;
  position: relative;
}

@media only screen and (width <= 675px) {
  .website-content ul li {
    padding-left: 20px;
  }
}

.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}

.website-content ul li:before {
  content: "";
  aspect-ratio: 1;
  background: var(--black);
  border-radius: 50%;
  width: 10px;
  position: absolute;
  top: 8px;
  left: 0;
}

.container-fluid.slider-section .upper-sec .slider-nav {
  right: 3%;
  transform: translate(3%, -50%);
}

@media only screen and (width <= 675px) {
  .slider-section .container {
    padding-right: 0;
  }
}

.slider-section .upper-sec {
  margin-bottom: 4rem;
  position: relative;
}

@media only screen and (width <= 991px) {
  .slider-section .upper-sec {
    margin-bottom: 3rem;
  }
}

@media only screen and (width <= 768px) {
  .slider-section .upper-sec {
    margin-bottom: 2rem;
  }
}

@media only screen and (width <= 540px) {
  .slider-section .upper-sec {
    margin-bottom: 1.5rem;
  }
}

.slider-section .upper-sec .slider-nav {
  align-items: center;
  gap: 20px;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

@media only screen and (width <= 768px) {
  .slider-section .upper-sec .slider-nav {
    display: none;
  }
}

.slider-section .upper-sec .slider-nav .swiper-prev svg, .slider-section .upper-sec .slider-nav .swiper-prev img {
  transform: scaleX(-1);
}

.slider-section .upper-sec .heading {
  text-align: center;
}

.lctn {
  color: var(--text);
  --arrow: 20px;
  --space: 5px;
  padding-left: calc(var(--arrow)  + var(--space));
  font-size: 14px;
  line-height: 1;
  position: relative;
}

.lctn:before {
  content: "";
  height: var(--arrow);
  width: var(--arrow);
  transform-origin: 100%;
  background-image: url("/assets/icon/location-gradient.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all .5s;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

.lctn.clndr {
  color: var(--white);
  --arrow: 17px;
  --space: 12px;
}

.lctn.clndr:before {
  background-image: url("/assets/icon/calender.svg");
}

.common-grid {
  grid-gap: 50px 20px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@media only screen and (width <= 991px) {
  .common-grid {
    grid-gap: 30px 18px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (width <= 675px) {
  .common-grid {
    grid-gap: 10px;
    grid-template-columns: 100%;
  }
}

.product-col {
  position: relative;
}

.product-col:before {
  content: "";
  opacity: 0;
  z-index: 1;
  background: #fff;
  width: 0;
  height: 86%;
  display: block;
  position: absolute;
  top: 7%;
  left: 0%;
  transform: skewX(-20deg);
  box-shadow: 0 0 55px 12px #fff;
}

.product-col:hover:before {
  animation: .4s linear shine;
}

.product-col .figure, .product-col figure {
  line-height: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.product-col .figure .add-to, .product-col figure .add-to {
  text-align: right;
  opacity: 0;
  justify-content: end;
  align-items: center;
  width: 100%;
  transition: all .5s;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.product-col .figure .add-to a, .product-col figure .add-to a {
  padding: 11px 20px;
  transition: all .5s;
  display: block;
}

.product-col .figure .add-to a svg, .product-col figure .add-to a svg {
  vertical-align: middle;
  width: 25px;
  height: 25px;
}

.product-col .figure .add-to a.add2cart, .product-col figure .add-to a.add2cart {
  background-color: #13195f;
}

.product-col .figure .add-to a.add2cart:hover, .product-col figure .add-to a.add2cart:hover {
  background-color: #fff;
}

.product-col .figure .add-to a.add2cart:hover svg path, .product-col figure .add-to a.add2cart:hover svg path {
  fill: var(--primary);
}

.product-col .figure .add-to a.add2wish, .product-col figure .add-to a.add2wish {
  background-color: #030735;
}

.product-col .figure .add-to a.add2wish.active, .product-col figure .add-to a.add2wish.active {
  background-color: #fff;
}

.product-col .figure .add-to a.add2wish.active svg path, .product-col figure .add-to a.add2wish.active svg path {
  fill: var(--primary);
}

.product-col .figure .add-to a.add2wish:hover, .product-col figure .add-to a.add2wish:hover {
  background-color: #fff;
}

.product-col .figure .add-to a.add2wish:hover svg path, .product-col figure .add-to a.add2wish:hover svg path {
  stroke: var(--primary);
}

.product-col .figure img, .product-col figure img {
  -o-object-position: cover;
  object-position: cover;
  -o-object-position: top;
  object-position: top;
  transform-origin: 0 0;
  width: 100%;
  transition: all .5s;
}

.product-col figcaption {
  text-align: center;
  max-width: 305px;
  margin: 0 auto;
  padding: 18px 20px 0;
}

.product-col figcaption .pro_name {
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.product-col figcaption .price {
  text-align: center;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.product-col figcaption .color-select-wrap {
  padding-bottom: 10px;
}

.product-col figcaption .color-select-wrap li {
  vertical-align: middle;
  display: inline-block;
  position: relative;
}

.product-col figcaption .color-select-wrap li:not(:last-child) {
  margin-right: 15px;
}

.product-col figcaption .color-select-wrap li:has(input:checked) span:before {
  opacity: 1;
}

.product-col figcaption .color-select-wrap li span {
  background-color: #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.product-col figcaption .color-select-wrap li span:before {
  content: "";
  opacity: 0;
  border: 1px solid #000;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  position: absolute;
  bottom: -3px;
  left: -3px;
}

.product-col figcaption .color-select-wrap li input {
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.product-col figcaption .color-select-wrap li input:checked ~ span:before, .product-col:hover .add-to {
  opacity: 1;
}

.product-col:hover .figure img, .product-col:hover figure img {
  transform: scale(1.1);
}

.product-col .wishlist-ico, .product-col-2 .wishlist-ico {
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: absolute;
  top: 13px;
  right: 10px;
}

.product-col .wishlist-ico img, .product-col .wishlist-ico svg, .product-col-2 .wishlist-ico img, .product-col-2 .wishlist-ico svg {
  width: 15px;
  height: auto;
}

.product-col .wishlist-ico:hover, .product-col .wishlist-ico.is-active, .product-col-2 .wishlist-ico:hover, .product-col-2 .wishlist-ico.is-active {
  background: var(--primary);
}

.product-col .wishlist-ico:hover img, .product-col .wishlist-ico.is-active img, .product-col-2 .wishlist-ico:hover img, .product-col-2 .wishlist-ico.is-active img {
  filter: brightness(0) saturate() invert() sepia() saturate(1%) hue-rotate(236deg) brightness(103%) contrast(101%);
}

.product-col:hover .wishlist-ico, .product-col-2:hover .wishlist-ico {
  opacity: 1;
  pointer-events: all;
}

.product-col-2, .product-col-3 {
  position: relative;
}

.product-col-2:before, .product-col-3:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: none;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.product-col-2 .figure, .product-col-2 figure, .product-col-3 .figure, .product-col-3 figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.product-col-2 .figure img, .product-col-2 figure img, .product-col-3 .figure img, .product-col-3 figure img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.product-col-2:before, .product-col-3:before {
  z-index: 1;
}

.product-col-2:hover .figure img, .product-col-2:hover figure img, .product-col-3:hover .figure img, .product-col-3:hover figure img {
  transform: scale(1.1);
}

.product-col-2 figcaption, .product-col-3 figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.product-col-2:before {
  background: linear-gradient(#0000 0%, #000c 100%);
}

.product-col-2 figcaption {
  text-align: center;
  padding: 0 2rem 46px;
}

.product-col-2 figcaption .prdt-nm, .product-col-2 figcaption .prd-price {
  color: var(--white);
  font-size: 18px;
  display: block;
}

.product-col-2 figcaption .prdt-nm {
  margin-bottom: 8px;
}

.product-col-3:before {
  background: linear-gradient(#0000 0%, #000000f2 100%);
}

.product-col-3:hover .figure img, .product-col-3:hover figure img {
  transform: scale(1.05);
}

.product-col-3 figure img, .product-col-3 .figure img {
  aspect-ratio: .9;
}

.product-col-3 figcaption {
  text-align: center;
  --btnheight: 36px;
  --titlepad: 30px;
  margin-bottom: 3.5rem;
  padding: 0 2rem;
  transition: all .5s;
}

.product-col-3 figcaption .ico {
  opacity: 0;
  margin-bottom: 20px;
  line-height: 0;
  transition: all .5s;
  transform: translateY(30px)scale(.4);
}

.product-col-3 figcaption h6 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 22px;
  line-height: 1.283;
  transition: all .6s;
}

.product-col-3 .xbjs {
  opacity: 0;
  transition: all .6s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(30px)scale(.9);
}

.product-col-3 .xbjs .btn {
  --height: var(--btnheight);
}

.product-col-3:hover {
  transform: translateY(0);
}

.product-col-3:hover figcaption .ico {
  opacity: 1;
  transform: translateY(0)scale(1);
}

.product-col-3:hover figcaption h6 {
  padding-bottom: calc(var(--btnheight)  + var(--titlepad));
}

.product-col-3:hover figcaption .xbjs {
  opacity: 1;
  transform: translateY(0)scale(1);
}

.gray-bg {
  background: var(--gray);
}

.gradient-head {
  text-transform: initial;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: var(--gradient-a);
  display: inline-block;
}

.whitetxt {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  background: var(--primary);
  border-color: var(--primary);
  border-radius: 50%;
  width: 17px;
  height: 17px;
  top: 50%;
  translate: 0 -50%;
  border: none !important;
}

.ui-state-default:focus, .ui-widget-content .ui-state-default:focus, .ui-widget-header .ui-state-default:focus, .ui-button:focus, html .ui-button.ui-state-disabled:hover:focus, html .ui-button.ui-state-disabled:active:focus {
  outline: none;
}

.ui-slider-horizontal {
  height: 2px;
  border: none !important;
}

.ui-widget-content {
  background: #cecece;
  border: none !important;
}

.ui-widget-header {
  background: var(--primary);
}

.kmr-select-wrap {
  --labelheight: 45px;
  --liheight: 34px;
  --boxsize: calc(var(--liheight)  - 14px);
  --arrowsize: 16px;
  --space: 11px;
  display: inline-block;
  position: relative;
}

.kmr-select-wrap .label {
  color: var(--black);
  height: var(--labelheight);
  line-height: var(--labelheight);
  background-image: url("/assets/icon/arrow-down-black.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize)  + var(--space));
  cursor: pointer;
  caret-color: #0000;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Lato, sans-serif;
  font-size: 12px;
}

.kmr-select-wrap.active {
  --btn: 10px;
}

.kmr-select-wrap.active.price_select .kmr-select-menu .upper-sec .reset-btn {
  display: block;
}

.kmr-select-wrap.slt-rgt .kmr-select-menu {
  left: auto;
  right: 0;
}

.kmr-select-wrap.color-select .kmr-select-menu li .in-bx {
  border-color: #ccc;
  border-radius: 50%;
}

.kmr-select-wrap.price_select .kmr-select-menu {
  width: 325px;
  padding: 20px;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec {
  display: flex;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn {
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn svg {
  vertical-align: middle;
  width: 15px;
  height: auto;
  margin-left: 3px;
  display: inline-block;
}

.kmr-select-wrap.price_select .kmr-select-menu h6 {
  color: var(--black);
  flex: 1;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.kmr-select-wrap.price_select .product-range-slider-wrap {
  margin: 30px 0 40px;
}

.kmr-select-wrap.price_select .price-range-input-wrap {
  color: var(--text);
  align-items: center;
  gap: 18px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input {
  background: var(--white);
  height: 30px;
  color: var(--text);
  border: 1px solid #e0e0e0;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input {
  width: 100%;
  color: var(--text);
  border: none;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input:focus {
  outline: none;
}

.kmr-select-wrap .kmr-select-menu {
  z-index: 1;
  background: var(--white);
  width: 260px;
  max-height: 244px;
  padding: 20px 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  overflow-y: auto;
  box-shadow: 0 2px 8px #63636333;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar {
  background: none;
  width: 6px;
  height: 6px;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-track {
  box-shadow: none;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 10px;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx {
  border-radius: 50%;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx:before {
  display: none;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]):has(input:checked) li .in-bx {
  outline: 5px solid var(--white);
  outline-offset: -10px;
}

.kmr-select-wrap .kmr-select-menu li {
  height: var(--liheight);
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  display: flex;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx {
  background: var(--black);
  transition: all .4s;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx:before {
  opacity: 1;
}

.kmr-select-wrap .kmr-select-menu li .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--black);
  border-radius: 3px;
  transition: all;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li .in-bx:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") center / 48% no-repeat;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.kmr-select-wrap .kmr-select-menu li span {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: block;
}

.kmr-select-wrap .kmr-select-menu li input {
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

@media only screen and (width <= 991px) {
  .breadcrumps {
    display: none;
  }
}

.breadcrumps li {
  vertical-align: middle;
  display: inline-block;
}

.breadcrumps li a {
  font-size: 14px;
  color: var(--text) !important;
}

@media only screen and (width <= 520px) {
  .breadcrumps li a {
    text-overflow: ellipsis;
    font-size: 12px;
  }
}

.breadcrumps li a.active {
  color: var(--black) !important;
}

.breadcrumps li:not(:last-child) {
  padding-right: 20px;
  position: relative;
}

@media only screen and (width <= 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}

.breadcrumps li:not(:last-child):before {
  content: ">";
  color: var(--text);
  font-family: monospace;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 0 -50%;
}

.breadcrumps li:not(:first-child) {
  padding-left: 20px;
}

@media only screen and (width <= 520px) {
  .breadcrumps li:not(:first-child) {
    padding-left: 8px;
  }
}

[data-scrollTo] {
  cursor: pointer;
}

.fancybox__container {
  --fancybox-bg: var(--black);
}

.green-color {
  color: var(--green) !important;
}

.light-green {
  color: var(--green);
}

.red-color {
  color: var(--red) !important;
}

.orange-color {
  color: orange !important;
}

em {
  font-style: normal;
}

.mt-hdrfxd {
  margin-top: var(--headerfixed);
}

.mt-hdr {
  margin-top: var(--headerheight);
}

.w-full {
  width: 100%;
}

.disc {
  text-align: center;
  margin: 15px 0;
}

.disc p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  transition: all .5s;
}

.disc p a {
  transition: all .5s;
  color: var(--primary) !important;
}

.disc p a:hover {
  text-decoration: underline;
}

.check_term {
  margin: 15px 0;
}

.check_term .input_box {
  --boxsize: 15px;
  gap: 10px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}

.check_term .input_box:has(input:checked) .in-bx {
  background: var(--primary);
  transition: all .4s;
}

.check_term .input_box:has(input:checked) .in-bx:before {
  opacity: 1;
}

.check_term .input_box input {
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.check_term .input_box .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--black);
  border-radius: 3px;
  transition: all;
  position: relative;
}

.check_term .input_box .in-bx:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") center / 48% no-repeat;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.check_term .input_box p {
  color: var(--text);
  flex: 1;
  font-size: 14px;
  line-height: 1;
}

.sm-block {
  display: none;
}

@media only screen and (width <= 540px) {
  .sm-block {
    display: block;
  }
}

.md-block {
  display: none;
}

@media only screen and (width <= 768px) {
  .md-block {
    display: block;
  }
}

.sm-none {
  display: block;
}

@media only screen and (width <= 540px) {
  .sm-none {
    display: none;
  }
}

.md-none {
  display: block;
}

@media only screen and (width <= 768px) {
  .md-none {
    display: none;
  }
}

.bestSeller_slider_wrapper {
  z-index: 0;
  position: relative;
}

.bestSeller_slider_wrapper .container-fluid .btn_wrapper {
  text-align: center;
  margin-top: 50px;
}

.verify {
  color: red;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
}

@keyframes scroll {
  0% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(10px);
  }
}

.display-none {
  display: none;
}

.text-black {
  color: var(--black) !important;
}

.page-not-found-container {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.page-not-found-container .not-found {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.page-not-found-container .not-found img {
  filter: grayscale();
  width: 120px;
}

.page-not-found-container .not-found h3 {
  color: var(--black);
}

.page-not-found-container .not-found p {
  color: var(--black);
  padding-bottom: 10px;
}

.size {
  text-align: center;
}

.size.cart_size .size_count {
  background: var(--white);
}

.size.cart_size .size_count input {
  max-width: 35px;
  height: 20px;
}

.size p {
  text-transform: uppercase;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

@media only screen and (width <= 540px) {
  .size p {
    color: var(--text);
  }
}

.size .size_count {
  border: 1px solid #b4b1b1;
  border-radius: 5px;
  align-items: center;
  gap: 3px;
  width: 100%;
  padding: 7px 6px;
  display: flex;
}

@media only screen and (width <= 540px) {
  .size .size_count {
    gap: 1px;
    padding: 4px 2px;
  }
}

.size .size_count button {
  line-height: 1;
}

.size .size_count button svg {
  width: 15px;
  height: 15px;
}

.size .size_count input {
  text-align: center;
  background: none;
  border: none;
  outline: none;
  max-width: 40px;
  height: 30px;
  padding: 0 5px;
  line-height: 1;
}

.model.address-pop {
  max-width: 500px;
  height: fit-content;
  top: unset;
  transition: all .5s;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 100%);
}

@media only screen and (width <= 540px) {
  .model.address-pop {
    height: 100%;
  }
}

.model.address-pop.is-open {
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.model.address-pop .close {
  top: 20px;
  right: 20px;
}

.model.address-pop .close svg {
  width: 20px;
  height: 20px;
}

.model.address-pop .model-body {
  padding: 20px 25px;
}

@media only screen and (width <= 540px) {
  .model.address-pop .model-body {
    padding: 60px 25px;
  }
}

.model.address-pop .model-body h3 {
  text-transform: uppercase;
  font-size: 20px;
}

.model.address-pop .model-body .form {
  --gaptb: 10px;
  --inputsize: 38px;
  --labelfontbefore: 14px;
  --labelafter: #000;
  --labelfontafter: 12px;
  --borderbefore: #666;
  --borderafter: #000;
  height: 400px;
  padding-top: 20px;
  overflow-y: auto;
}

@media only screen and (width <= 540px) {
  .model.address-pop .model-body .form {
    height: 100%;
    overflow-y: visible;
  }
}

.model.address-pop .model-body .form .double-group {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  display: grid;
}

.model.address-pop .model-body .form h6 {
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.model.address-pop .model-body .disclaimer {
  align-items: center;
  gap: 7px;
  padding: 15px 0 20px;
  display: flex;
  position: relative;
}

.model.address-pop .model-body .disclaimer .check-box {
  --box: 20px;
  height: 100%;
}

.model.address-pop .model-body .disclaimer .check-box .in-bx {
  width: var(--box);
  height: var(--box);
  z-index: 1;
  background: #d9d7d7;
  border-radius: 3px;
  position: relative;
}

.model.address-pop .model-body .disclaimer .check-box .in-bx:before {
  content: "";
  background: url("/assets/icon/tick-white.svg") 50% no-repeat;
  background-size: calc(var(--box)  - 10px);
  filter: invert();
  z-index: 1;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.model.address-pop .model-body .disclaimer .check-box input {
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.model.address-pop .model-body .disclaimer .check-box input:checked ~ .in-bx:before {
  opacity: 1;
}

.model.address-pop .model-body .disclaimer p {
  color: var(--text);
  font-size: 14px;
}

.thankyou_box {
  --container: 800px;
}

@media only screen and (width <= 768px) {
  .thankyou_box {
    --container: 520px;
  }
}

.thankyou_box .container {
  background: url("/assets/images/checkout/checkout_bg.svg") 0 100% / 140px no-repeat;
  border: 1px solid #d2d2d2;
  align-items: center;
  padding: 40px 25px 70px;
  display: flex;
}

@media only screen and (width <= 768px) {
  .thankyou_box .container {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
}

.thankyou_box .container .colA {
  text-align: center;
  flex: 0 40%;
}

.thankyou_box .container .colA .icon img {
  width: 50px;
}

.thankyou_box .container .colA p {
  max-width: 150px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.thankyou_box .container .colB {
  border-left: 1px solid #00000047;
  flex: 1;
  padding-left: 40px;
}

@media only screen and (width <= 768px) {
  .thankyou_box .container .colB {
    border-left: none;
    padding-left: 0;
  }
}

.thankyou_box .container .colB p, .thankyou_box .container .colB span, .thankyou_box .container .colB a:not(.btn) {
  color: var(--text);
}

.thankyou_box .container .colB span, .thankyou_box .container .colB a:not(.btn) {
  margin-bottom: 20px;
  font-weight: 700;
  display: block;
}

@media only screen and (width <= 540px) {
  .thankyou_box .container .colB span, .thankyou_box .container .colB a:not(.btn) {
    margin-bottom: 15px;
  }
}

.thankyou_box .container .colB .btn {
  border-radius: 50px;
  padding: 0 30px;
}

.extra_page .container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.extra_page .container .content {
  text-align: center;
  background: url("/assets/images/checkout/checkout_bg.svg") 0 100% / 140px no-repeat;
  border: 1px solid #d2d2d2;
  width: 100%;
  max-width: 600px;
  padding: 40px 25px 70px;
}

@media only screen and (width <= 768px) {
  .extra_page .container .content {
    background-size: 100px;
    padding: 30px 20px 50px;
  }
}

.extra_page .container .content .icon {
  margin-bottom: 10px;
}

@media only screen and (width <= 768px) {
  .extra_page .container .content .icon {
    margin-bottom: 5px;
  }
}

.extra_page .container .content .icon.wrong img {
  filter: grayscale();
  width: 120px;
  height: 80px;
}

@media only screen and (width <= 768px) {
  .extra_page .container .content .icon.wrong img {
    width: 80px;
    height: 50px;
  }
}

.extra_page .container .content .icon img {
  width: 50px;
}

@media only screen and (width <= 768px) {
  .extra_page .container .content .icon img {
    width: 40px;
    height: 40px;
  }
}

.extra_page .container .content h6 {
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-size: 28px;
}

@media only screen and (width <= 768px) {
  .extra_page .container .content h6 {
    font-size: 24px;
  }
}

.extra_page .container .content p {
  color: var(--text);
  max-width: 420px;
  margin: 0 auto;
  font-size: 16px;
}

.extra_page .container .content .btn {
  margin-top: 30px;
  padding: 0 30px;
}

.model.changePass-pop {
  max-width: 450px;
  height: fit-content;
  top: unset;
  transition: all .5s;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 100%);
}

.model.changePass-pop.is-open {
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.model.changePass-pop .close {
  top: 20px;
  right: 20px;
}

.model.changePass-pop .close svg {
  width: 20px;
  height: 20px;
}

.model.changePass-pop .model-body {
  padding: 40px 25px;
}

.model.changePass-pop .model-body h6 {
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.model.changePass-pop .model-body .form {
  --inputsize: 36px;
  margin-top: 30px;
}

.model.changePass-pop .model-body .form .btn_wrapper {
  margin-top: 15px;
}

.home-secB {
  position: relative;
}

.home-secB.aboutus_globe {
  padding: 100px 0;
}

.home-secB .heading {
  max-width: 470px;
  margin: 0 auto;
}

.home-secB .video {
  z-index: -1;
  opacity: .1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.home-secB .video video {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.home-secB .flags_wrapper {
  grid-template-columns: repeat(6, 1fr);
  max-width: 900px;
  margin: 60px auto;
}

@media only screen and (width <= 991px) {
  .home-secB .flags_wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 50px auto;
  }
}

@media only screen and (width <= 540px) {
  .home-secB .flags_wrapper {
    gap: 20px;
    margin: 30px auto;
  }
}

.home-secB .flags_wrapper figure {
  align-items: center;
  gap: 10px;
  display: flex;
}

@media only screen and (width <= 540px) {
  .home-secB .flags_wrapper figure {
    flex-direction: column;
  }
}

.home-secB .flags_wrapper figure img {
  width: 35px;
}

.home-secB .flags_wrapper figure p {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

@media only screen and (width <= 540px) {
  .home-secB .flags_wrapper figure p {
    font-size: 14px;
  }
}

.banner.video-banner .bg {
  height: 100vh;
}

@media only screen and (width <= 768px) {
  .banner.video-banner .bg {
    height: 80vh;
  }
}

@media only screen and (width <= 540px) {
  .banner.video-banner .bg {
    height: 50vh;
  }
}

.banner.video-banner .bg .banner-wrapper {
  width: 100%;
  left: 50%;
  top: unset;
  bottom: 15%;
  translate: -50% 15%;
}

@media only screen and (width <= 768px) {
  .banner.video-banner .bg .banner-wrapper {
    width: 100%;
  }
}

.banner.video-banner .bg .banner-wrapper .content .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 30px;
}

@media only screen and (width <= 1024px) {
  .banner.video-banner .bg .banner-wrapper .content .icon {
    margin: 0 auto 25px;
  }
}

@media only screen and (width <= 540px) {
  .banner.video-banner .bg .banner-wrapper .content .icon {
    width: 50px;
    height: 50px;
  }
}

@media only screen and (width <= 991px) {
  .banner.video-banner .bg .banner-wrapper .content h1 {
    font-size: 42px;
  }
}

@media only screen and (width <= 768px) {
  .banner.video-banner .bg .banner-wrapper .content h1 {
    font-size: 36px;
  }
}

@media only screen and (width <= 540px) {
  .banner.video-banner .bg .banner-wrapper .content h1 {
    font-size: 30px;
  }
}

.banner.video-banner .bg .banner-wrapper .content p {
  max-width: 400px;
  margin: 0 auto;
  font-size: 16px;
}

@media only screen and (width <= 540px) {
  .banner.video-banner .bg .banner-wrapper .content p {
    font-size: 14px;
  }
}

.banner.video-banner .bg .banner-wrapper .content .scroll_down {
  margin-top: 30px;
  animation: 1.5s ease-in-out infinite forwards scroll;
}

.pay_online_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

@media only screen and (width <= 991px) {
  .pay_online_wrapper {
    flex-direction: column;
  }
}

.pay_online_wrapper .colA, .pay_online_wrapper .colB {
  flex: 1;
}

.pay_online_wrapper .colA .bg {
  height: 100vh;
}

@media only screen and (width <= 991px) {
  .pay_online_wrapper .colA .bg {
    height: 70vh;
  }
}

.pay_online_wrapper .colA .bg .banner-wrapper {
  text-align: center;
  width: 100%;
  right: unset;
  left: 50%;
  translate: -50% -50%;
}

.pay_online_wrapper .colA .bg .banner-wrapper h1 {
  letter-spacing: 2px;
  font-size: 36px;
  line-height: 1.5;
}

@media only screen and (width <= 540px) {
  .pay_online_wrapper .colA .bg .banner-wrapper h1 {
    padding-bottom: 5px;
    font-size: 30px;
  }
}

.pay_online_wrapper .colA .bg .banner-wrapper p {
  color: var(--white);
}

.pay_online_wrapper .colB {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 40px 20px 40px 60px;
  display: flex;
}

@media only screen and (width <= 991px) {
  .pay_online_wrapper .colB {
    padding: 40px 20px;
  }
}

.pay_online_wrapper .colB .form {
  --item: 2;
  --gaptb: 20px;
  --inputsize: 38px;
  width: 100%;
}

@media only screen and (width <= 540px) {
  .pay_online_wrapper .colB .form {
    --item: 1;
  }
}

.pay_online_wrapper .colB .form .form-group.payonline {
  --image: url("/assets/icon/rupee.svg") no-repeat;
  --left: 30px;
  padding-left: var(--left);
}

.pay_online_wrapper .colB .form .form-group.payonline:before {
  z-index: -1;
  background: #f0f0f0;
  border-radius: 10px;
  height: 100%;
}

.pay_online_wrapper .colB .form .form-group.payonline:after {
  content: "";
  background: var(--image);
  z-index: -1;
  background-position: 0;
  background-repeat: no-repeat;
  background-size: auto 50%;
  width: 100%;
  height: 100%;
  left: 10px;
}

.pay_online_wrapper .colB .form .form-group.payonline label {
  left: var(--left);
}

.pay_online_wrapper .colB .form .form-group.payonline.active label {
  display: none;
}

.pay_online_wrapper .colB .form .btn_wrapper {
  text-align: center;
  margin-top: 20px;
}

.pay_online_wrapper .colB .form .btn_wrapper .btn {
  letter-spacing: normal;
  text-transform: none;
  padding: 0 20px;
}

.pay_online_wrapper .ub_logo {
  background: var(--white);
  z-index: 1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  display: flex;
  position: absolute;
  top: 40%;
  left: 47%;
  transform: translate(-47%, -40%);
  box-shadow: 0 3px 8px #0000003d;
}

@media only screen and (width <= 991px) {
  .pay_online_wrapper .ub_logo {
    display: none;
  }
}

.pay_online_wrapper .ub_logo img {
  width: 40px;
  height: 40px;
}

.landing-banner.banner .bg {
  height: 100vh;
}

.landing-banner.banner .bg .banner-wrapper {
  z-index: 2;
}

.landing-banner.banner .bg .banner-wrapper .content {
  justify-content: center;
  align-items: center;
  gap: 40px;
  display: flex;
}

.landing-banner.banner .bg .banner-wrapper .content h1 {
  text-align: left;
  flex: 0 auto;
  max-width: 680px;
  font-size: 40px;
}

.landing-banner.banner .bg .banner-wrapper .content .form_wrapper {
  background-color: var(--white);
  border-radius: 5px;
  flex: 1;
  max-width: 500px;
  padding: 40px 30px;
}

.landing-banner.banner .bg .banner-wrapper .content .form_wrapper .title {
  max-width: 300px;
  margin: 0 auto 30px;
}

.landing-banner.banner .bg .banner-wrapper .content .form_wrapper .title .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
}

.landing-banner.banner .bg .banner-wrapper .content .form_wrapper .title p {
  color: var(--black);
}

.landing-banner.banner .bg .banner-wrapper .content .form_wrapper .landing-form {
  --item: 2;
  --gaptb: 20px;
  --gaplr: 20px;
}

.landing-banner.banner .bg .banner-wrapper .content .form_wrapper .landing-form .btn {
  margin-top: 10px;
}

.landing-secA {
  --container: 800px;
}

.no-record-container {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.no-record-container .not-found {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.no-record-container .not-found img {
  filter: grayscale();
  width: 120px;
}

.no-record-container .not-found h3 {
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-size: 28px;
}

@media only screen and (width <= 768px) {
  .no-record-container .not-found h3 {
    font-size: 24px;
  }
}

.no-record-container .not-found p {
  color: var(--text);
  max-width: 420px;
  margin: 0 auto;
  font-size: 16px;
}

.no-record-container .not-found .btn {
  margin-top: 30px;
  padding: 0 30px;
}

.loader_wrap {
  z-index: 1000;
  opacity: 1;
  background-color: #0c0c0cd4;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
}

.loader_wrap .center {
  z-index: 999;
  border-radius: 10px;
  width: 120px;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader_wrap .center img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  animation: 1.5s linear infinite loader;
}

@keyframes loader {
  0% {
    transform: scale(.9);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(.9);
  }
}


/* [project]/public/assets/font/font.css [app-client] (css) */
@font-face {
  font-family: Le Jeune Deck;
  src: url("../media/LeJeuneDeck-Regular.aac46afd.woff2") format("woff2"), url("../media/LeJeuneDeck-Regular.0243dc62.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* [project]/public/assets/css/animate.css [app-client] (css) */
@media (width >= 1007px) {
  .kmr-animate {
    transition: all 1.5s;
  }

  [data-animate][data-animate][data-animate-duration="50"], body[data-animate-duration="50"] [data-animate] {
    transition-duration: 50ms;
  }

  [data-animate][data-animate][data-animate-delay="50"], body[data-animate-delay="50"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="50"].kmr-animate, body[data-animate-delay="50"] [data-animate].kmr-animate {
    transition-delay: 50ms;
  }

  [data-animate][data-animate][data-animate-duration="100"], body[data-animate-duration="100"] [data-animate] {
    transition-duration: .1s;
  }

  [data-animate][data-animate][data-animate-delay="100"], body[data-animate-delay="100"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="100"].kmr-animate, body[data-animate-delay="100"] [data-animate].kmr-animate {
    transition-delay: .1s;
  }

  [data-animate][data-animate][data-animate-duration="150"], body[data-animate-duration="150"] [data-animate] {
    transition-duration: .15s;
  }

  [data-animate][data-animate][data-animate-delay="150"], body[data-animate-delay="150"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="150"].kmr-animate, body[data-animate-delay="150"] [data-animate].kmr-animate {
    transition-delay: .15s;
  }

  [data-animate][data-animate][data-animate-duration="200"], body[data-animate-duration="200"] [data-animate] {
    transition-duration: .2s;
  }

  [data-animate][data-animate][data-animate-delay="200"], body[data-animate-delay="200"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="200"].kmr-animate, body[data-animate-delay="200"] [data-animate].kmr-animate {
    transition-delay: .2s;
  }

  [data-animate][data-animate][data-animate-duration="250"], body[data-animate-duration="250"] [data-animate] {
    transition-duration: .25s;
  }

  [data-animate][data-animate][data-animate-delay="250"], body[data-animate-delay="250"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="250"].kmr-animate, body[data-animate-delay="250"] [data-animate].kmr-animate {
    transition-delay: .25s;
  }

  [data-animate][data-animate][data-animate-duration="300"], body[data-animate-duration="300"] [data-animate] {
    transition-duration: .3s;
  }

  [data-animate][data-animate][data-animate-delay="300"], body[data-animate-delay="300"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="300"].kmr-animate, body[data-animate-delay="300"] [data-animate].kmr-animate {
    transition-delay: .3s;
  }

  [data-animate][data-animate][data-animate-duration="350"], body[data-animate-duration="350"] [data-animate] {
    transition-duration: .35s;
  }

  [data-animate][data-animate][data-animate-delay="350"], body[data-animate-delay="350"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="350"].kmr-animate, body[data-animate-delay="350"] [data-animate].kmr-animate {
    transition-delay: .35s;
  }

  [data-animate][data-animate][data-animate-duration="400"], body[data-animate-duration="400"] [data-animate] {
    transition-duration: .4s;
  }

  [data-animate][data-animate][data-animate-delay="400"], body[data-animate-delay="400"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="400"].kmr-animate, body[data-animate-delay="400"] [data-animate].kmr-animate {
    transition-delay: .4s;
  }

  [data-animate][data-animate][data-animate-duration="450"], body[data-animate-duration="450"] [data-animate] {
    transition-duration: .45s;
  }

  [data-animate][data-animate][data-animate-delay="450"], body[data-animate-delay="450"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="450"].kmr-animate, body[data-animate-delay="450"] [data-animate].kmr-animate {
    transition-delay: .45s;
  }

  [data-animate][data-animate][data-animate-duration="500"], body[data-animate-duration="500"] [data-animate] {
    transition-duration: .5s;
  }

  [data-animate][data-animate][data-animate-delay="500"], body[data-animate-delay="500"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="500"].kmr-animate, body[data-animate-delay="500"] [data-animate].kmr-animate {
    transition-delay: .5s;
  }

  [data-animate][data-animate][data-animate-duration="550"], body[data-animate-duration="550"] [data-animate] {
    transition-duration: .55s;
  }

  [data-animate][data-animate][data-animate-delay="550"], body[data-animate-delay="550"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="550"].kmr-animate, body[data-animate-delay="550"] [data-animate].kmr-animate {
    transition-delay: .55s;
  }

  [data-animate][data-animate][data-animate-duration="600"], body[data-animate-duration="600"] [data-animate] {
    transition-duration: .6s;
  }

  [data-animate][data-animate][data-animate-delay="600"], body[data-animate-delay="600"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="600"].kmr-animate, body[data-animate-delay="600"] [data-animate].kmr-animate {
    transition-delay: .6s;
  }

  [data-animate][data-animate][data-animate-duration="650"], body[data-animate-duration="650"] [data-animate] {
    transition-duration: .65s;
  }

  [data-animate][data-animate][data-animate-delay="650"], body[data-animate-delay="650"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="650"].kmr-animate, body[data-animate-delay="650"] [data-animate].kmr-animate {
    transition-delay: .65s;
  }

  [data-animate][data-animate][data-animate-duration="700"], body[data-animate-duration="700"] [data-animate] {
    transition-duration: .7s;
  }

  [data-animate][data-animate][data-animate-delay="700"], body[data-animate-delay="700"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="700"].kmr-animate, body[data-animate-delay="700"] [data-animate].kmr-animate {
    transition-delay: .7s;
  }

  [data-animate][data-animate][data-animate-duration="750"], body[data-animate-duration="750"] [data-animate] {
    transition-duration: .75s;
  }

  [data-animate][data-animate][data-animate-delay="750"], body[data-animate-delay="750"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="750"].kmr-animate, body[data-animate-delay="750"] [data-animate].kmr-animate {
    transition-delay: .75s;
  }

  [data-animate][data-animate][data-animate-duration="800"], body[data-animate-duration="800"] [data-animate] {
    transition-duration: .8s;
  }

  [data-animate][data-animate][data-animate-delay="800"], body[data-animate-delay="800"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="800"].kmr-animate, body[data-animate-delay="800"] [data-animate].kmr-animate {
    transition-delay: .8s;
  }

  [data-animate][data-animate][data-animate-duration="850"], body[data-animate-duration="850"] [data-animate] {
    transition-duration: .85s;
  }

  [data-animate][data-animate][data-animate-delay="850"], body[data-animate-delay="850"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="850"].kmr-animate, body[data-animate-delay="850"] [data-animate].kmr-animate {
    transition-delay: .85s;
  }

  [data-animate][data-animate][data-animate-duration="900"], body[data-animate-duration="900"] [data-animate] {
    transition-duration: .9s;
  }

  [data-animate][data-animate][data-animate-delay="900"], body[data-animate-delay="900"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="900"].kmr-animate, body[data-animate-delay="900"] [data-animate].kmr-animate {
    transition-delay: .9s;
  }

  [data-animate][data-animate][data-animate-duration="950"], body[data-animate-duration="950"] [data-animate] {
    transition-duration: .95s;
  }

  [data-animate][data-animate][data-animate-delay="950"], body[data-animate-delay="950"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="950"].kmr-animate, body[data-animate-delay="950"] [data-animate].kmr-animate {
    transition-delay: .95s;
  }

  [data-animate][data-animate][data-animate-duration="1000"], body[data-animate-duration="1000"] [data-animate] {
    transition-duration: 1s;
  }

  [data-animate][data-animate][data-animate-delay="1000"], body[data-animate-delay="1000"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1000"].kmr-animate, body[data-animate-delay="1000"] [data-animate].kmr-animate {
    transition-delay: 1s;
  }

  [data-animate][data-animate][data-animate-duration="1050"], body[data-animate-duration="1050"] [data-animate] {
    transition-duration: 1.05s;
  }

  [data-animate][data-animate][data-animate-delay="1050"], body[data-animate-delay="1050"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1050"].kmr-animate, body[data-animate-delay="1050"] [data-animate].kmr-animate {
    transition-delay: 1.05s;
  }

  [data-animate][data-animate][data-animate-duration="1100"], body[data-animate-duration="1100"] [data-animate] {
    transition-duration: 1.1s;
  }

  [data-animate][data-animate][data-animate-delay="1100"], body[data-animate-delay="1100"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1100"].kmr-animate, body[data-animate-delay="1100"] [data-animate].kmr-animate {
    transition-delay: 1.1s;
  }

  [data-animate][data-animate][data-animate-duration="1150"], body[data-animate-duration="1150"] [data-animate] {
    transition-duration: 1.15s;
  }

  [data-animate][data-animate][data-animate-delay="1150"], body[data-animate-delay="1150"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1150"].kmr-animate, body[data-animate-delay="1150"] [data-animate].kmr-animate {
    transition-delay: 1.15s;
  }

  [data-animate][data-animate][data-animate-duration="1200"], body[data-animate-duration="1200"] [data-animate] {
    transition-duration: 1.2s;
  }

  [data-animate][data-animate][data-animate-delay="1200"], body[data-animate-delay="1200"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1200"].kmr-animate, body[data-animate-delay="1200"] [data-animate].kmr-animate {
    transition-delay: 1.2s;
  }

  [data-animate][data-animate][data-animate-duration="1250"], body[data-animate-duration="1250"] [data-animate] {
    transition-duration: 1.25s;
  }

  [data-animate][data-animate][data-animate-delay="1250"], body[data-animate-delay="1250"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1250"].kmr-animate, body[data-animate-delay="1250"] [data-animate].kmr-animate {
    transition-delay: 1.25s;
  }

  [data-animate][data-animate][data-animate-duration="1300"], body[data-animate-duration="1300"] [data-animate] {
    transition-duration: 1.3s;
  }

  [data-animate][data-animate][data-animate-delay="1300"], body[data-animate-delay="1300"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1300"].kmr-animate, body[data-animate-delay="1300"] [data-animate].kmr-animate {
    transition-delay: 1.3s;
  }

  [data-animate][data-animate][data-animate-duration="1350"], body[data-animate-duration="1350"] [data-animate] {
    transition-duration: 1.35s;
  }

  [data-animate][data-animate][data-animate-delay="1350"], body[data-animate-delay="1350"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1350"].kmr-animate, body[data-animate-delay="1350"] [data-animate].kmr-animate {
    transition-delay: 1.35s;
  }

  [data-animate][data-animate][data-animate-duration="1400"], body[data-animate-duration="1400"] [data-animate] {
    transition-duration: 1.4s;
  }

  [data-animate][data-animate][data-animate-delay="1400"], body[data-animate-delay="1400"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1400"].kmr-animate, body[data-animate-delay="1400"] [data-animate].kmr-animate {
    transition-delay: 1.4s;
  }

  [data-animate][data-animate][data-animate-duration="1450"], body[data-animate-duration="1450"] [data-animate] {
    transition-duration: 1.45s;
  }

  [data-animate][data-animate][data-animate-delay="1450"], body[data-animate-delay="1450"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1450"].kmr-animate, body[data-animate-delay="1450"] [data-animate].kmr-animate {
    transition-delay: 1.45s;
  }

  [data-animate][data-animate][data-animate-duration="1500"], body[data-animate-duration="1500"] [data-animate] {
    transition-duration: 1.5s;
  }

  [data-animate][data-animate][data-animate-delay="1500"], body[data-animate-delay="1500"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1500"].kmr-animate, body[data-animate-delay="1500"] [data-animate].kmr-animate {
    transition-delay: 1.5s;
  }

  [data-animate][data-animate][data-animate-duration="1550"], body[data-animate-duration="1550"] [data-animate] {
    transition-duration: 1.55s;
  }

  [data-animate][data-animate][data-animate-delay="1550"], body[data-animate-delay="1550"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1550"].kmr-animate, body[data-animate-delay="1550"] [data-animate].kmr-animate {
    transition-delay: 1.55s;
  }

  [data-animate][data-animate][data-animate-duration="1600"], body[data-animate-duration="1600"] [data-animate] {
    transition-duration: 1.6s;
  }

  [data-animate][data-animate][data-animate-delay="1600"], body[data-animate-delay="1600"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1600"].kmr-animate, body[data-animate-delay="1600"] [data-animate].kmr-animate {
    transition-delay: 1.6s;
  }

  [data-animate][data-animate][data-animate-duration="1650"], body[data-animate-duration="1650"] [data-animate] {
    transition-duration: 1.65s;
  }

  [data-animate][data-animate][data-animate-delay="1650"], body[data-animate-delay="1650"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1650"].kmr-animate, body[data-animate-delay="1650"] [data-animate].kmr-animate {
    transition-delay: 1.65s;
  }

  [data-animate][data-animate][data-animate-duration="1700"], body[data-animate-duration="1700"] [data-animate] {
    transition-duration: 1.7s;
  }

  [data-animate][data-animate][data-animate-delay="1700"], body[data-animate-delay="1700"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1700"].kmr-animate, body[data-animate-delay="1700"] [data-animate].kmr-animate {
    transition-delay: 1.7s;
  }

  [data-animate][data-animate][data-animate-duration="1750"], body[data-animate-duration="1750"] [data-animate] {
    transition-duration: 1.75s;
  }

  [data-animate][data-animate][data-animate-delay="1750"], body[data-animate-delay="1750"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1750"].kmr-animate, body[data-animate-delay="1750"] [data-animate].kmr-animate {
    transition-delay: 1.75s;
  }

  [data-animate][data-animate][data-animate-duration="1800"], body[data-animate-duration="1800"] [data-animate] {
    transition-duration: 1.8s;
  }

  [data-animate][data-animate][data-animate-delay="1800"], body[data-animate-delay="1800"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1800"].kmr-animate, body[data-animate-delay="1800"] [data-animate].kmr-animate {
    transition-delay: 1.8s;
  }

  [data-animate][data-animate][data-animate-duration="1850"], body[data-animate-duration="1850"] [data-animate] {
    transition-duration: 1.85s;
  }

  [data-animate][data-animate][data-animate-delay="1850"], body[data-animate-delay="1850"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1850"].kmr-animate, body[data-animate-delay="1850"] [data-animate].kmr-animate {
    transition-delay: 1.85s;
  }

  [data-animate][data-animate][data-animate-duration="1900"], body[data-animate-duration="1900"] [data-animate] {
    transition-duration: 1.9s;
  }

  [data-animate][data-animate][data-animate-delay="1900"], body[data-animate-delay="1900"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1900"].kmr-animate, body[data-animate-delay="1900"] [data-animate].kmr-animate {
    transition-delay: 1.9s;
  }

  [data-animate][data-animate][data-animate-duration="1950"], body[data-animate-duration="1950"] [data-animate] {
    transition-duration: 1.95s;
  }

  [data-animate][data-animate][data-animate-delay="1950"], body[data-animate-delay="1950"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="1950"].kmr-animate, body[data-animate-delay="1950"] [data-animate].kmr-animate {
    transition-delay: 1.95s;
  }

  [data-animate][data-animate][data-animate-duration="2000"], body[data-animate-duration="2000"] [data-animate] {
    transition-duration: 2s;
  }

  [data-animate][data-animate][data-animate-delay="2000"], body[data-animate-delay="2000"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2000"].kmr-animate, body[data-animate-delay="2000"] [data-animate].kmr-animate {
    transition-delay: 2s;
  }

  [data-animate][data-animate][data-animate-duration="2050"], body[data-animate-duration="2050"] [data-animate] {
    transition-duration: 2.05s;
  }

  [data-animate][data-animate][data-animate-delay="2050"], body[data-animate-delay="2050"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2050"].kmr-animate, body[data-animate-delay="2050"] [data-animate].kmr-animate {
    transition-delay: 2.05s;
  }

  [data-animate][data-animate][data-animate-duration="2100"], body[data-animate-duration="2100"] [data-animate] {
    transition-duration: 2.1s;
  }

  [data-animate][data-animate][data-animate-delay="2100"], body[data-animate-delay="2100"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2100"].kmr-animate, body[data-animate-delay="2100"] [data-animate].kmr-animate {
    transition-delay: 2.1s;
  }

  [data-animate][data-animate][data-animate-duration="2150"], body[data-animate-duration="2150"] [data-animate] {
    transition-duration: 2.15s;
  }

  [data-animate][data-animate][data-animate-delay="2150"], body[data-animate-delay="2150"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2150"].kmr-animate, body[data-animate-delay="2150"] [data-animate].kmr-animate {
    transition-delay: 2.15s;
  }

  [data-animate][data-animate][data-animate-duration="2200"], body[data-animate-duration="2200"] [data-animate] {
    transition-duration: 2.2s;
  }

  [data-animate][data-animate][data-animate-delay="2200"], body[data-animate-delay="2200"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2200"].kmr-animate, body[data-animate-delay="2200"] [data-animate].kmr-animate {
    transition-delay: 2.2s;
  }

  [data-animate][data-animate][data-animate-duration="2250"], body[data-animate-duration="2250"] [data-animate] {
    transition-duration: 2.25s;
  }

  [data-animate][data-animate][data-animate-delay="2250"], body[data-animate-delay="2250"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2250"].kmr-animate, body[data-animate-delay="2250"] [data-animate].kmr-animate {
    transition-delay: 2.25s;
  }

  [data-animate][data-animate][data-animate-duration="2300"], body[data-animate-duration="2300"] [data-animate] {
    transition-duration: 2.3s;
  }

  [data-animate][data-animate][data-animate-delay="2300"], body[data-animate-delay="2300"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2300"].kmr-animate, body[data-animate-delay="2300"] [data-animate].kmr-animate {
    transition-delay: 2.3s;
  }

  [data-animate][data-animate][data-animate-duration="2350"], body[data-animate-duration="2350"] [data-animate] {
    transition-duration: 2.35s;
  }

  [data-animate][data-animate][data-animate-delay="2350"], body[data-animate-delay="2350"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2350"].kmr-animate, body[data-animate-delay="2350"] [data-animate].kmr-animate {
    transition-delay: 2.35s;
  }

  [data-animate][data-animate][data-animate-duration="2400"], body[data-animate-duration="2400"] [data-animate] {
    transition-duration: 2.4s;
  }

  [data-animate][data-animate][data-animate-delay="2400"], body[data-animate-delay="2400"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2400"].kmr-animate, body[data-animate-delay="2400"] [data-animate].kmr-animate {
    transition-delay: 2.4s;
  }

  [data-animate][data-animate][data-animate-duration="2450"], body[data-animate-duration="2450"] [data-animate] {
    transition-duration: 2.45s;
  }

  [data-animate][data-animate][data-animate-delay="2450"], body[data-animate-delay="2450"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2450"].kmr-animate, body[data-animate-delay="2450"] [data-animate].kmr-animate {
    transition-delay: 2.45s;
  }

  [data-animate][data-animate][data-animate-duration="2500"], body[data-animate-duration="2500"] [data-animate] {
    transition-duration: 2.5s;
  }

  [data-animate][data-animate][data-animate-delay="2500"], body[data-animate-delay="2500"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2500"].kmr-animate, body[data-animate-delay="2500"] [data-animate].kmr-animate {
    transition-delay: 2.5s;
  }

  [data-animate][data-animate][data-animate-duration="2550"], body[data-animate-duration="2550"] [data-animate] {
    transition-duration: 2.55s;
  }

  [data-animate][data-animate][data-animate-delay="2550"], body[data-animate-delay="2550"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2550"].kmr-animate, body[data-animate-delay="2550"] [data-animate].kmr-animate {
    transition-delay: 2.55s;
  }

  [data-animate][data-animate][data-animate-duration="2600"], body[data-animate-duration="2600"] [data-animate] {
    transition-duration: 2.6s;
  }

  [data-animate][data-animate][data-animate-delay="2600"], body[data-animate-delay="2600"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2600"].kmr-animate, body[data-animate-delay="2600"] [data-animate].kmr-animate {
    transition-delay: 2.6s;
  }

  [data-animate][data-animate][data-animate-duration="2650"], body[data-animate-duration="2650"] [data-animate] {
    transition-duration: 2.65s;
  }

  [data-animate][data-animate][data-animate-delay="2650"], body[data-animate-delay="2650"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2650"].kmr-animate, body[data-animate-delay="2650"] [data-animate].kmr-animate {
    transition-delay: 2.65s;
  }

  [data-animate][data-animate][data-animate-duration="2700"], body[data-animate-duration="2700"] [data-animate] {
    transition-duration: 2.7s;
  }

  [data-animate][data-animate][data-animate-delay="2700"], body[data-animate-delay="2700"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2700"].kmr-animate, body[data-animate-delay="2700"] [data-animate].kmr-animate {
    transition-delay: 2.7s;
  }

  [data-animate][data-animate][data-animate-duration="2750"], body[data-animate-duration="2750"] [data-animate] {
    transition-duration: 2.75s;
  }

  [data-animate][data-animate][data-animate-delay="2750"], body[data-animate-delay="2750"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2750"].kmr-animate, body[data-animate-delay="2750"] [data-animate].kmr-animate {
    transition-delay: 2.75s;
  }

  [data-animate][data-animate][data-animate-duration="2800"], body[data-animate-duration="2800"] [data-animate] {
    transition-duration: 2.8s;
  }

  [data-animate][data-animate][data-animate-delay="2800"], body[data-animate-delay="2800"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2800"].kmr-animate, body[data-animate-delay="2800"] [data-animate].kmr-animate {
    transition-delay: 2.8s;
  }

  [data-animate][data-animate][data-animate-duration="2850"], body[data-animate-duration="2850"] [data-animate] {
    transition-duration: 2.85s;
  }

  [data-animate][data-animate][data-animate-delay="2850"], body[data-animate-delay="2850"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2850"].kmr-animate, body[data-animate-delay="2850"] [data-animate].kmr-animate {
    transition-delay: 2.85s;
  }

  [data-animate][data-animate][data-animate-duration="2900"], body[data-animate-duration="2900"] [data-animate] {
    transition-duration: 2.9s;
  }

  [data-animate][data-animate][data-animate-delay="2900"], body[data-animate-delay="2900"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2900"].kmr-animate, body[data-animate-delay="2900"] [data-animate].kmr-animate {
    transition-delay: 2.9s;
  }

  [data-animate][data-animate][data-animate-duration="2950"], body[data-animate-duration="2950"] [data-animate] {
    transition-duration: 2.95s;
  }

  [data-animate][data-animate][data-animate-delay="2950"], body[data-animate-delay="2950"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="2950"].kmr-animate, body[data-animate-delay="2950"] [data-animate].kmr-animate {
    transition-delay: 2.95s;
  }

  [data-animate][data-animate][data-animate-duration="3000"], body[data-animate-duration="3000"] [data-animate] {
    transition-duration: 3s;
  }

  [data-animate][data-animate][data-animate-delay="3000"], body[data-animate-delay="3000"] [data-animate] {
    transition-delay: 0;
  }

  [data-animate][data-animate][data-animate-delay="3000"].kmr-animate, body[data-animate-delay="3000"] [data-animate].kmr-animate {
    transition-delay: 3s;
  }

  [data-animate][data-animate][data-animate-easing="linear"], body[data-animate-easing="linear"] [data-animate] {
    transition-timing-function: cubic-bezier(.25, .25, .75, .75);
  }

  [data-animate][data-animate][data-animate-easing="ease"], body[data-animate-easing="ease"] [data-animate] {
    transition-timing-function: ease;
  }

  [data-animate][data-animate][data-animate-easing="ease-in"], body[data-animate-easing="ease-in"] [data-animate] {
    transition-timing-function: ease-in;
  }

  [data-animate][data-animate][data-animate-easing="ease-out"], body[data-animate-easing="ease-out"] [data-animate] {
    transition-timing-function: ease-out;
  }

  [data-animate][data-animate][data-animate-easing="ease-in-out"], body[data-animate-easing="ease-in-out"] [data-animate] {
    transition-timing-function: ease-in-out;
  }

  [data-animate][data-animate][data-animate-easing="ease-in-back"], body[data-animate-easing="ease-in-back"] [data-animate] {
    transition-timing-function: cubic-bezier(.6, -.28, .735, .045);
  }

  [data-animate][data-animate][data-animate-easing="ease-out-back"], body[data-animate-easing="ease-out-back"] [data-animate] {
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
  }

  [data-animate][data-animate][data-animate-easing="ease-in-out-back"], body[data-animate-easing="ease-in-out-back"] [data-animate] {
    transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
  }

  [data-animate][data-animate][data-animate-easing="ease-in-sine"], body[data-animate-easing="ease-in-sine"] [data-animate] {
    transition-timing-function: cubic-bezier(.47, 0, .745, .715);
  }

  [data-animate][data-animate][data-animate-easing="ease-out-sine"], body[data-animate-easing="ease-out-sine"] [data-animate] {
    transition-timing-function: cubic-bezier(.39, .575, .565, 1);
  }

  [data-animate][data-animate][data-animate-easing="ease-in-out-sine"], body[data-animate-easing="ease-in-out-sine"] [data-animate] {
    transition-timing-function: cubic-bezier(.445, .05, .55, .95);
  }

  [data-animate][data-animate][data-animate-easing="ease-in-quad"], body[data-animate-easing="ease-in-quad"] [data-animate] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53);
  }

  [data-animate][data-animate][data-animate-easing="ease-out-quad"], body[data-animate-easing="ease-out-quad"] [data-animate] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94);
  }

  [data-animate][data-animate][data-animate-easing="ease-in-out-quad"], body[data-animate-easing="ease-in-out-quad"] [data-animate] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955);
  }

  [data-animate][data-animate][data-animate-easing="ease-in-cubic"], body[data-animate-easing="ease-in-cubic"] [data-animate] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53);
  }

  [data-animate][data-animate][data-animate-easing="ease-out-cubic"], body[data-animate-easing="ease-out-cubic"] [data-animate] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94);
  }

  [data-animate][data-animate][data-animate-easing="ease-in-out-cubic"], body[data-animate-easing="ease-in-out-cubic"] [data-animate] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955);
  }

  [data-animate][data-animate][data-animate-easing="ease-in-quart"], body[data-animate-easing="ease-in-quart"] [data-animate] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53);
  }

  [data-animate][data-animate][data-animate-easing="ease-out-quart"], body[data-animate-easing="ease-out-quart"] [data-animate] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94);
  }

  [data-animate][data-animate][data-animate-easing="ease-in-out-quart"], body[data-animate-easing="ease-in-out-quart"] [data-animate] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955);
  }

  [data-animate^="fade"][data-animate^="fade"] {
    opacity: 0;
    transition-property: opacity, transform;
  }

  [data-animate^="fade"][data-animate^="fade"].kmr-animate {
    opacity: 1;
    transform: translateZ(0);
  }

  [data-animate="fade-up"] {
    transform: translate3d(0, 100px, 0);
  }

  [data-animate="fade-down"] {
    transform: translate3d(0, -100px, 0);
  }

  [data-animate="fade-right"] {
    transform: translate3d(-100px, 0, 0);
  }

  [data-animate="fade-left"] {
    transform: translate3d(100px, 0, 0);
  }

  [data-animate="fade-up-right"] {
    transform: translate3d(-100px, 100px, 0);
  }

  [data-animate="fade-up-left"] {
    transform: translate3d(100px, 100px, 0);
  }

  [data-animate="fade-down-right"] {
    transform: translate3d(-100px, -100px, 0);
  }

  [data-animate="fade-down-left"] {
    transform: translate3d(100px, -100px, 0);
  }

  [data-animate^="zoom"][data-animate^="zoom"] {
    opacity: 0;
    transition-property: opacity, transform;
  }

  [data-animate^="zoom"][data-animate^="zoom"].kmr-animate {
    opacity: 1;
    transform: translateZ(0)scale(1);
  }

  [data-animate="zoom-in"] {
    transform: scale(.6);
  }

  [data-animate="zoom-in-up"] {
    transform: translate3d(0, 100px, 0)scale(.6);
  }

  [data-animate="zoom-in-down"] {
    transform: translate3d(0, -100px, 0)scale(.6);
  }

  [data-animate="zoom-in-right"] {
    transform: translate3d(-100px, 0, 0)scale(.6);
  }

  [data-animate="zoom-in-left"] {
    transform: translate3d(100px, 0, 0)scale(.6);
  }

  [data-animate="zoom-out"] {
    transform: scale(1.2);
  }

  [data-animate="zoom-out-up"] {
    transform: translate3d(0, 100px, 0)scale(1.2);
  }

  [data-animate="zoom-out-down"] {
    transform: translate3d(0, -100px, 0)scale(1.2);
  }

  [data-animate="zoom-out-right"] {
    transform: translate3d(-100px, 0, 0)scale(1.2);
  }

  [data-animate="zoom-out-left"] {
    transform: translate3d(100px, 0, 0)scale(1.2);
  }

  [data-animate^="slide"][data-animate^="slide"] {
    transition-property: transform;
  }

  [data-animate^="slide"][data-animate^="slide"].kmr-animate {
    transform: translateZ(0);
  }

  [data-animate="slide-up"] {
    transform: translate3d(0, 100%, 0);
  }

  [data-animate="slide-down"] {
    transform: translate3d(0, -100%, 0);
  }

  [data-animate="slide-right"] {
    transform: translate3d(-100%, 0, 0);
  }

  [data-animate="slide-left"] {
    transform: translate3d(100%, 0, 0);
  }

  [data-animate^="flip"][data-animate^="flip"] {
    backface-visibility: hidden;
    transition-property: transform;
  }

  [data-animate="flip-left"] {
    transform: perspective(2500px)rotateY(-100deg);
  }

  [data-animate="flip-left"].kmr-animate {
    transform: perspective(2500px)rotateY(0);
  }

  [data-animate="flip-right"] {
    transform: perspective(2500px)rotateY(100deg);
  }

  [data-animate="flip-right"].kmr-animate {
    transform: perspective(2500px)rotateY(0);
  }

  [data-animate="flip-up"] {
    transform: perspective(2500px)rotateX(-100deg);
  }

  [data-animate="flip-up"].kmr-animate {
    transform: perspective(2500px)rotateX(0);
  }

  [data-animate="flip-down"] {
    transform: perspective(2500px)rotateX(100deg);
  }

  [data-animate="flip-down"].kmr-animate {
    transform: perspective(2500px)rotateX(0);
  }
}


/* [project]/app/global.css [app-client] (css) */
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.form {
  --inputsize: 42px;
  --labelbefore: var(--text);
  --labelafter: var(--black);
  --borderbefore: var(--text);
  --borderafter: var(--black);
  --labelfontbefore: 16px;
  --labelfontafter: 14px;
  --font: normal;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}

.form .form-group {
  --selectheight: var(--inputsize);
  flex: 0 100%;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  position: relative;
}

.form .form-group.active:after {
  width: 100%;
}

.form .form-group:before, .form .form-group:after {
  content: "";
  height: var(--borderwidth);
  transition: all .5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.form .form-group:before {
  background: var(--borderbefore);
}

.form .form-group:after {
  background: var(--borderafter);
  width: 0;
}

.form .form-group label {
  font-weight: var(--font);
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  background: none;
  transition: all .3s;
  position: absolute;
}

.form .form-group input, .form .form-group textarea, .form .form-group select {
  height: calc(var(--inputsize)  - var(--borderwidth));
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  border-radius: 0;
  font-family: inherit;
}

.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid, .form .form-group select:focus, .form .form-group select.valid {
  outline: none;
}

.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label, .form .form-group select:focus ~ label, .form .form-group select.valid ~ label {
  font-size: var(--labelfontafter);
  color: var(--labelafter);
  top: calc(var(--labelfontafter) / -2);
}

.form .form-group select option {
  color: var(--text);
}

.form .form-group select option:hover {
  color: var(--white);
  background-color: #000 !important;
}

.form .form-group textarea {
  height: var(--textareaheight);
  resize: none;
  width: 100%;
  color: var(--color);
  font-size: inherit;
  cursor: initial;
  padding: 0 var(--paddingleftright);
  background: none;
  border: none;
  border-radius: 0;
  padding-right: 15px;
  font-family: inherit;
  line-height: 1.2;
}

.form .form-group textarea::-webkit-scrollbar {
  background: none;
  width: 2px;
  height: 2px;
}

.form .form-group textarea::-webkit-scrollbar-track {
  box-shadow: none;
}

.form .form-group textarea::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 15px;
}

.form .form-group textarea:focus, .form .form-group textarea.valid {
  height: calc(var(--textareaheight)  - 13px);
  outline: none;
  margin-top: 13px;
}

.form .form-group select:focus {
  outline: none;
}

.form .form-group select ~ label {
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: all .6s;
  position: absolute;
  translate: 0;
}

.form .form-group select.valid {
  color: var(--color);
}

.form .form-group select.valid ~ label {
  opacity: 1;
}

.form .form-group.file-input input[type="file"] {
  opacity: 0;
  z-index: 4;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize)  - var(--borderwidth));
  --filename: "Attach Resume*";
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url("/assets/icon/clip-gray.svg") no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  position: relative;
}

.form .form-group.file-input .file-name:before, .form .form-group.file-input .file-name:after {
  position: absolute;
  inset: 0 0 0 3%;
}

.form .form-group.file-input .file-name:before {
  content: var(--filenameinitial);
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize)  - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  text-overflow: ellipsis;
  background: none;
  width: 80%;
  overflow: hidden;
}

.form .form-group.file-input .file-name:after {
  content: "";
  background: var(--image);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
  right: 0;
}

.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.checkbox-full {
  --size: 20px;
  align-items: center;
  line-height: normal;
  display: flex;
  position: relative;
}

.checkbox-full:has(input:checked) .check-span {
  background: var(--primary);
}

.checkbox-full:has(input:checked) .check-span:before {
  opacity: 1;
}

.checkbox-full input {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.checkbox-full .check-span {
  --size: 20px;
  height: var(--size);
  width: var(--size);
  pointer-events: none;
  background: #d9d9d9;
  border-radius: 5px;
  flex: 0 auto;
  padding: 0;
  display: block;
  position: relative;
}

.checkbox-full .check-span:before {
  content: "";
  z-index: 2;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") 50% / 10px no-repeat;
  position: absolute;
  inset: 0;
}

.checkbox-full p {
  padding-left: 14px;
}

.radio-full {
  --size: 20px;
  align-items: center;
  line-height: normal;
  display: flex;
  position: relative;
}

.radio-full:has(input:checked) .check-span {
  background: var(--primary);
  outline-offset: -4px;
  outline: 2px solid var(--white);
  background: var(--primary);
}

.radio-full input {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.radio-full .check-span {
  --size: 17px;
  height: var(--size);
  width: var(--size);
  border: 1px solid var(--primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border-radius: 50%;
  flex: 0 auto;
  padding: 0;
  display: inline-block;
  position: relative;
}

.radio-full p {
  padding-left: 14px;
}

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

:root {
  --headerpadding: 12px;
  --headerheight: 90px;
  --headerfixed: 70px;
  --mobilesearchbar: 45px;
  --footerstrip: 38px;
  --filterstrip: 42px;
  --elementhover: #000;
  --primary: #fff;
  --colortext: #000;
  --red: #ff2323;
  --green: #4ea95f;
  --sucgreen: green;
  --blue: #2773e5;
  --text: #666;
  --white: #fff;
  --black: #000;
  --gray: #efefef;
  --container: 1280px;
  --containerfluid: 10px;
  --gradient-a: linear-gradient(90deg, #fff 40%, #efefef);
  --gradient-b: linear-gradient(90deg, #efefef 30%, #fff);
}

@media only screen and (width <= 991px) {
  :root {
    --headerheight: 90px;
    --headerfixed: 70px;
  }
}

@media only screen and (width <= 768px) {
  :root {
    --headerheight: 80px;
    --headerfixed: 60px;
  }
}

@media only screen and (width <= 540px) {
  :root {
    --headerheight: 70px;
    --headerfixed: 60px;
  }
}

.gray-bg {
  background-color: #efefef;
}

.sec-head {
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

@media only screen and (width <= 768px) {
  .sec-head {
    font-size: 18px;
  }
}

@media only screen and (width <= 540px) {
  .sec-head {
    font-size: 16px;
    line-height: 1.5;
  }
}

.sec-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.sec-pad {
  padding: 70px 0;
}

@media only screen and (width <= 991px) {
  .sec-pad {
    padding: 60px 0;
  }
}

@media only screen and (width <= 768px) {
  .sec-pad {
    padding: 50px 0;
  }
}

@media only screen and (width <= 540px) {
  .sec-pad {
    padding: 40px 0;
  }
}

body::-webkit-scrollbar {
  background: var(--black);
  width: 8px;
}

body::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb {
  background-color: #ccc;
}

@media only screen and (width <= 540px) {
  body {
    -webkit-tap-highlight-color: transparent;
  }
}

body.overflow-hidden {
  margin-right: 8px;
  overflow: hidden;
}

@media only screen and (width <= 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}

body.overflow-hidden header {
  width: calc(100% - 8px);
}

@media only screen and (width <= 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-optical-sizing: auto;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
}

a[href] {
  cursor: pointer;
  text-decoration: none;
  transition: all .5s;
}

a[href].logo {
  line-height: 0;
  display: block;
}

a[href]:not(.btn, .btn2) {
  color: #fff;
}

svg path {
  transition: all .5s;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

@media only screen and (width <= 1300px) {
  .container {
    padding: 0 25px;
  }
}

@media only screen and (width <= 767px) {
  .container {
    padding: 0 15px;
  }
}

@media only screen and (width <= 345px) {
  .container {
    padding: 0 13px;
  }
}

@media only screen and (width <= 320px) {
  .container {
    padding: 0 10px;
  }
}

@media only screen and (width <= 675px) {
  .container.container2 {
    padding-right: 0;
  }

  .container.container2 .heading {
    padding-right: 15px;
  }
}

@media only screen and (width <= 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}

@media only screen and (width <= 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

.container-fluid {
  padding: 0 var(--containerfluid);
  margin: 0 auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Le Jeune Deck;
  font-weight: normal;
}

h1 {
  text-transform: uppercase;
  font-size: 48px;
  line-height: 1.17;
}

@media only screen and (width <= 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.05;
}

h3 {
  text-transform: capitalize;
  font-size: 36px;
  line-height: 1.06;
}

.heading {
  text-align: center;
}

.heading h2 {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.282;
}

@media only screen and (width <= 991px) {
  .heading h2 {
    font-size: 26px;
  }
}

@media only screen and (width <= 768px) {
  .heading h2 {
    font-size: 24px;
  }
}

@media only screen and (width <= 540px) {
  .heading h2 {
    font-size: 20px;
  }
}

.heading.h-large h3, .heading.h-large h2 {
  font-size: 36px;
}

.heading.c-white h3, .heading.c-white h2 {
  color: var(--white);
}

.heading > p {
  margin-top: 10px;
}

.head {
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
}

@media only screen and (width <= 1024px) {
  .head {
    font-size: 70px;
  }
}

@media only screen and (width <= 991px) {
  .head {
    font-size: 60px;
  }
}

@media only screen and (width <= 768px) {
  .head {
    font-size: 40px;
  }
}

h4 {
  font-size: 36px;
  line-height: 1.28;
}

h5 {
  font-size: 24px;
  line-height: 1.25;
}

@media only screen and (width <= 1152px) {
  h5 {
    font-size: 22px;
  }
}

@media only screen and (width <= 675px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

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

.grid {
  display: grid;
}

.span-2 {
  grid-column: span(2);
}

.inline-flex {
  --gap: 12px;
  align-items: center;
  gap: 0 var(--gap);
  display: inline-flex;
}

img {
  max-width: 100%;
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input {
  border-radius: 0;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

button.remove, button.edit {
  text-transform: uppercase;
  font-size: 14px;
}

button.remove {
  color: var(--text);
}

.btn_wrap {
  align-items: center;
  gap: 20px;
  display: flex;
}

.tab-nav {
  cursor: default;
}

.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: #0000;
}

.tab-nav-content {
  position: relative;
}

.tab-nav-content .tabs:not(.active) {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  height: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.item-md {
  position: relative;
}

.item-md:before, .item-md:after {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: none;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.item-md figure, .item-md .figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.item-md figure img, .item-md figure video, .item-md .figure img, .item-md .figure video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.item-md figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.item-md .link-md {
  z-index: 3;
  position: absolute;
  inset: 0;
}

.item-md.center-item figcaption {
  top: 50%;
  bottom: auto;
  translate: 0 -50%;
}

.testimony_col:before {
  background: linear-gradient(#0000 14%, #0009 88%);
}

.testimony_col figcaption {
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 20px;
  display: flex;
  bottom: 3%;
  translate: 0 3%;
}

.testimony_col figcaption .content h6, .testimony_col figcaption .content p {
  color: var(--white);
}

.testimony_col figcaption .content h6 {
  font-size: 24px;
}

@media only screen and (width <= 991px) {
  .testimony_col figcaption .content h6 {
    font-size: 22px;
  }
}

.testimony_col figcaption .content p {
  font-size: 14px;
}

.testimony_col figcaption .play-btn {
  --btnsize: 40px;
}

.product_col {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product_col.outofstock {
  pointer-events: none;
  cursor: no-drop;
}

.product_col.outofstock:before {
  content: "Out of stock";
  width: 100%;
  height: 100%;
  color: var(--white);
  z-index: 1;
  background-color: #00000021;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.product_col:hover figure img, .product_col:hover .figure img {
  transform: scale(1);
}

.product_col:hover .hoverItem {
  transform: translateY(0);
}

.product_col figure, .product_col .figure {
  width: 100%;
  height: 100%;
  max-height: 500px;
  padding: 20px 0;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.product_col figure img, .product_col .figure img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transform: scale(.9);
}

.product_col figcaption {
  padding: 0 20px 30px;
  overflow: hidden;
}

@media only screen and (width <= 540px) {
  .product_col figcaption {
    padding: 0 10px 10px;
  }
}

.product_col figcaption h6 {
  padding: 0 20px 5px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

@media only screen and (width <= 540px) {
  .product_col figcaption h6 {
    padding: 0 5px 5px;
  }
}

.product_col figcaption p {
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
}

@media only screen and (width <= 540px) {
  .product_col figcaption p {
    padding: 0 5px;
  }
}

.product_col .wislist {
  position: absolute;
  top: 3%;
  right: 5%;
  transform: translate(5%, -3%);
}

.product_col .wislist.added svg path, .product_col .wislist:hover svg path {
  fill: #000;
}

.product_col .hoverItem {
  align-items: center;
  width: 100%;
  transition: all .5s;
  display: flex;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
}

.product_col .hoverItem a, .product_col .hoverItem button {
  text-align: center;
  flex: 1;
  padding: 15px 10px;
  line-height: 1.2;
}

.product_col .hoverItem .enquireBtn {
  background: var(--black);
  color: var(--white);
}

@media only screen and (width <= 540px) {
  .product_col .hoverItem .enquireBtn {
    padding: 8px 5px;
    font-size: 12px;
  }
}

.product_col .hoverItem .viewDetails {
  background: var(--gray);
  color: var(--black);
}

@media only screen and (width <= 540px) {
  .product_col .hoverItem .viewDetails {
    padding: 8px 5px;
    font-size: 12px;
  }
}

.category_col:before {
  background: linear-gradient(#0000 14%, #0009 88%);
}

.category_col:hover figure img {
  opacity: 0;
  transform: scale(1.2);
}

.category_col:hover figcaption h6, .category_col:hover figcaption p {
  opacity: 0;
}

.category_col:hover figcaption .btn_wrapper {
  transform: translateY(0);
}

.category_col figure {
  position: relative;
}

.category_col figure video {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}

.category_col figure img {
  transform-origin: 0 0;
  transition: all 1s;
}

.category_col figcaption {
  text-align: center;
  padding: 0 10px 20px;
  bottom: 5%;
  translate: 0 5%;
}

@media only screen and (width <= 991px) {
  .category_col figcaption {
    bottom: 2%;
    translate: 0 2%;
  }
}

@media only screen and (width <= 768px) {
  .category_col figcaption {
    padding: 0 10px 10px;
    bottom: 0;
    translate: 0%;
  }
}

.category_col figcaption h6, .category_col figcaption p {
  color: var(--white);
  transition: all .6s;
}

.category_col figcaption h6 {
  font-size: 24px;
}

@media only screen and (width <= 768px) {
  .category_col figcaption h6 {
    font-size: 22px;
  }
}

.category_col figcaption p {
  font-size: 14px;
}

.category_col figcaption .btn_wrapper {
  transition: all 1s;
  transform: translateY(7vw);
}

.overlay {
  z-index: 6;
  opacity: 0;
  cursor: pointer;
  background: #00000080;
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  inset: 0;
  transform: translateY(100%);
}

@media only screen and (width <= 991px) {
  .overlay {
    z-index: 2;
  }
}

@media only screen and (width <= 540px) {
  .overlay {
    display: none;
  }
}

.overlay.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.overlay2 {
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  background: #000000b3;
  transition: all 0s .5s, opacity .5s;
  position: fixed;
  inset: 0;
  transform: translateY(100%);
}

@media only screen and (width <= 991px) {
  .overlay2 {
    z-index: 2;
  }
}

@media only screen and (width <= 675px) {
  .overlay2 {
    display: none;
  }
}

.overlay2.is-open {
  opacity: 1;
  transition: opacity 1s;
  transform: translateY(0%);
}

.model {
  z-index: 7;
  background: var(--white);
  background-position: 0 80%;
  background-size: 75%;
  width: 100%;
  max-width: 435px;
  position: fixed;
  top: 0;
  bottom: 0;
}

.model .close:not(.btn) {
  position: absolute;
  top: 40px;
  right: 40px;
}

@media only screen and (width <= 520px) {
  .model .close:not(.btn) {
    top: 20px;
    right: 20px;
  }
}

.model .close:not(.btn) path {
  stroke: var(--black);
}

img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  transition: all .5s;
}

.btn {
  --padding: 10px;
  --height: 36px;
  height: var(--height);
  line-height: var(--height);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: all .5s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn:before, .btn:after {
  content: "";
  z-index: -1;
  width: 100%;
  height: 0;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.btn:before {
  background-color: var(--white);
}

@media only screen and (width <= 540px) {
  .btn {
    --padding: 14px;
    font-size: 12px;
  }
}

.btn:hover {
  color: var(--black);
  padding: 0 var(--padding);
}

.btn:hover:before {
  height: 100%;
}

.btn:hover path {
  fill: var(--primary);
}

.btn.btn-large, .btn.btn-medium {
  letter-spacing: 0;
  font-size: 16px;
}

.btn.w-100 {
  width: 100%;
}

.btn.btn-large {
  --height: 52px;
  --padding: 38px;
}

.btn.btn-medium {
  --height: 45px;
  --padding: 25px;
}

.btn.btn-grad {
  background: linear-gradient(90deg, #fff, #b9b9b9);
}

.btn.btn-grad:hover {
  color: #000;
  background: linear-gradient(270deg, #fff, #fff);
}

.btn.black_fill {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn.black_fill:hover {
  color: var(--black);
  background: none;
  padding: 0;
}

.btn.gray_fill {
  color: var(--black);
  background: #d7d2d2;
  border: 1px solid #d7d2d2;
}

.btn.gray_fill:hover {
  color: var(--black);
  border-color: var(--black);
  background: none;
  padding: 0;
}

.btn.gray_border {
  color: var(--text);
  background: #fff;
  border: 1px solid #666;
  border-radius: 5px;
  padding: 0 18px;
}

.btn.gray_border:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn.black_round {
  color: var(--white);
  border: 1px solid var(--black);
  border-radius: 50px;
}

.btn.black_round path {
  fill: var(--black);
}

.btn.black_round:after {
  background-color: var(--black);
  height: 100%;
}

.btn.black_round:hover {
  color: var(--black);
  background-color: var(--white);
}

.btn.black_round:hover:after {
  height: 0;
}

.btn.black_round:hover:before {
  height: 100%;
}

.btn.black_round:hover path {
  fill: var(--white);
}

.btn.black {
  color: var(--black);
  border-bottom: 1px solid var(--black);
}

.btn.black:before {
  background-color: var(--black);
}

.btn.black:hover {
  color: var(--white);
}

.btn.black-border {
  color: var(--black);
  padding: 0 var(--padding);
  border: 1px solid #000;
}

.btn.black-border path {
  fill: var(--primary);
}

.btn.black-border:before {
  background-color: var(--black);
}

.btn.black-border:hover {
  color: var(--white);
}

.btn.black-border:hover:before {
  width: 100%;
}

.btn.black-border:hover path {
  fill: var(--white);
}

.btn2 {
  --padding: 18px;
  --height: 36px;
  letter-spacing: .1em;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  padding: 0 var(--padding);
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.btn2:hover {
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--black);
}

.btn2:hover path {
  fill: var(--black);
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item)  - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
  display: grid;
}

.form-grid .full {
  grid-column: span var(--item);
}

.banner {
  position: relative;
}

.banner:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
  background: linear-gradient(270deg, #0000 0%, #000c 100%), linear-gradient(#0000 14%, #0009 88%);
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.banner .bg {
  height: 650px;
  line-height: 0;
}

@media only screen and (width <= 1366px) {
  .banner .bg {
    height: calc(100vh - var(--headerheight));
  }
}

.banner .bg video, .banner .bg img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .banner-wrapper {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  translate: 0 -50%;
}

.banner .banner-wrapper h1 {
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--white);
  font-family: Le Jeune Deck;
  font-size: 48px;
  line-height: 1.28;
}

.banner .banner-wrapper .content p {
  color: var(--white);
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.23;
}

@media only screen and (width <= 991px) {
  .banner .banner-wrapper .content p {
    font-size: 18px;
  }
}

@media only screen and (width <= 768px) {
  .banner .banner-wrapper .content p {
    font-size: 16px;
  }
}

.banner-banner .content h1 {
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 32px;
  line-height: 1.1875;
}

.banner-banner .content p {
  color: var(--text);
  margin-top: 18px;
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}

.swiper-nav.center-full {
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.swiper-nav.center-full .swiper-prev, .swiper-nav.center-full .swiper-next {
  pointer-events: all;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  user-select: auto;
}

.swiper-nav.group {
  flex-wrap: wrap;
  align-items: center;
  gap: 0 15px;
  display: flex;
}

@media only screen and (width <= 1152px) {
  .swiper-nav.group {
    gap: 0 8px;
  }
}

.swiper-nav.icon-width-auto .swiper-next svg, .swiper-nav.icon-width-auto .swiper-prev svg {
  width: auto;
  height: auto;
}

.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: .4;
}

.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.play-btn {
  --btnsize: 56px;
  --border: 2px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border: var(--border) solid var(--bordercolor);
  background: none;
  border-radius: 50%;
  position: relative;
}

@media only screen and (width <= 1024px) {
  .play-btn {
    --btnsize: 50px;
  }
}

@media only screen and (width <= 675px) {
  .play-btn {
    --btnsize: 45px;
    --border: 1px;
  }
}

.play-btn:before {
  content: "";
  background: var(--bordercolor);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: 1.5s ease-out infinite pulse-border;
  display: block;
  position: absolute;
  inset: 50% 0 0 50%;
  transform: translateX(-50%)translateY(-50%);
}

@keyframes pulse-border {
  0% {
    opacity: .5;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%)translateY(-50%)translateZ(0)scale(1.5);
  }
}

.play-btn:after {
  content: "";
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.website-content > :first-child {
  margin-top: 0 !important;
}

.website-content > :last-child {
  margin-bottom: 0 !important;
}

.website-content h1, .website-content h2, .website-content h3, .website-content h4, .website-content h5, .website-content h6 {
  color: var(--black);
}

.website-content h1 {
  text-align: center;
  margin-bottom: 45px;
  font-family: Le Jeune Deck;
  font-size: 48px;
}

@media only screen and (width <= 675px) {
  .website-content h1 {
    font-size: 34px;
  }
}

@media only screen and (width <= 520px) {
  .website-content h1 {
    font-size: 30px;
  }
}

.website-content h2 {
  font-size: 34px;
}

@media only screen and (width <= 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}

.website-content h3 {
  font-size: 28px;
  line-height: 1.21;
}

@media only screen and (width <= 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}

.website-content h4 {
  font-size: 22px;
}

@media only screen and (width <= 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}

.website-content h5 {
  font-size: 18px;
}

@media only screen and (width <= 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}

.website-content h6 {
  font-size: 18px;
}

.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}

.website-content h5, .website-content h6 {
  margin: 28px 0 18px;
}

.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  -webkit-hyphens: auto;
  hyphens: auto;
  word-spacing: -.07em;
}

.website-content p b, .website-content li b {
  font-weight: normal;
}

.website-content a {
  color: var(--black) !important;
}

.website-content a:hover {
  text-decoration: underline;
}

.website-content p, .website-content ul {
  margin-bottom: 20px;
}

.website-content ul {
  padding-left: 18px;
}

@media only screen and (width <= 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}

.website-content ul li {
  padding-left: 28px;
  position: relative;
}

@media only screen and (width <= 675px) {
  .website-content ul li {
    padding-left: 20px;
  }
}

.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}

.website-content ul li:before {
  content: "";
  aspect-ratio: 1;
  background: var(--black);
  border-radius: 50%;
  width: 10px;
  position: absolute;
  top: 8px;
  left: 0;
}

.container-fluid.slider-section .upper-sec .slider-nav {
  right: 3%;
  transform: translate(3%, -50%);
}

@media only screen and (width <= 675px) {
  .slider-section .container {
    padding-right: 0;
  }
}

.slider-section .upper-sec {
  margin-bottom: 4rem;
  position: relative;
}

@media only screen and (width <= 991px) {
  .slider-section .upper-sec {
    margin-bottom: 3rem;
  }
}

@media only screen and (width <= 768px) {
  .slider-section .upper-sec {
    margin-bottom: 2rem;
  }
}

@media only screen and (width <= 540px) {
  .slider-section .upper-sec {
    margin-bottom: 1.5rem;
  }
}

.slider-section .upper-sec .slider-nav {
  align-items: center;
  gap: 20px;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

@media only screen and (width <= 768px) {
  .slider-section .upper-sec .slider-nav {
    display: none;
  }
}

.slider-section .upper-sec .slider-nav .swiper-prev svg, .slider-section .upper-sec .slider-nav .swiper-prev img {
  transform: scaleX(-1);
}

.slider-section .upper-sec .heading {
  text-align: center;
}

.lctn {
  color: var(--text);
  --arrow: 20px;
  --space: 5px;
  padding-left: calc(var(--arrow)  + var(--space));
  font-size: 14px;
  line-height: 1;
  position: relative;
}

.lctn:before {
  content: "";
  height: var(--arrow);
  width: var(--arrow);
  transform-origin: 100%;
  background-image: url("/assets/icon/location-gradient.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all .5s;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

.lctn.clndr {
  color: var(--white);
  --arrow: 17px;
  --space: 12px;
}

.lctn.clndr:before {
  background-image: url("/assets/icon/calender.svg");
}

.common-grid {
  grid-gap: 50px 20px;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@media only screen and (width <= 991px) {
  .common-grid {
    grid-gap: 30px 18px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (width <= 675px) {
  .common-grid {
    grid-gap: 10px;
    grid-template-columns: 100%;
  }
}

.product-col {
  position: relative;
}

.product-col:before {
  content: "";
  opacity: 0;
  z-index: 1;
  background: #fff;
  width: 0;
  height: 86%;
  display: block;
  position: absolute;
  top: 7%;
  left: 0%;
  transform: skewX(-20deg);
  box-shadow: 0 0 55px 12px #fff;
}

.product-col:hover:before {
  animation: .4s linear shine;
}

.product-col .figure, .product-col figure {
  line-height: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.product-col .figure .add-to, .product-col figure .add-to {
  text-align: right;
  opacity: 0;
  justify-content: end;
  align-items: center;
  width: 100%;
  transition: all .5s;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.product-col .figure .add-to a, .product-col figure .add-to a {
  padding: 11px 20px;
  transition: all .5s;
  display: block;
}

.product-col .figure .add-to a svg, .product-col figure .add-to a svg {
  vertical-align: middle;
  width: 25px;
  height: 25px;
}

.product-col .figure .add-to a.add2cart, .product-col figure .add-to a.add2cart {
  background-color: #13195f;
}

.product-col .figure .add-to a.add2cart:hover, .product-col figure .add-to a.add2cart:hover {
  background-color: #fff;
}

.product-col .figure .add-to a.add2cart:hover svg path, .product-col figure .add-to a.add2cart:hover svg path {
  fill: var(--primary);
}

.product-col .figure .add-to a.add2wish, .product-col figure .add-to a.add2wish {
  background-color: #030735;
}

.product-col .figure .add-to a.add2wish.active, .product-col figure .add-to a.add2wish.active {
  background-color: #fff;
}

.product-col .figure .add-to a.add2wish.active svg path, .product-col figure .add-to a.add2wish.active svg path {
  fill: var(--primary);
}

.product-col .figure .add-to a.add2wish:hover, .product-col figure .add-to a.add2wish:hover {
  background-color: #fff;
}

.product-col .figure .add-to a.add2wish:hover svg path, .product-col figure .add-to a.add2wish:hover svg path {
  stroke: var(--primary);
}

.product-col .figure img, .product-col figure img {
  -o-object-position: cover;
  object-position: cover;
  -o-object-position: top;
  object-position: top;
  transform-origin: 0 0;
  width: 100%;
  transition: all .5s;
}

.product-col figcaption {
  text-align: center;
  max-width: 305px;
  margin: 0 auto;
  padding: 18px 20px 0;
}

.product-col figcaption .pro_name {
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.product-col figcaption .price {
  text-align: center;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.product-col figcaption .color-select-wrap {
  padding-bottom: 10px;
}

.product-col figcaption .color-select-wrap li {
  vertical-align: middle;
  display: inline-block;
  position: relative;
}

.product-col figcaption .color-select-wrap li:not(:last-child) {
  margin-right: 15px;
}

.product-col figcaption .color-select-wrap li:has(input:checked) span:before {
  opacity: 1;
}

.product-col figcaption .color-select-wrap li span {
  background-color: #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.product-col figcaption .color-select-wrap li span:before {
  content: "";
  opacity: 0;
  border: 1px solid #000;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  position: absolute;
  bottom: -3px;
  left: -3px;
}

.product-col figcaption .color-select-wrap li input {
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.product-col figcaption .color-select-wrap li input:checked ~ span:before, .product-col:hover .add-to {
  opacity: 1;
}

.product-col:hover .figure img, .product-col:hover figure img {
  transform: scale(1.1);
}

.product-col .wishlist-ico, .product-col-2 .wishlist-ico {
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: absolute;
  top: 13px;
  right: 10px;
}

.product-col .wishlist-ico img, .product-col .wishlist-ico svg, .product-col-2 .wishlist-ico img, .product-col-2 .wishlist-ico svg {
  width: 15px;
  height: auto;
}

.product-col .wishlist-ico:hover, .product-col .wishlist-ico.is-active, .product-col-2 .wishlist-ico:hover, .product-col-2 .wishlist-ico.is-active {
  background: var(--primary);
}

.product-col .wishlist-ico:hover img, .product-col .wishlist-ico.is-active img, .product-col-2 .wishlist-ico:hover img, .product-col-2 .wishlist-ico.is-active img {
  filter: brightness(0) saturate() invert() sepia() saturate(1%) hue-rotate(236deg) brightness(103%) contrast(101%);
}

.product-col:hover .wishlist-ico, .product-col-2:hover .wishlist-ico {
  opacity: 1;
  pointer-events: all;
}

.product-col-2, .product-col-3 {
  position: relative;
}

.product-col-2:before, .product-col-3:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: none;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.product-col-2 .figure, .product-col-2 figure, .product-col-3 .figure, .product-col-3 figure {
  height: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.product-col-2 .figure img, .product-col-2 figure img, .product-col-3 .figure img, .product-col-3 figure img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.product-col-2:before, .product-col-3:before {
  z-index: 1;
}

.product-col-2:hover .figure img, .product-col-2:hover figure img, .product-col-3:hover .figure img, .product-col-3:hover figure img {
  transform: scale(1.1);
}

.product-col-2 figcaption, .product-col-3 figcaption {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.product-col-2:before {
  background: linear-gradient(#0000 0%, #000c 100%);
}

.product-col-2 figcaption {
  text-align: center;
  padding: 0 2rem 46px;
}

.product-col-2 figcaption .prdt-nm, .product-col-2 figcaption .prd-price {
  color: var(--white);
  font-size: 18px;
  display: block;
}

.product-col-2 figcaption .prdt-nm {
  margin-bottom: 8px;
}

.product-col-3:before {
  background: linear-gradient(#0000 0%, #000000f2 100%);
}

.product-col-3:hover .figure img, .product-col-3:hover figure img {
  transform: scale(1.05);
}

.product-col-3 figure img, .product-col-3 .figure img {
  aspect-ratio: .9;
}

.product-col-3 figcaption {
  text-align: center;
  --btnheight: 36px;
  --titlepad: 30px;
  margin-bottom: 3.5rem;
  padding: 0 2rem;
  transition: all .5s;
}

.product-col-3 figcaption .ico {
  opacity: 0;
  margin-bottom: 20px;
  line-height: 0;
  transition: all .5s;
  transform: translateY(30px)scale(.4);
}

.product-col-3 figcaption h6 {
  color: var(--white);
  text-transform: uppercase;
  font-family: Le Jeune Deck;
  font-size: 22px;
  line-height: 1.283;
  transition: all .6s;
}

.product-col-3 .xbjs {
  opacity: 0;
  transition: all .6s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(30px)scale(.9);
}

.product-col-3 .xbjs .btn {
  --height: var(--btnheight);
}

.product-col-3:hover {
  transform: translateY(0);
}

.product-col-3:hover figcaption .ico {
  opacity: 1;
  transform: translateY(0)scale(1);
}

.product-col-3:hover figcaption h6 {
  padding-bottom: calc(var(--btnheight)  + var(--titlepad));
}

.product-col-3:hover figcaption .xbjs {
  opacity: 1;
  transform: translateY(0)scale(1);
}

.gray-bg {
  background: var(--gray);
}

.gradient-head {
  text-transform: initial;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-image: var(--gradient-a);
  display: inline-block;
}

.whitetxt {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  background: var(--primary);
  border-color: var(--primary);
  border-radius: 50%;
  width: 17px;
  height: 17px;
  top: 50%;
  translate: 0 -50%;
  border: none !important;
}

.ui-state-default:focus, .ui-widget-content .ui-state-default:focus, .ui-widget-header .ui-state-default:focus, .ui-button:focus, html .ui-button.ui-state-disabled:hover:focus, html .ui-button.ui-state-disabled:active:focus {
  outline: none;
}

.ui-slider-horizontal {
  height: 2px;
  border: none !important;
}

.ui-widget-content {
  background: #cecece;
  border: none !important;
}

.ui-widget-header {
  background: var(--primary);
}

.kmr-select-wrap {
  --labelheight: 45px;
  --liheight: 34px;
  --boxsize: calc(var(--liheight)  - 14px);
  --arrowsize: 16px;
  --space: 11px;
  display: inline-block;
  position: relative;
}

.kmr-select-wrap .label {
  color: var(--black);
  height: var(--labelheight);
  line-height: var(--labelheight);
  background-image: url("/assets/icon/arrow-down-black.svg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize)  + var(--space));
  cursor: pointer;
  caret-color: #0000;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Lato, sans-serif;
  font-size: 12px;
}

.kmr-select-wrap.active {
  --btn: 10px;
}

.kmr-select-wrap.active.price_select .kmr-select-menu .upper-sec .reset-btn {
  display: block;
}

.kmr-select-wrap.slt-rgt .kmr-select-menu {
  left: auto;
  right: 0;
}

.kmr-select-wrap.color-select .kmr-select-menu li .in-bx {
  border-color: #ccc;
  border-radius: 50%;
}

.kmr-select-wrap.price_select .kmr-select-menu {
  width: 325px;
  padding: 20px;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec {
  display: flex;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn {
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.kmr-select-wrap.price_select .kmr-select-menu .upper-sec .reset-btn svg {
  vertical-align: middle;
  width: 15px;
  height: auto;
  margin-left: 3px;
  display: inline-block;
}

.kmr-select-wrap.price_select .kmr-select-menu h6 {
  color: var(--black);
  flex: 1;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.kmr-select-wrap.price_select .product-range-slider-wrap {
  margin: 30px 0 40px;
}

.kmr-select-wrap.price_select .price-range-input-wrap {
  color: var(--text);
  align-items: center;
  gap: 18px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input {
  background: var(--white);
  height: 30px;
  color: var(--text);
  border: 1px solid #e0e0e0;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  display: flex;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input {
  width: 100%;
  color: var(--text);
  border: none;
}

.kmr-select-wrap.price_select .price-range-input-wrap .price-range-input input:focus {
  outline: none;
}

.kmr-select-wrap .kmr-select-menu {
  z-index: 1;
  background: var(--white);
  width: 260px;
  max-height: 244px;
  padding: 20px 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  overflow-y: auto;
  box-shadow: 0 2px 8px #63636333;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar {
  background: none;
  width: 6px;
  height: 6px;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-track {
  box-shadow: none;
}

.kmr-select-wrap .kmr-select-menu::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 10px;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx {
  border-radius: 50%;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]) li .in-bx:before {
  display: none;
}

.kmr-select-wrap .kmr-select-menu:has(input[type="radio"]):has(input:checked) li .in-bx {
  outline: 5px solid var(--white);
  outline-offset: -10px;
}

.kmr-select-wrap .kmr-select-menu li {
  height: var(--liheight);
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  display: flex;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx {
  background: var(--black);
  transition: all .4s;
}

.kmr-select-wrap .kmr-select-menu li:has(input:checked) .in-bx:before {
  opacity: 1;
}

.kmr-select-wrap .kmr-select-menu li .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--black);
  border-radius: 3px;
  transition: all;
  position: relative;
}

.kmr-select-wrap .kmr-select-menu li .in-bx:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") center / 48% no-repeat;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.kmr-select-wrap .kmr-select-menu li span {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: block;
}

.kmr-select-wrap .kmr-select-menu li input {
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

@media only screen and (width <= 991px) {
  .breadcrumps {
    display: none;
  }
}

.breadcrumps li {
  vertical-align: middle;
  display: inline-block;
}

.breadcrumps li a {
  font-size: 14px;
  color: var(--text) !important;
}

@media only screen and (width <= 520px) {
  .breadcrumps li a {
    text-overflow: ellipsis;
    font-size: 12px;
  }
}

.breadcrumps li a.active {
  color: var(--black) !important;
}

.breadcrumps li:not(:last-child) {
  padding-right: 20px;
  position: relative;
}

@media only screen and (width <= 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}

.breadcrumps li:not(:last-child):before {
  content: ">";
  color: var(--text);
  font-family: monospace;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 100%;
  translate: 0 -50%;
}

.breadcrumps li:not(:first-child) {
  padding-left: 20px;
}

@media only screen and (width <= 520px) {
  .breadcrumps li:not(:first-child) {
    padding-left: 8px;
  }
}

[data-scrollTo] {
  cursor: pointer;
}

.fancybox__container {
  --fancybox-bg: var(--black);
}

.green-color {
  color: var(--green) !important;
}

.light-green {
  color: var(--green);
}

.red-color {
  color: var(--red) !important;
}

.orange-color {
  color: orange !important;
}

em {
  font-style: normal;
}

.mt-hdrfxd {
  margin-top: var(--headerfixed);
}

.mt-hdr {
  margin-top: var(--headerheight);
}

.w-full {
  width: 100%;
}

.disc {
  text-align: center;
  margin: 15px 0;
}

.disc p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  transition: all .5s;
}

.disc p a {
  transition: all .5s;
  color: var(--primary) !important;
}

.disc p a:hover {
  text-decoration: underline;
}

.check_term {
  margin: 15px 0;
}

.check_term .input_box {
  --boxsize: 15px;
  gap: 10px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}

.check_term .input_box:has(input:checked) .in-bx {
  background: var(--primary);
  transition: all .4s;
}

.check_term .input_box:has(input:checked) .in-bx:before {
  opacity: 1;
}

.check_term .input_box input {
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.check_term .input_box .in-bx {
  height: var(--boxsize);
  width: var(--boxsize);
  border: 1px solid var(--black);
  border-radius: 3px;
  transition: all;
  position: relative;
}

.check_term .input_box .in-bx:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: url("/assets/icon/tick-white.svg") center / 48% no-repeat;
  transition: all .5s;
  position: absolute;
  inset: 0;
}

.check_term .input_box p {
  color: var(--text);
  flex: 1;
  font-size: 14px;
  line-height: 1;
}

.sm-block {
  display: none;
}

@media only screen and (width <= 540px) {
  .sm-block {
    display: block;
  }
}

.md-block {
  display: none;
}

@media only screen and (width <= 768px) {
  .md-block {
    display: block;
  }
}

.sm-none {
  display: block;
}

@media only screen and (width <= 540px) {
  .sm-none {
    display: none;
  }
}

.md-none {
  display: block;
}

@media only screen and (width <= 768px) {
  .md-none {
    display: none;
  }
}

.bestSeller_slider_wrapper {
  z-index: 0;
  position: relative;
}

.bestSeller_slider_wrapper .container-fluid .btn_wrapper {
  text-align: center;
  margin-top: 50px;
}

.verify {
  color: red;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
}

@keyframes scroll {
  0% {
    transform: translateY(10px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(10px);
  }
}

.display-none {
  display: none;
}

.text-black {
  color: var(--black) !important;
}

.page-not-found-container {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.page-not-found-container .not-found {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.page-not-found-container .not-found img {
  filter: grayscale();
  width: 120px;
}

.page-not-found-container .not-found h3 {
  color: var(--black);
}

.page-not-found-container .not-found p {
  color: var(--black);
  padding-bottom: 10px;
}


/* [next]/internal/font/google/lato_9f4a7339.module.css [app-client] (css) */
@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../media/S6u_w4BMUTPHjxsIPx_mPCLC79U11vU-s.d882e28f.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../media/S6u_w4BMUTPHjxsIPx_oPCLC79U1-s.p.0e92f2ea.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../media/S6u_w4BMUTPHjxsI9w2_FQftx9897sxZ-s.80a83820.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../media/S6u_w4BMUTPHjxsI9w2_Gwftx9897g-s.p.1e4c30e1.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/S6u8w4BMUTPHjxsAUi_qNiXg7eU0-s.d0c071f7.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/S6u8w4BMUTPHjxsAXC_qNiXg7Q-s.p.7f512e5e.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/S6u_w4BMUTPHjxsI5wq_FQftx9897sxZ-s.113306a6.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/S6u_w4BMUTPHjxsI5wq_Gwftx9897g-s.p.721ad204.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../media/S6u_w4BMUTPHjxsI3wi_FQftx9897sxZ-s.fca4eb9b.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Lato;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../media/S6u_w4BMUTPHjxsI3wi_Gwftx9897g-s.p.24ff2eec.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../media/S6u8w4BMUTPHh30AUi_qNiXg7eU0-s.ef3184ce.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../media/S6u8w4BMUTPHh30AXC_qNiXg7Q-s.p.01183af7.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/S6u9w4BMUTPHh7USSwaPGQ3q5d0N7w-s.5ee550b3.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/S6u9w4BMUTPHh7USSwiPGQ3q5d0-s.p.3bba147b.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/S6uyw4BMUTPHjxAwXiWtFCfQ7A-s.31544b5f.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/S6uyw4BMUTPHjx4wXiWtFCc-s.p.b70afd82.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/S6u9w4BMUTPHh6UVSwaPGQ3q5d0N7w-s.89f400ce.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/S6u9w4BMUTPHh6UVSwiPGQ3q5d0-s.p.c516d566.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../media/S6u9w4BMUTPHh50XSwaPGQ3q5d0N7w-s.507537b8.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../media/S6u9w4BMUTPHh50XSwiPGQ3q5d0-s.p.00726523.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Lato Fallback;
  src: local(Arial);
  ascent-override: 101.03%;
  descent-override: 21.8%;
  line-gap-override: 0.0%;
  size-adjust: 97.69%;
}

.lato_9f4a7339-module__Kp4v9q__className {
  font-family: Lato, Lato Fallback;
}


/*# sourceMappingURL=%5Broot-of-the-server%5D__4206865b._.css.map*/