@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.form {
  --inputsize: 42px;
  --labelbefore: #666;
  --labelafter: #606060;
  --borderbefore: #666;
  --borderafter: var(--primary);
  --labelfontbefore: 16px;
  --labelfontafter: 12px;
  --font: 500;
  --color: var(--black);
  --borderwidth: 1px;
  --labelbackground: none;
  --font: normal;
  --textareaheight: 86px;
  --paddingleftright: 0px;
}
.form .sbmt-grp {
  margin-top: 20px;
}
.form .form-group {
  position: relative;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  --selectheight: var(--inputsize);
  line-height: 0;
}
.form .form-group.has-icon input {
  --iconsize: 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - var(--paddingleftright, 0px)) 50%;
  padding-right: calc(var(--paddingleftright, 0px) + var(--iconsize, 0px) + var(--paddingleftright, 0px));
}
.form .form-group.has-icon.calender-icon input {
  background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.5 2H14.5V0.5C14.5 0.367392 14.4473 0.240215 14.3536 0.146447C14.2598 0.0526785 14.1326 0 14 0C13.8674 0 13.7402 0.0526785 13.6464 0.146447C13.5527 0.240215 13.5 0.367392 13.5 0.5V2H6.5V0.5C6.5 0.367392 6.44732 0.240215 6.35355 0.146447C6.25979 0.0526785 6.13261 0 6 0C5.86739 0 5.74021 0.0526785 5.64645 0.146447C5.55268 0.240215 5.5 0.367392 5.5 0.5V2H2.5C1.8372 2.00079 1.20178 2.26444 0.73311 2.73311C0.264441 3.20178 0.000793929 3.8372 0 4.5V17.5C0.000793929 18.1628 0.264441 18.7982 0.73311 19.2669C1.20178 19.7356 1.8372 19.9992 2.5 20H17.5C18.163 20 18.7989 19.7366 19.2678 19.2678C19.7366 18.7989 20 18.163 20 17.5V4.5C20 3.83696 19.7366 3.20107 19.2678 2.73223C18.7989 2.26339 18.163 2 17.5 2ZM19 17.5C19 17.8978 18.842 18.2794 18.5607 18.5607C18.2794 18.842 17.8978 19 17.5 19H2.5C2.10218 19 1.72064 18.842 1.43934 18.5607C1.15804 18.2794 1 17.8978 1 17.5V9H19V17.5ZM19 8H1V4.5C1 3.672 1.67 3 2.5 3H5.5V4.5C5.5 4.63261 5.55268 4.75979 5.64645 4.85355C5.74021 4.94732 5.86739 5 6 5C6.13261 5 6.25979 4.94732 6.35355 4.85355C6.44732 4.75979 6.5 4.63261 6.5 4.5V3H13.5V4.5C13.5 4.63261 13.5527 4.75979 13.6464 4.85355C13.7402 4.94732 13.8674 5 14 5C14.1326 5 14.2598 4.94732 14.3536 4.85355C14.4473 4.75979 14.5 4.63261 14.5 4.5V3H17.5C17.8978 3 18.2794 3.15804 18.5607 3.43934C18.842 3.72064 19 4.10218 19 4.5V8Z" fill="%23666666" fill-opacity="0.7"/%3E%3C/svg%3E');
}
.form .form-group.has-icon.search-icon input {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.893 13.92L16.973 17M16 8.5C16 10.4891 15.2098 12.3968 13.8033 13.8033C12.3968 15.2098 10.4891 16 8.5 16C6.51088 16 4.60322 15.2098 3.1967 13.8033C1.79018 12.3968 1 10.4891 1 8.5C1 6.51088 1.79018 4.60322 3.1967 3.1967C4.60322 1.79018 6.51088 1 8.5 1C10.4891 1 12.3968 1.79018 13.8033 3.1967C15.2098 4.60322 16 6.51088 16 8.5Z' stroke='%23939393' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.form .form-group.active::after {
  width: 100%;
}
.form .form-group::before, .form .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  transition: 0.5s ease;
}
.form .form-group::before {
  background: var(--borderbefore);
}
.form .form-group::after {
  width: 0;
  background: var(--borderafter);
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: calc(var(--inputsize) / 2 - var(--labelfontbefore) / 2);
  left: var(--paddingleftright);
  color: var(--labelbefore);
  line-height: 1;
  font-size: var(--labelfontbefore);
  background: var(--labelbackground);
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: calc(var(--inputsize) - var(--borderwidth));
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--black);
  font-size: inherit;
  font-family: "Sweet Sans Pro" !important;
  padding: 0 var(--paddingleftright);
}
.form .form-group input:focus, .form .form-group textarea:focus {
  outline: none;
}
.form .form-group input.valid, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input.valid ~ label, .form .form-group textarea.valid ~ label {
  font-size: var(--labelfontafter);
  color: #000;
  top: calc(var(--labelfontafter) / -1);
}
.form .form-group input:not(:-moz-placeholder) ~ label, .form .form-group textarea:not(:-moz-placeholder) ~ label {
  font-size: var(--labelfontafter);
  color: #000;
  top: calc(var(--labelfontafter) / -1);
}
.form .form-group input:not(:placeholder-shown) ~ label, .form .form-group textarea:not(:placeholder-shown) ~ label {
  font-size: var(--labelfontafter);
  color: #000;
  top: calc(var(--labelfontafter) / -1);
}
.form .form-group input:not(.no-focus):focus, .form .form-group textarea:not(.no-focus):focus {
  outline: none;
}
.form .form-group input:not(.no-focus):focus ~ label, .form .form-group textarea:not(.no-focus):focus ~ label {
  font-size: var(--labelfontafter);
  color: var(--black);
  top: calc(var(--labelfontafter) / -1);
}
.form .form-group input[readonly], .form .form-group textarea[readonly] {
  caret-color: transparent;
}
.form .form-group textarea {
  height: var(--textareaheight);
  border: none;
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--black);
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  cursor: initial;
}
.form .form-group textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
  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 {
  padding: 0 var(--paddingleftright);
  padding-right: 15px;
}
.form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
  margin-top: 13px;
  height: calc(var(--textareaheight) - 13px);
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: calc(var(--labelfontafter) / -2);
  left: var(--paddingleftright);
  color: var(--labelafter);
  translate: 0 0;
  font-size: var(--labelfontafter);
  opacity: 0;
  transition: 0.6s ease;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .form-group .error {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  color: red;
  line-height: normal;
  font-size: 12px;
}
.form .form-group.file-input input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: pointer;
}
.form .form-group.file-input .file-name {
  pointer-events: none;
  height: calc(var(--inputsize) - var(--borderwidth));
  position: relative;
  --filename: 'Attach Resume*';
  --filenameinitial: var(--filename);
  --color: var(--text);
  --background: none;
  --image: url(../../icon/clip-gray.svg) no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: calc(var(--inputsize) - var(--borderwidth));
}
.form .form-group.file-input .file-name::before, .form .form-group.file-input .file-name::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.form .form-group.file-input .file-name::before {
  z-index: 2;
  font-family: inherit;
  font-size: inherit;
  line-height: calc(var(--inputsize) - var(--borderwidth));
  padding-left: var(--paddingleftright);
  color: var(--color);
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  background: none;
}
.form .form-group.file-input .file-name::after {
  content: "";
  right: 0;
  background: var(--image);
  background-repeat: no-repeat;
  z-index: 1;
  background-position: calc(100% - var(--paddingleftright, 0)) 50%;
  background-size: auto 50%;
}
.form .submit-grp:not(.text-left) {
  text-align: center;
  margin-top: 23px;
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--inputsize);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 15px;
  --arrowspace: 8px;
  --iconpath: url(../../icon/location-primary.svg);
}
.custom-select.has-icon {
  --iconsize: 12px;
  --iconurl: var(--iconpath);
  --iconspace: 8px;
}
.custom-select.has-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--bgcolor);
}
.custom-select.has-icon::after {
  left: var(--paddingleftright, 0px);
  width: var(--iconsize);
  background-image: var(--iconurl);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
}
.custom-select.has-icon .current {
  padding-left: calc(var(--iconsize) + var(--iconspace));
  padding-right: calc(var(--arrow) + var(--iconsize) + var(--arrowspace) + var(--iconspace));
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: var(--paddingleftright, 0);
  bottom: 0;
  width: var(--arrow);
  background-image: url(../../icon/arrow-gray.svg);
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  filter: brightness(0.4);
}
.custom-select .current {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--text);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
  padding-right: calc(var(--arrow) + var(--arrowspace));
}
.custom-select .current.selected {
  color: var(--white);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 4;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
  height: 4px;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list {
  pointer-events: none;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 8px 16px;
  white-space: break-spaces;
  font-size: 14px;
}
.custom-select .list li.selected {
  background: var(--secondary);
  color: var(--white);
}
.custom-select .list li.selected:hover {
  background: var(--secondary);
  color: var(--white);
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

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

html {
  scroll-behavior: smooth;
}

.mb-0 {
  margin-bottom: 0 !important;
}

:root {
  --headerpadding: 35px;
  --headerheight: 90px;
  --headerfixed: 65px;
  --footerstrip: 66px;
}
@media only screen and (max-width: 768px) {
  :root {
    --headerfixed: 50px;
  }
}
:root {
  --primary: rgba(202, 149, 131, 1);
  --secondary: rgba(202, 149, 131, 1);
  --primary-light: rgba(255, 247, 245, 1);
  --text: #666666;
  --green: green;
  --white: #ffff;
  --text-light: #00000054;
  --black: #000000;
  --black-light: rgba(104, 104, 104, 1);
  --border: rgba(202, 149, 131, 1);
  --gray: #f5f5f5;
  --gray-sec:rgba(252, 252, 252, 1);
  --gradient-a: linear-gradient(180deg, #FFFFFF 0%, #FFEDE6 100%);
  --gradient-b:linear-gradient(180deg, #FFF5F3 0%, #FFFFFF 50%, #FFF5F3 100%);
  --container: 1280px;
  --containerfluid: 5rem;
}
@media only screen and (max-width: 1366px) {
  :root {
    --container: 1280px;
    --containerfluid: 3rem;
  }
}
@media only screen and (max-width: 1024px) {
  :root {
    --container: 95%;
    --containerfluid: 3rem;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --container: 90%;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --container: 90%;
    --containerfluid: 2.5rem;
  }
}
@media only screen and (max-width: 640px) {
  :root {
    --container: 92%;
    --containerfluid: 2rem;
  }
}
@media only screen and (max-width: 540px) {
  :root {
    --container: 92%;
    --containerfluid: 1rem;
  }
}

body {
  background: var(--white);
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--white);
}
body.overflow-hidden {
  overflow: hidden;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 10px);
}
@media only screen and (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

a {
  text-decoration: none;
  color: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--primary) !important;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bgcolor);
}

body {
  overflow-x: hidden;
}

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

b {
  font-weight: 500;
}

p {
  color: var(--text);
}

small {
  font-size: 14px;
  line-height: 22px;
  display: block;
}

.svg path {
  transition: none;
}
.svg path[stroke], .svg path[fill=none] {
  stroke: currentColor;
}
.svg path[fill] {
  fill: currentColor;
}

.gray-bg {
  background: #F3F3F3;
}

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

.c-primary {
  color: var(--primary);
}

.c-text {
  color: var(--text);
}

.c-red {
  color: red;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

select {
  display: none;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s ease;
}
a[href].logo {
  display: block;
  line-height: 0;
}

svg path {
  transition: 0.5s ease;
}

.position-relative {
  position: relative;
}

.lh-normal {
  line-height: normal;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 675px) {
  .container.container2 {
    padding-right: 0;
  }
}
@media only screen and (max-width: 675px) {
  .container.container2 .heading {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 345px) {
  .container.container2 .heading {
    padding-right: 13px;
  }
}
@media only screen and (max-width: 320px) {
  .container.container2 .heading {
    padding-right: 10px;
  }
}

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

.social-icons {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

h1 {
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 48px;
  line-height: 1.3;
}
@media only screen and (max-width: 1280px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 540px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 48px;
  line-height: 1.3;
}
@media only screen and (max-width: 1280px) {
  h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 540px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
}
@media only screen and (max-width: 1280px) {
  h3 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  h3 {
    font-size: 26px;
  }
}

h4 {
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 36px;
  line-height: 1.3;
}
@media only screen and (max-width: 1280px) {
  h4 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  h4 {
    font-size: 26px;
  }
}

h5 {
  font-family: "Louize trial";
  font-weight: 400;
  font-size: 28px;
  line-height: 1.35;
}
@media only screen and (max-width: 991px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-family: "Sweet Sans Pro";
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 540px) {
  h6 {
    font-size: 18px;
  }
}

p, span, ul li, a {
  font-family: "Sweet Sans Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
}
@media only screen and (max-width: 1024px) {
  p, span, ul li, a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .heading {
    text-align: center;
  }
}
.heading h3 {
  font-size: 36px;
  line-height: 1.3;
  font-family: "Louize trial";
  font-weight: 400;
  color: var(--black);
}
@media only screen and (max-width: 1280px) {
  .heading h3 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 991px) {
  .heading h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .heading h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  .heading h3 {
    font-size: 24px;
  }
}
.heading h3 span {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0 5px;
}
@media only screen and (max-width: 768px) {
  .heading h3 span {
    margin: 0 8px;
  }
}
@media only screen and (max-width: 540px) {
  .heading h3 span {
    margin: 0 5px;
  }
}

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

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

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

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

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

.justify-between {
  justify-content: space-between;
}

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

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

img {
  max-width: 100%;
}

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

input {
  font-family: "Sweet Sans Pro";
  font-size: inherit;
  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;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.tab-nav {
  cursor: default;
}
.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: transparent;
}

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

.item-md {
  position: relative;
  display: block;
  position: relative;
}
.item-md::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.item-md::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--bgcolor);
}
.item-md::before, .item-md::after {
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figure, .item-md .figure {
  display: block;
  overflow: hidden;
  line-height: 0;
  height: 100%;
}
.item-md figure img, .item-md figure video, .item-md figure iframe, .item-md .figure img, .item-md .figure video, .item-md .figure iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.item-md.center-item figcaption {
  bottom: auto;
  top: 50%;
  translate: 0 -50%;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 5;
  opacity: 0;
  background: rgba(0, 0, 0, 0.4588235294);
  transform: translateY(100%);
  transition: 0s ease 0.5s, opacity 0.5s ease;
  cursor: pointer;
  z-index: 20;
}
.overlay.is-open {
  transition: opacity 1s ease;
  opacity: 1;
  transform: translateY(0%);
}

.btn {
  padding: 10px 0;
  border-radius: 25px;
  width: -moz-fit-content;
  width: fit-content;
}
.btn a, .btn button {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 25px;
  overflow: hidden;
  z-index: 0;
  background: transparent;
  color: white;
  border: 1px solid white;
  transition: 0.5s ease;
  overflow: hidden;
}
.btn a::before, .btn button::before {
  content: "";
  position: absolute;
  background: white;
  width: 100%;
  height: 100%;
  bottom: -100%;
  left: 0;
  transition: 0.5s ease;
  z-index: -1;
}
.btn a:hover, .btn button:hover {
  color: black;
}
.btn a:hover::before, .btn button:hover::before {
  bottom: 0;
}

.btn2 {
  padding: 10px 0;
  border-radius: 25px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px 0;
}
.btn2 a, .btn2 button {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  padding: 10px 24px;
  border-radius: 25px;
  background: var(--gradient-b);
  overflow: hidden;
  z-index: 0;
  transition: color 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .btn2 a, .btn2 button {
    padding: 5px 24px;
  }
}
.btn2 a::before, .btn2 button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  background: var(--gradient-a);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.btn2 a::after, .btn2 button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.2);
}
.btn2 a:hover, .btn2 button:hover {
  color: var(--white);
}
.btn2 a:hover::before, .btn2 button:hover::before {
  opacity: 1;
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 70;
  background: var(--white);
  background-position: 0% 80%;
  background-size: 75%;
  max-width: 435px;
  width: 100%;
}
.model .close {
  cursor: pointer;
}
.model .close:not(.btn, .close-video, .not-ab) {
  position: absolute;
  top: 0;
  right: 0;
  top: 25px;
  right: 25px;
  line-height: 0;
  z-index: 1;
}
@media only screen and (max-width: 520px) {
  .model .close:not(.btn, .close-video, .not-ab) {
    top: 20px;
    right: 20px;
  }
}
.model .close:not(.btn, .close-video, .not-ab) path {
  stroke: var(--black);
}

.form-grid {
  --item: 1;
  --gaplr: 30px;
  --gaptb: 32px;
  display: grid;
  grid-template-columns: repeat(var(--item), calc((100% - var(--gaplr) * (var(--item) - 1)) / var(--item)));
  gap: var(--gaptb) var(--gaplr);
}
@media only screen and (max-width: 540px) {
  .form-grid {
    --gaptb: 15px;
  }
}
.form-grid .full {
  grid-column: span var(--item);
}

.btn-div-btm > *:not(:last-child) {
  margin-right: 14px;
}
@media only screen and (max-width: 675px) {
  .btn-div-btm > *:not(:last-child) {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 675px) {
  .btn-div-btm .btn {
    --padding: 12px;
    font-size: 14px;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-nav {
  line-height: 0;
}
.swiper-nav.center-full {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 540px) {
  .swiper-nav.center-full {
    display: none;
  }
}
.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.hide-btn-no-loop .swiper-prev.swiper-button-disabled, .swiper-nav.hide-btn-no-loop .swiper-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.swiper-nav.swiper-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.swiper-prev svg, .swiper-prev img, .certificate-prev svg, .certificate-prev img {
  transform: scaleX(-1);
}

.swiper-prev, .swiper-next {
  --size: 45px;
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border: 1px solid var(--secondary);
  transition: 0.5s ease;
  color: var(--white);
}
.swiper-prev:not(.no-background) path[stroke], .swiper-prev:not(.no-background) path[fill=none], .swiper-next:not(.no-background) path[stroke], .swiper-next:not(.no-background) path[fill=none] {
  stroke: var(--black);
}
.swiper-prev:not(.no-background) path[fill], .swiper-next:not(.no-background) path[fill] {
  fill: var(--black);
}
.swiper-prev:hover:not(.swiper-button-disabled, .no-background), .swiper-next:hover:not(.swiper-button-disabled, .no-background) {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.swiper-prev.no-background, .swiper-next.no-background {
  height: auto;
  width: auto;
  display: block;
  background: none;
  border: none;
  line-height: 0;
}
.swiper-prev.no-background:hover, .swiper-next.no-background:hover {
  background: none;
}
.swiper-prev.white, .swiper-next.white {
  background: var(--white);
  border-color: var(--white);
  color: var(--secondary);
}
.swiper-prev.white:hover:not(.swiper-button-disabled), .swiper-next.white:hover:not(.swiper-button-disabled) {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.swiper-prev.secondary-border, .swiper-next.secondary-border {
  border-color: var(--secondary);
  background: none;
  color: var(--secondary);
}
.swiper-prev.secondary-border:hover:not(.swiper-button-disabled), .swiper-next.secondary-border:hover:not(.swiper-button-disabled) {
  background: var(--secondary);
  color: var(--white);
}
.swiper-prev.white-border, .swiper-next.white-border {
  border-color: var(--white);
  background: none;
  color: var(--white);
}
.swiper-prev.white-border:hover:not(.swiper-button-disabled), .swiper-next.white-border:hover:not(.swiper-button-disabled) {
  background: var(--white);
  color: var(--secondary);
}
.swiper-prev.gray-border, .swiper-next.gray-border {
  border-color: var(--black);
  background: none;
  color: var(--text);
}
.swiper-prev.gray-border:hover:not(.swiper-button-disabled), .swiper-next.gray-border:hover:not(.swiper-button-disabled) {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.swiper-prev.green-border, .swiper-next.green-border {
  border-color: var(--primary);
  background: none;
  color: var(--text);
}
.swiper-prev.green-border:hover:not(.swiper-button-disabled), .swiper-next.green-border:hover:not(.swiper-button-disabled) {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.swiper-prev.gray-arrow, .swiper-next.gray-arrow {
  color: #888888;
}
.swiper-prev.black-arrow, .swiper-next.black-arrow {
  color: var(--black);
}
.swiper-prev.black-arrow:hover:not(.swiper-button-disabled), .swiper-next.black-arrow:hover:not(.swiper-button-disabled) {
  color: var(--secondary);
}
.swiper-prev.swiper-button-disabled, .swiper-next.swiper-button-disabled {
  cursor: no-drop;
  opacity: 0.4;
}
.swiper-prev.swiper-button-lock, .swiper-next.swiper-button-lock {
  display: none !important;
}

.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content > :last-child {
  margin-bottom: 0 !important;
}
.website-content h1 {
  font-size: 48px;
  margin-bottom: 45px;
  text-align: center;
  font-family: "Sweet Sans Pro";
  font-weight: normal;
}
@media only screen and (max-width: 675px) {
  .website-content h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 520px) {
  .website-content h1 {
    font-size: 30px;
    font-weight: bold;
  }
}
.website-content h2 {
  font-size: 34px;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h2 {
    font-size: 24px;
  }
}
.website-content h3 {
  font-size: 28px;
  line-height: 1.31;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h3 {
    font-size: 22px;
  }
}
.website-content h4 {
  font-size: 24px;
  font-weight: 500;
}
@media only screen and (max-width: 675px) {
  .website-content h4 {
    font-size: 20px;
  }
}
.website-content h5 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}
@media only screen and (max-width: 675px) {
  .website-content h5 {
    font-size: 18px;
  }
}
.website-content h6 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 0px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 22px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
  hyphens: auto;
}
@media only screen and (max-width: 520px) {
  .website-content p, .website-content li {
    font-size: 14px;
  }
}
.website-content p b, .website-content li b {
  font-weight: 600;
  color: var(--black);
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 30px;
}
.website-content ul {
  padding-left: 18px;
}
@media only screen and (max-width: 675px) {
  .website-content ul {
    padding-left: 10px;
  }
}
.website-content ul li {
  position: relative;
  padding-left: 28px;
}
@media only screen and (max-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: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--secondary);
}
@media only screen and (max-width: 520px) {
  .website-content ul li::before {
    width: 6px;
  }
}
.website-content.website-content-medium h2, .website-content.website-content-medium h3, .website-content.website-content-medium h4 {
  margin: 20px 0 18px;
  font-size: 20px;
  font-weight: 500;
}
.website-content.website-content-medium h5, .website-content.website-content-medium h6 {
  font-size: 18px;
  font-weight: 500;
}
.website-content.website-content-medium p, .website-content.website-content-medium ul {
  margin-bottom: 20px;
}

[data-video], [data-model], [data-scrollTo] {
  cursor: pointer;
}

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

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

.comman-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .comman-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 768px) {
  .comman-banner {
    height: 70vh;
  }
}
@media only screen and (max-width: 540px) {
  .comman-banner {
    height: 65vh;
  }
}
.comman-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 14.43%, rgba(0, 0, 0, 0) 58.86%), linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 23.86%);
}
.comman-banner video, .comman-banner img:not(.btn > img) {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
}
.comman-banner .bg-content {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}
@media only screen and (max-width: 540px) {
  .comman-banner .bg-content {
    bottom: 8%;
    gap: 6px;
  }
}
.comman-banner .bg-content h1 {
  text-align: center;
  text-transform: capitalize;
  color: var(--white);
  width: 100%;
  max-width: 100%;
}
.comman-banner .bg-content p {
  text-align: center;
  text-transform: capitalize;
  color: var(--white);
}
.comman-banner .bg-content .btn {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .comman-banner .bg-content .btn {
    margin-top: 10px;
  }
}

.banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 768px) {
  .banner {
    height: 70vh;
  }
}
@media only screen and (max-width: 540px) {
  .banner {
    height: 65vh;
  }
}
.banner .swiper {
  height: 100%;
  width: 100%;
  flex-shrink: 0;
}
.banner .swiper .swiper-wrapper {
  height: 100%;
}
.banner .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  height: 100%;
  width: 100%;
}
.banner .swiper .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(12, 12, 12, 0) 63.46%), linear-gradient(0deg, rgba(0, 0, 0, 0.85) 11.06%, rgba(0, 0, 0, 0) 50.48%);
  z-index: 2;
  pointer-events: none;
}
.banner .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .swiper .swiper-wrapper .swiper-slide .bg-content {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}
@media only screen and (max-width: 540px) {
  .banner .swiper .swiper-wrapper .swiper-slide .bg-content {
    bottom: 8%;
    gap: 6px;
  }
}
.banner .swiper .swiper-wrapper .swiper-slide .bg-content h1, .banner .swiper .swiper-wrapper .swiper-slide .bg-content h3 {
  text-align: center;
  text-transform: capitalize;
  color: var(--white);
  width: 100%;
  max-width: 100%;
}
.banner .swiper .swiper-wrapper .swiper-slide .bg-content h3 {
  margin-bottom: 20px;
}
.banner .swiper .swiper-wrapper .swiper-slide .bg-content p {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 15px;
}
.banner .swiper .swiper-wrapper .swiper-slide .bg-content .btn {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .banner .swiper .swiper-wrapper .swiper-slide .bg-content .btn {
    margin-top: 10px;
  }
}
.banner .swiper-pagination {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}

.btn-div-wrap > *:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (max-width: 675px) {
  .btn-div-wrap > *:not(:last-child) {
    margin-right: 5px;
  }
}
@media only screen and (max-width: 675px) {
  .btn-div-wrap .btn {
    --padding: 10px;
  }
}

.common-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 25px;
}
@media only screen and (max-width: 991px) {
  .common-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 675px) {
  .common-grid-wrap {
    grid-template-columns: 100%;
  }
}

.slider-section .upper-sec {
  position: relative;
  padding-top: 4rem;
}
.slider-section .upper-sec .swiper-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media only screen and (max-width: 675px) {
  .slider-section .upper-sec .swiper-nav {
    display: none;
  }
}

.play-btn {
  --btnsize: 50px;
  --border: 1px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  width: 60px;
  height: 60px;
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: transparent;
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  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);
}

.news-col {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2392156863);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure::before {
  animation: shine 0.4s linear;
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figure img {
  transform: scale(1.04);
  width: 100%;
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .ttl {
  color: var(--primary);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .desc {
  color: var(--black);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .date {
  color: var(--text);
}
.news-col:has(.figure:is(a):hover, .figcaption .ttl:is(a):hover, .figcaption .read-more-btn:is(a):hover) .figcaption .read-more-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--black);
}
.news-col .figure {
  height: 361px;
  line-height: 0;
  display: block;
  overflow: hidden;
  position: relative;
}
.news-col .figure::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.news-col .figure:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.news-col .figure {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.news-col .figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.3;
  transition: 0.5s ease;
  position: relative;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-col .figinfo {
  position: absolute;
  color: white;
  text-align: center;
  width: 100%;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-col .figinfo h5 {
  font-weight: 700;
  font-size: 28px;
  line-height: 45px;
  margin-bottom: 10px;
}
.news-col .figinfo p {
  font-family: "Sweet Sans Pro";
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: var(--white);
  text-align: center;
}
.news-col .figcaption {
  --pdt: 18px;
  --pdlr: 24px;
  --pdb: -40px;
  --btnsize: 40px;
  --btnmargin: 27px;
  padding: var(--pdt) var(--pdlr) calc(var(--pdb) + var(--btnmargin) + var(--btnsize));
  position: relative;
  flex: 1;
}
.news-col .figcaption .btn-div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 var(--pdlr) var(--pdb);
}
.news-col .figcaption .ttl {
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 10px;
}
.news-col .figcaption .desc, .news-col .figcaption .date {
  font-weight: 500;
  transition: 0.5s ease;
}
.news-col .figcaption .desc {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
}
.news-col .figcaption .date {
  color: var(--primary);
  line-height: 1.375;
}

.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figure img {
  transform: scale(1.04);
}
.product-item:has(.figure:is(a):hover, .figcaption .dtl-btn:is(a):hover) .figcaption .dtl-btn {
  background: var(--black);
  color: var(--white);
}
.product-item .figure {
  display: block;
  line-height: 0;
}
.product-item .figure img {
  width: 100%;
  transition: 1s ease;
}
.product-item .figcaption {
  padding-top: 30px;
  text-align: center;
}
.product-item .figcaption h4 {
  font-size: 32px;
}
.product-item .figcaption h5 {
  font-size: 24px;
}
.product-item .figcaption h4, .product-item .figcaption h5 {
  line-height: 1.167;
  font-weight: 600;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 520px) {
  .breadcrumps {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
  }
}
.breadcrumps li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.breadcrumps li::before {
  content: ">";
  position: absolute;
  left: 100%;
  top: 50%;
  translate: 0 -50%;
  font-size: 12px;
  font-family: monospace;
  color: var(--text);
}
.breadcrumps li:last-child::before {
  display: none;
}
.breadcrumps li a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li a {
    font-size: 12px;
    text-overflow: ellipsis;
  }
}
.breadcrumps li a.active {
  color: var(--black);
}
.breadcrumps li:not(:last-child) {
  position: relative;
  padding-right: 20px;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:last-child) {
    padding-right: 8px;
  }
}
.breadcrumps li:not(:first-child) {
  padding-left: 20px;
}
@media only screen and (max-width: 520px) {
  .breadcrumps li:not(:first-child) {
    padding-left: 8px;
  }
}

.bg-circle {
  position: relative;
  --bgcolor: rgb(256 256 256);
  --bgsize: 30%;
  --top: 50%;
  --right: 10%;
}
.bg-circle::before {
  top: var(--top);
  right: var(--right);
  content: "";
  position: absolute;
  z-index: 0;
  width: var(--bgsize);
  aspect-ratio: 1;
  background: var(--bgcolor);
  filter: blur(152.3000030518px);
}
.bg-circle .container {
  position: relative;
  z-index: 1;
}

.common-slider-1 .swiper {
  max-width: calc(100% - 45px);
}
@media only screen and (max-width: 540px) {
  .common-slider-1 .swiper {
    max-width: 100%;
  }
}

.swiper-prev.has-shadow, .swiper-next.has-shadow {
  box-shadow: 0px 1px 3px 1px rgba(60, 64, 67, 0.1490196078), 0px 1px 2px 0px rgba(60, 64, 67, 0.3019607843);
}

@keyframes scroll {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(10px);
  }
}
.sticky {
  position: sticky;
  top: 20px;
  z-index: 1;
}
@media only screen and (max-width: 540px) {
  .sticky {
    position: static;
  }
}

.flex-box {
  display: flex;
}

.grid-box {
  display: grid;
}

.bottom-video {
  position: relative;
}
.bottom-video::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 21.38%, rgba(0, 0, 0, 0.85) 85.52%);
  content: "";
}
.bottom-video video {
  width: 100%;
  height: 100%;
  display: block;
}
.bottom-video .content {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.bottom-video .content h2 {
  font-size: 12rem;
  color: var(--white);
  font-family: "Sweet Sans Pro";
  text-transform: uppercase;
}
@media only screen and (max-width: 1366px) {
  .bottom-video .content h2 {
    font-size: 8rem;
  }
}
@media only screen and (max-width: 540px) {
  .bottom-video .content h2 {
    font-size: 32px;
  }
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: "Sweet Sans Pro";
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  border-radius: 40px;
  border: 1px solid transparent;
  overflow: hidden;
  z-index: 1;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  text-transform: capitalize;
}
@media only screen and (max-width: 375px) {
  .btn {
    font-size: 11px;
  }
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
  z-index: -1;
}
.btn img, .btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: filter 0.25s ease;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn:disabled:hover::before {
  transform: scaleY(0);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary::before {
  background: var(--secondary);
}
.btn-primary img, .btn-primary svg {
  filter: brightness(0) invert(1);
}
.btn-primary:hover::before {
  transform: scaleY(1);
}
.btn-primary:hover img, .btn-primary:hover svg {
  filter: brightness(0) invert(1);
}

.btn-secondary {
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-secondary::before {
  background: var(--secondary);
}
.btn-secondary:hover {
  color: var(--white);
}
.btn-secondary:hover::before {
  transform: scaleY(1);
}
.btn-secondary:hover img, .btn-secondary:hover svg {
  filter: brightness(0) invert(1);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white::before {
  background: var(--secondary);
}
.btn-outline-white img, .btn-outline-white svg {
  filter: brightness(0) invert(1);
}
.btn-outline-white:hover {
  color: var(--white);
  border-color: var(--secondary);
}
.btn-outline-white:hover::before {
  transform: scaleY(1);
}
.btn-outline-white:hover img, .btn-outline-white:hover svg {
  filter: brightness(0) invert(1);
}

.btn-underline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  padding: 7px 14px;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}
.btn-underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transition: all 0.4s ease;
  z-index: 1;
}
.btn-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-underline:hover::after {
  transform: scaleY(1);
}
.btn-underline.white {
  color: var(--white);
}
.btn-underline.white::before {
  background: var(--white);
}
.btn-underline.white::after {
  background: var(--white);
}
.btn-underline.white:hover {
  color: var(--black);
}
.btn-underline.white:hover::before {
  background: var(--white);
}
.btn-underline.white:hover img {
  filter: brightness(0);
}
.btn-underline.primary {
  color: var(--primary);
}
.btn-underline.primary::before {
  background: var(--primary);
}
.btn-underline.primary::after {
  background: var(--primary);
}
.btn-underline.primary:hover {
  color: var(--white);
}
.btn-underline.primary:hover::before {
  background: var(--primary);
}
.btn-underline.primary:hover img {
  filter: brightness(0) invert(1);
}

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

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 5;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pg-color, rgba(219, 219, 219, 0.368627451));
  opacity: var(--pg-opacity, 0.35);
  margin: 0 !important;
  transition: opacity 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
  position: relative;
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--pg-color, var(--black));
  --fill: 0%;
}
.swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--pg-ring-bg, rgba(0, 0, 0, 0.2));
  z-index: 0;
}
.swiper-pagination .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from -90deg, var(--pg-color, var(--black)) var(--fill, 0%), transparent var(--fill, 0%));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  transform: translateZ(0);
  will-change: background;
  z-index: 1;
}
.swiper-pagination.pg-white {
  --pg-color: var(--white);
  --pg-opacity: .4;
  --pg-ring-bg: rgba(255, 255, 255, 0.25);
  --pg-ring-mask: white;
}
.swiper-pagination.pg-dark {
  --pg-color: var(--black);
  --pg-opacity: 0.4;
  --pg-ring-bg: rgba(0, 0, 0, 0.2);
  --pg-ring-mask: #000;
}
.swiper-pagination.pg-primary {
  --pg-color: var(--primary);
  --pg-opacity: 0.4;
  --pg-ring-bg: rgba(226, 0, 0, 0.25);
  --pg-ring-mask: #000;
}
.swiper-pagination.pg-white.pg-dark, .swiper-pagination.pg-white.pg-primary {
  --pg-color: var(--white);
  --pg-opacity: 1;
  --pg-ring-bg: rgba(255, 255, 255, 0.25);
  --pg-ring-mask: white;
}
.swiper-pagination.pg-left {
  justify-content: flex-start;
}
.swiper-pagination.pg-center {
  justify-content: center;
}
.swiper-pagination.pg-right {
  justify-content: flex-end;
}

.swiper-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.swiper-group .swiper-counter {
  color: var(--primary) !important;
}
.swiper-group .swiper-counter .swiper-pagination-current,
.swiper-group .swiper-counter .swiper-pagination-total {
  font-size: 16px;
  color: var(--primary);
  min-width: 40px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.swiper-group button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: 0.3s ease;
  background: var(--white);
  border: 1px solid var(--primary);
}
.swiper-group button.swiper-button-lock, .swiper-group button.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
@media only screen and (max-width: 991px) {
  .swiper-group button {
    width: 35px;
    height: 35px;
  }
}
.swiper-group button svg {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 991px) {
  .swiper-group button svg {
    width: 16px;
    height: 16px;
  }
}
.swiper-group button svg path {
  fill: var(--primary);
}
.swiper-group button:hover {
  opacity: 0.8;
  background: var(--secondary);
}
.swiper-group button:hover svg path {
  fill: var(--white);
}
.swiper-group button:first-child {
  transform: rotate(90deg);
}
.swiper-group button:last-child {
  transform: rotate(270deg);
}

html:has(.home_banner),
body:has(.home_banner) {
  height: 100%;
  overflow: hidden;
}

body:has(.home_banner) main {
  height: 100vh;
  overflow-y: auto;
}
body:has(.home_banner) main::-webkit-scrollbar {
  width: 10px;
}
body:has(.home_banner) main::-webkit-scrollbar-track {
  box-shadow: none;
}
body:has(.home_banner) main::-webkit-scrollbar-thumb {
  background-color: var(--white);
}
body:has(.home_banner) .panel {
  height: 100vh;
  position: relative;
}

.pro_card {
  padding: 20px;
  background: var(--gradient-b);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .pro_card {
    padding: 14px;
    gap: 12px;
  }
}
@media only screen and (max-width: 540px) {
  .pro_card {
    padding: 12px;
    gap: 10px;
  }
}
.pro_card .img {
  width: 100%;
  height: 450px;
  display: block;
}
@media only screen and (max-width: 1366px) {
  .pro_card .img {
    height: 280px;
  }
}
@media only screen and (max-width: 1024px) {
  .pro_card .img {
    height: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .pro_card .img {
    height: 180px;
  }
}
@media only screen and (max-width: 540px) {
  .pro_card .img {
    height: 150px;
  }
}
.pro_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pro_card:hover .img img {
  transform: scale(1.15);
}
.pro_card p {
  color: var(--black);
  text-align: center;
  font-weight: 500;
}

.dish_card {
  padding: 20px;
  background: var(--gray-sec);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}
.dish_card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.77);
  filter: blur(65px);
  width: 100px;
  height: 100px;
}
@media only screen and (max-width: 768px) {
  .dish_card {
    padding: 14px;
    gap: 12px;
  }
}
@media only screen and (max-width: 540px) {
  .dish_card {
    padding: 12px;
    gap: 10px;
  }
}
.dish_card .img {
  width: 100%;
  height: 125px;
  display: block;
  z-index: 4;
}
.dish_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in;
}
.dish_card:hover .img img {
  transform: scale(1.15);
}
.dish_card .content {
  width: 100%;
}
.dish_card .content p {
  color: var(--black);
  margin: 12px 0 20px;
}
.dish_card .content .btn {
  width: 100%;
  margin-top: 18px;
  background: linear-gradient(86deg, rgba(227, 191, 176, 0.47) 0%, rgba(255, 255, 255, 0) 55%);
}
.dish_card .content .colorType {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dish_card .content .colorType .color-label {
  font-size: 12px;
  color: #666;
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
.dish_card .content .colorType .color-swatches {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.dish_card .content .colorType .color-swatches .swatch-label {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dish_card .content .colorType .color-swatches .swatch-label input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.dish_card .content .colorType .color-swatches .swatch-label .swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.dish_card .content .colorType .color-swatches .swatch-label .swatch:hover {
  transform: scale(1.1);
}
.dish_card .content .colorType .color-swatches .swatch-label input[type=radio]:checked + .swatch {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--swatch-color);
  transform: scale(1.05);
}

.accessories_card {
  padding: 40px;
  background: var(--gray-sec);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;
  position: relative;
}
.accessories_card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.77);
  filter: blur(59px);
  width: 100px;
  height: 100px;
}
.accessories_card .img {
  width: 216px;
  height: 136px;
  z-index: 4;
}
.accessories_card .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  transition: all 0.3s ease-in;
}
.accessories_card:hover .img img {
  transform: scale(1.15);
}
.accessories_card .content {
  text-align: center;
}
.accessories_card .content p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumbs ul li {
  display: flex;
  align-items: center;
}
.breadcrumbs ul li a {
  color: var(--text);
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}
.breadcrumbs ul li img {
  width: 10px;
  height: 10px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.breadcrumbs ul li:last-child a {
  color: var(--black);
  font-weight: 500;
  pointer-events: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  transition: all 0.4s ease;
  z-index: 10;
  height: var(--headerheight);
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: -1;
  transition: 0.4s ease;
  background: var(--white);
}
header.header-fixed::before, header.header-fill::before {
  height: 100%;
}
header.header-fixed .header-wrapper {
  padding: 8px 0;
  transition: all 0.4s ease;
}
header.header-fixed .header-wrapper .colA .logo {
  width: 85px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 540px) {
  header.header-fixed .header-wrapper .colA .logo {
    width: 70px;
  }
}
header.header-fixed .header-wrapper .colA .menu-list li a {
  font-size: 14px;
  transition: all 0.4s ease;
}
header.header-fixed .header-wrapper .colA .menu-list li img, header.header-fixed .header-wrapper .colA .menu-list li svg {
  width: 24px;
  height: 24px;
}
header.header-fixed .header-wrapper .colB .hampop_wrapper p {
  color: var(--black);
}
header.header-fixed .header-wrapper .colB .hampop_wrapper .line span {
  background: var(--black);
}
header.header-fixed .header-wrapper .colC button:first-child {
  color: var(--black);
}
header.header-fixed .header-wrapper .colC button img {
  filter: brightness(0);
}
header .header-wrapper {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: all 0.4s ease;
  justify-content: space-between;
  gap: 40px;
}
@media only screen and (max-width: 1024px) {
  header .header-wrapper {
    gap: 10px;
  }
}
@media only screen and (max-width: 991px) {
  header .header-wrapper {
    flex-direction: row;
    gap: 20px;
  }
}
@media only screen and (max-width: 540px) {
  header .header-wrapper {
    gap: 15px;
    padding: 5px 0;
  }
}
header .header-wrapper .colA {
  display: flex;
  align-items: center;
  gap: 60px;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1366px) {
  header .header-wrapper .colA {
    gap: 60px;
  }
}
@media only screen and (max-width: 1024px) {
  header .header-wrapper .colA {
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  header .header-wrapper .colA {
    gap: 20px;
  }
}
header .header-wrapper .colA .logo {
  width: 125px;
  transition: all 0.4s ease;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 540px) {
  header .header-wrapper .colA .logo {
    width: 85px;
  }
}
header .header-wrapper .colC {
  display: flex;
  align-items: center;
  gap: 24px;
}
header .header-wrapper .colC button:first-child {
  margin-right: 10px;
  color: var(--white);
  font-size: 14px;
}
header .header-wrapper .colB .hampop_wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .header-wrapper .colB .hampop_wrapper p {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
  color: var(--white);
}
header .header-wrapper .colB .hampop_wrapper .line {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
header .header-wrapper .colB .hampop_wrapper .line span {
  display: block;
  height: 2px;
  background: var(--white);
  width: 50px;
}

.ham-pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  z-index: 999999;
  overflow: hidden;
  background: var(--white);
}
.ham-pop::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 340px;
  height: 340px;
  background-image: url(../../images/logo-bg.svg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: contain;
  filter: brightness(0) invert(0);
  pointer-events: none;
}
@media only screen and (max-width: 1366px) {
  .ham-pop::after {
    width: 200px;
    height: 200px;
  }
}
.ham-pop.is-open {
  transform: translateX(0%);
}
.ham-pop .ham-inner {
  display: flex;
  height: 100%;
}
.ham-pop .ham-sidebar {
  width: 100%;
  max-width: 275px;
  height: 100%;
  background: linear-gradient(180deg, #FFF5F3 0%, #FFFFFF 50%, #FFF5F3 100%);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding: 90px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
.ham-pop .ham-sidebar .close {
  position: absolute;
  left: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0;
}
.ham-pop .ham-sidebar .close img {
  width: 15px;
  height: 15px;
}
.ham-pop .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ham-pop .sidebar-nav ul li {
  transition: 0.4s ease;
  position: relative;
}
.ham-pop .sidebar-nav ul li a {
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 400;
  justify-content: space-between;
  transition: 0.4s ease;
}
.ham-pop .sidebar-nav ul li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: 0.4s ease;
}
.ham-pop .sidebar-nav ul li:hover {
  transform: translateX(5px);
}
.ham-pop .sidebar-nav ul li:hover::before {
  width: 100%;
}
.ham-pop .sidebar-nav ul li:hover a {
  font-weight: 500;
  color: var(--black);
}
.ham-pop .sidebar-nav ul li.active {
  margin-bottom: 10px;
}
.ham-pop .sidebar-nav ul li.active::before {
  width: 100%;
}
.ham-pop .sidebar-nav ul li.active a {
  font-weight: 500;
  color: var(--black);
}
.ham-pop .ham-content {
  flex: 1;
  padding: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  overflow-y: auto;
}
.ham-pop .ham-content::-webkit-scrollbar {
  width: 4px;
}
.ham-pop .ham-content::-webkit-scrollbar-track {
  box-shadow: none;
}
.ham-pop .ham-content::-webkit-scrollbar-thumb {
  background-color: var(--black);
}
.ham-pop .ham-content .ham-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.ham-pop .ham-content .ham-col .menu-footer {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ham-pop .ham-content .ham-col .menu-footer:hover img {
  transform: scale(1.1);
}
.ham-pop .ham-content .ham-col .menu-footer p {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  bottom: 24px;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.ham-pop .ham-content .ham-col .menu-footer::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 11.06%, rgba(0, 0, 0, 0) 60%);
  z-index: 2;
}
.ham-pop .ham-content .ham-col .menu-footer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.4s ease;
  z-index: -1;
}
.ham-pop .ham-content .ham-col .menu-list {
  flex: 1;
}
.ham-pop .ham-content .ham-col .menu-list .ham-col-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  background: var(--primary-light);
}
.ham-pop .ham-content .ham-col .menu-list .ham-col-title .icon {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ham-pop .ham-content .ham-col .menu-list .ham-col-title .icon img {
  width: 20px;
  height: 20px;
}
.ham-pop .ham-content .ham-col .menu-list .ham-col-title .icon a {
  font-size: 16px;
  font-weight: 500;
  color: rgb(198, 150, 134);
  text-decoration: none;
}
.ham-pop .ham-content .ham-col .menu-list .ham-col-title svg {
  flex-shrink: 0;
}
.ham-pop .ham-content .ham-col .menu-list .ham-col-title svg path {
  stroke: rgb(198, 150, 134);
}
.ham-pop .ham-content .ham-col .menu-list ul {
  list-style: none;
  padding-left: 15px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ham-pop .ham-content .ham-col .menu-list ul li a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: 0.4s ease;
  position: relative;
  display: inline-block;
  display: inline-block;
}
.ham-pop .ham-content .ham-col .menu-list ul li a:hover {
  transform: translateX(5px);
  color: var(--primary);
}

.enquire-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: linear-gradient(180deg, #FFF5F3 0%, #FFFFFF 50%, #FFF5F3 100%);
  max-width: 450px;
}
.enquire-pop.is-open {
  transform: translateX(0%);
}
.enquire-pop .model-body {
  padding: 44px 40px 19px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.enquire-pop .model-body::after {
  content: "";
  position: absolute;
  bottom: -12%;
  right: -34%;
  width: 100%;
  height: 100%;
  background-image: url(../../images/logoShpe.svg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 132% auto;
  opacity: 0.1;
  pointer-events: none;
}
.enquire-pop .model-body::after {
  bottom: -16%;
}
.enquire-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .enquire-pop .model-body {
    padding: 70px 20px 30px;
  }
}
.enquire-pop .model-body .title {
  margin-bottom: 2rem;
}
.enquire-pop .model-body .title h4 {
  color: var(--primary);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.58;
  font-family: "Louize trial";
  text-transform: capitalize;
}
.enquire-pop .model-body .title p {
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}
.enquire-pop .model-body .form {
  --gaptb: 20px;
}
.enquire-pop .model-body .form .btn {
  margin: 20px 0 0;
  padding: 10px 30px;
}
.enquire-pop .model-body .form .form-group {
  position: relative;
}
.enquire-pop .model-body .form .form-group::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  background: #666;
}
.enquire-pop .model-body .form .form-group::before.active::before {
  background: var(--primary);
}
.enquire-pop .model-body .form .form-group::before::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  background: red;
  width: 0;
  transition: 0.5s ease;
}
.enquire-pop .model-body .form .form-group::before input, .enquire-pop .model-body .form .form-group::before textarea {
  color: #000;
  font-family: "Sweet Sans Pro";
}
.enquire-pop .model-body .form .form-group::before label {
  color: #666;
  font-family: "Sweet Sans Pro";
}
.enquire-pop .model-body .form .form-group::before:focus, .enquire-pop .model-body .form .form-group::before.valid {
  outline: none;
}
.enquire-pop .model-body .form .form-group::before:focus ~ label, .enquire-pop .model-body .form .form-group::before.valid ~ label {
  color: var(--black);
}
.enquire-pop .model-body .form .form-group::before .custom-select .current {
  color: #666;
}
.enquire-pop .model-body .form .form-group::before .custom-select::before {
  filter: brightness(0);
}
.enquire-pop .model-body .form .form-group::before.active .custom-select .current {
  color: #000;
}
.enquire-pop .model-body .form .form-group::before.active .label {
  color: var(--black);
}
.enquire-pop .model-body .form .form-group.enquire-hide {
  display: flex;
}
.enquire-pop .model-body .form .form-group.enquire-hide h6 {
  font-size: 20px;
  color: var(--primary);
}

.cart-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: linear-gradient(180deg, #FFF5F3 0%, #FFFFFF 50%, #FFF5F3 100%);
  max-width: 476px;
}
.cart-pop.is-open {
  transform: translateX(0%);
}
.cart-pop .model-body {
  padding: 44px 26px 19px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.cart-pop .model-body::after {
  content: "";
  position: absolute;
  bottom: -12%;
  right: -34%;
  width: 100%;
  height: 100%;
  background-image: url(../../images/logoShpe.svg);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 132% auto;
  opacity: 0.1;
  pointer-events: none;
}
.cart-pop .model-body::after {
  bottom: -16%;
}
.cart-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
  height: 3px;
}
.cart-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.cart-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media only screen and (max-width: 675px) {
  .cart-pop .model-body {
    padding: 70px 20px 30px;
  }
}
.cart-pop .model-body .title {
  margin-bottom: 2rem;
}
.cart-pop .model-body .title h4 {
  color: var(--primary);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.58;
  font-family: "Louize trial";
  text-transform: capitalize;
}
.cart-pop .model-body .title p {
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}
.cart-pop .model-body .btn {
  margin-top: 44px;
  padding: 10px 30px;
}
.cart-pop .model-body .grid {
  overflow: auto;
}
.cart-pop .model-body .grid .cart {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}
.cart-pop .model-body .grid .cart:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cart-pop .model-body .grid .cart > div:first-child {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}
.cart-pop .model-body .grid .cart > div:first-child .img {
  width: 102px;
  height: 90px;
  background: var(--white);
}
.cart-pop .model-body .grid .cart > div:first-child .img img {
  padding: 12px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #e5e5e5;
  flex-shrink: 0;
}
.cart-pop .model-body .grid .cart > div:first-child .nameBtn {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cart-pop .model-body .grid .cart > div:first-child .nameBtn h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: rgb(102, 102, 102);
  margin-bottom: 8px;
}
.cart-pop .model-body .grid .cart > div:first-child .nameBtn p {
  color: #777;
  font-size: 12px;
  font-weight: 500;
}
.cart-pop .model-body .grid .cart .priceDel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-width: 80px;
}
.cart-pop .model-body .grid .cart .priceDel .delCartItem {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.cart-pop .model-body .grid .cart .priceDel .delCartItem svg {
  width: 18px;
  height: 18px;
}
.cart-pop .model-body .grid .cart .priceDel .incDecBtn {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-pop .model-body .grid .cart .priceDel .incDecBtn button {
  width: 26px;
  height: 26px;
  border: 1px solid #bfbfbf;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cart-pop .model-body .grid .cart .priceDel .incDecBtn span {
  min-width: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.cart-pop .model-body .grid .cart .priceDel .incDecBtn img {
  filter: brightness(0);
  opacity: 0.5;
  width: 15px;
  height: 15px;
}

.video-pop.model {
  left: 0;
  right: 0;
  bottom: -100%;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 90;
  max-width: 100%;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.video-pop.model.is-open {
  transform: translateY(0%);
  bottom: 0;
}
.video-pop.model .close-video {
  position: absolute;
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
@media only screen and (max-width: 675px) {
  .video-pop.model .close-video {
    right: 0;
  }
}
.video-pop.model .close-video:hover {
  background: var(--primary);
}
.video-pop.model .close-video svg {
  height: 35%;
  width: 35%;
}
.video-pop.model .close-video path {
  stroke-width: 2;
  stroke: var(--white);
}
.video-pop.model .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
}
@media only screen and (max-width: 675px) {
  .video-pop.model .model-body {
    max-width: 95%;
  }
}
.video-pop.model .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
  background: var(--white);
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--white);
  display: none;
}
@media only screen and (max-width: 675px) {
  .footer-strip {
    display: block;
  }
}
.footer-strip ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-strip ul li {
  flex: 1;
}
.footer-strip ul li:not(:first-child) a {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-strip ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 5px;
  height: var(--footerstrip);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary);
}
.footer-strip ul li a span {
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
}
@media only screen and (max-width: 375px) {
  .footer-strip ul li a span {
    font-size: 12px;
  }
}
.footer-strip ul li a svg {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 375px) {
  .footer-strip ul li a svg {
    width: 15px;
    height: 15px;
  }
}
.footer-strip ul li a svg path {
  fill: currentColor;
  stroke: currentColor;
}

.fixed-media {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .fixed-media {
    display: none;
  }
}
.fixed-media .wts {
  padding: 8px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.3s ease-in-out;
}
.fixed-media .wts svg {
  width: 22px;
  display: block;
}
.fixed-media .wts svg path {
  fill: var(--secondary);
}
.fixed-media .wts:hover {
  background: #0fa144;
  color: var(--white);
}
.fixed-media .wts:hover svg path {
  fill: var(--white);
}
.fixed-media .req-btn {
  padding: 8px 20px;
  background: var(--white);
  color: var(--secondary);
  border-radius: 50px;
  font-weight: 500;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.fixed-media .req-btn:hover {
  background: var(--gradient-d);
  color: var(--white);
}

.enquire-step,
.enquire-hide {
  display: none;
}/*# sourceMappingURL=header.css.map */