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

:root {
  --headerheight: 100px;
  --headerpadding: 15px;
  --headerfixed: 156px;
  --headerstripfixed: 0px;
  --footerstrip: 66px;
  --sectionpadding: 50px 0 60px;
  --secondary: #000;
  --white: #fff;
  --text: #c1c1c1;
  --gray: #151414;
  --bggray: #E8EBFF;
  --yellow: #f9b233;
  --triangle: 20px;
  --triangle2: 20px;
  --container:1750px;
  --containerfluid: 4rem;
  --arrowsize: 20px;
  --space: 11px;
}
@media (max-width: 767px) {
  :root {
    --space: 5px;
  }
}

body.overflow-hidden {
  overflow: hidden;
  margin-right: 8px;
}
@media (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 8px);
}
@media (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Poppins", serif;
  font-weight: 400;
}

body {
  background-color: var(--secondary);
  overflow-x: hidden;
  width: 100%;
}
body.hidden {
  overflow: hidden;
  margin-right: 8px;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
}

.fancybox__container {
  z-index: 9999 !important;
}

.container-main {
  padding: 4px var(--containerfluid);
}
@media (max-width: 991px) {
  .container-main {
    padding: 4px 30px;
  }
}
@media (max-width: 540px) {
  .container-main {
    padding: 4px 18px;
  }
}

a {
  transition: 0.3s ease;
  cursor: pointer;
}

.ham-btn {
  margin-left: 0;
}
@media (max-width: 768px) {
  .ham-btn {
    margin-left: 24px;
  }
}

.arrow {
  margin-left: 12px;
}
@media (max-width: 540px) {
  .arrow {
    width: 20px;
  }
}

.center {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 38px;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .center {
    gap: 24px;
  }
}

.custom-margin {
  margin-top: 30px;
}

.btn, .regBtn-Black, .regBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 31px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  background-color: transparent;
  color: inherit;
}
@media (max-width: 540px) {
  .btn, .regBtn-Black, .regBtn {
    padding: 4px 20px;
  }
}
.btn::before, .regBtn-Black::before, .regBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: transparent;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: inherit;
}
.btn:hover::before, .regBtn-Black:hover::before, .regBtn:hover::before {
  transform: scaleX(1);
}

.regBtn {
  background-color: var(--white);
  color: var(--secondary);
}
.regBtn::before {
  background-color: var(--secondary);
}
.regBtn:hover {
  background-color: transparent;
  color: var(--white);
}
.regBtn:hover::before {
  background-color: var(--secondary);
}

.regBtn-Black {
  background-color: var(--gray);
  color: var(--white);
}
.regBtn-Black::before {
  background-color: var(--yellow);
}
.regBtn-Black:hover {
  background-color: transparent;
  color: var(--secondary);
}
.regBtn-Black:hover::before {
  background-color: var(--yellow);
}

.py {
  padding: 80px 0;
}
@media (max-width: 540px) {
  .py {
    padding: 12px 0;
  }
}

.pb {
  padding-bottom: 120px !important;
}

.mt {
  margin-top: 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .mt {
    margin-top: 10px;
  }
}
@media (max-width: 540px) {
  .mt {
    margin-top: 49px;
  }
}

.header-fixed {
  background-color: #333333;
  z-index: 9999 !important;
}

.regBtn-outline {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 31px;
  border-radius: 30px;
  border: 1.4px solid var(--white);
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
  z-index: 1;
  gap: 8px;
}
@media (max-width: 540px) {
  .regBtn-outline {
    font-size: 12px;
  }
}
.regBtn-outline svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}
.regBtn-outline:hover {
  border-color: var(--highlight-color);
  color: var(--highlight-color);
}
.regBtn-outline:hover svg {
  fill: black;
}
.regBtn-outline:hover path {
  fill: black;
}
.regBtn-outline:focus {
  outline: none;
}
.regBtn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: inherit;
}
.regBtn-outline:hover {
  color: var(--secondary);
}
.regBtn-outline:hover::before {
  transform: scaleX(1);
}

.regGradient {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px 8px 60px !important;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  text-transform: uppercase;
  color: var(--secondary);
  background: linear-gradient(90deg, #000000 0%, #FFFFFF 100%);
  z-index: 1;
  transition: all 0.4s ease;
}
@media (max-width: 540px) {
  .regGradient {
    padding: 8px 16px 8px 45px !important;
    font-size: 14px;
  }
}
.regGradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: inherit;
}
.regGradient:hover::before {
  transform: scaleX(1);
}
.regGradient:hover {
  color: var(--secondary);
}

.img-hover-scale {
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.img-hover-scale img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.img-hover-scale:hover img {
  transform: scale(1.08);
}

.silverShouth {
  font-family: SilverSouthScript;
  text-transform: lowercase;
}
.silverShouth::first-letter {
  text-transform: uppercase;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1, h2, h3 {
  font-family: Kugile;
  text-transform: uppercase;
}

h4, h5 {
  font-weight: 600;
}

h6 {
  font-weight: 500;
}

h1 {
  font-size: 64px;
  line-height: 1;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 46px;
  }
}

h2 {
  font-size: 45px;
  line-height: 1.25;
}
@media (max-width: 768px) {
  h2 {
    font-size: 35px;
    line-height: 41px;
  }
}

h3 {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 365px) {
  h3 {
    font-size: 22px;
  }
}

.heading h3 {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  .heading h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .heading h3 {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  .heading h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 365px) {
  .heading h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.1;
}
@media (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 1300px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  h6 {
    font-size: 16px;
    line-height: 22px;
  }
}

.cart {
  width: 290px;
}

p {
  color: var(--text);
  font-size: 16px;
}
@media (max-width: 540px) {
  p {
    font-size: 14px;
  }
}

.bg {
  height: 100%;
}

a {
  color: #fff;
}

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

.grid {
  display: grid;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

svg {
  vertical-align: middle;
  transition: 0.3s ease;
}

.invert-img {
  transform: scaleX(-1);
}

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

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;
  -o-object-fit: cover;
     object-fit: cover;
}

.owl-prev img {
  transform: scaleX(-1);
}

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

.item-md {
  position: relative;
}
.item-md figure {
  overflow: hidden;
  line-height: 0;
}
.item-md figure img {
  transition: 0.5s ease;
}
.item-md::before, .item-md::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  width: 100%;
  max-width: 435px;
}
.model .close {
  position: absolute;
  top: 0;
  right: 0;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 6;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: opacity 1s ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}
@media (max-width: 675px) {
  .overlay {
    display: none;
  }
}
.overlay.is-open {
  opacity: 1;
  transform: translateY(0%);
}

.custom-select {
  max-width: 100%;
  margin: 0 auto;
  border: none;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  outline: none;
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.custom-select::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient);
}
.custom-select .current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
}
.custom-select .current img.arrow {
  width: 18px;
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  box-sizing: border-box;
  margin-top: 4px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
}
.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 li {
  display: block;
  padding: 0 20px;
  line-height: 35px;
}
.custom-select .list li.selected {
  background: #e2e2e2;
}
.custom-select .list li:hover {
  background: var(--secondary);
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.banner, .home-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.banner::before, .home-banner::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;
}
.banner::before, .home-banner::before {
  background: linear-gradient(366deg, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, 0.94) 84%), linear-gradient(190deg, rgba(0, 0, 0, 0) 24.5%, rgba(0, 0, 0, 0.93) 70%);
}
.banner::before video, .banner::before img, .home-banner::before video, .home-banner::before img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .banner-wrapper {
    bottom: 7%;
  }
}
@media (max-width: 540px) {
  .banner-wrapper {
    bottom: 3%;
  }
}

.banner::before {
  background: linear-gradient(366deg, rgba(0, 0, 0, 0) 49%, rgba(0, 0, 0, 0.94) 84%), linear-gradient(190deg, rgba(0, 0, 0, 0) 30.5%, rgba(0, 0, 0, 0.93) 75%);
}

.banner, .home-banner {
  height: 100vh;
}
@media (max-width: 1024px) {
  .banner, .home-banner {
    height: 65vh;
  }
}
@media (max-width: 991px) {
  .banner, .home-banner {
    height: 65vh;
  }
}
@media (max-width: 768px) {
  .banner, .home-banner {
    height: 55vh;
  }
}
@media (max-width: 540px) {
  .banner, .home-banner {
    height: 56vh;
  }
}
@media only screen and (max-width: 420px) {
  .banner, .home-banner {
    height: 50vh;
  }
}

.play-btn {
  --btnsize: 42px;
  --border: 1px;
  --bordercolor: var(--secondary);
  --playbtncolor: var(--secondary);
  width: 60px !important;
  height: 60px !important;
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: var(--white);
}
.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);
}

.blue {
  background: #1BB6F0;
}

.yellow {
  background: #FBC740;
}

.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;
  display: none;
}

.svg path[fill] {
  fill: currentColor;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-hovleft:hover svg {
  transform: translateX(-3px);
}

.btn-hovright:hover svg {
  transform: translateX(3px);
}

.ahov:hover {
  color: var(--prime) !important;
}

.aWhover:hover {
  color: #fff !important;
  padding-left: 5px;
}

.flex .colA {
  padding-left: 0;
}

.model.enquire-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: var(--white);
  z-index: 99999 !important;
}
.model.enquire-pop.is-open {
  transform: translateX(0%);
}
.model.enquire-pop button.close {
  top: 25px;
  right: 25px;
}
.model.enquire-pop .model-body {
  padding: 60px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.model.enquire-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
}
.model.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.model.enquire-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.model.enquire-pop .model-body .title h4 {
  font-size: 32px;
  color: var(--secondary);
  font-family: Kugile;
  font-weight: 500;
  text-transform: capitalize;
}
.model.enquire-pop .model-body .title p {
  color: var(--gray);
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}
.model.enquire-pop .model-body .form {
  --gaptb: 15px;
}
.model.enquire-pop .model-body .form .sbmt-grp {
  width: 100%;
}
.model.enquire-pop .model-body .form .sbmt-grp a {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 10px 22px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
.model.enquire-pop .model-body .form .sbmt-grp a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 25px;
  z-index: -2;
}
.model.enquire-pop .model-body .form .sbmt-grp a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  border-radius: 25px;
  z-index: -1;
}
.model.enquire-pop .model-body .form .sbmt-grp a:hover::before {
  width: 100%;
}
.model.enquire-pop .model-body .form .sbmt-grp a::after {
  background: #4459C5;
}
.model.enquire-pop .model-body .form .sbmt-grp a::before {
  background: #1B0E96;
}

.ham-pop-img {
  margin-right: -133px;
  margin-top: 95px;
}

.model.ham-pop {
  right: 0;
  max-width: 480px;
  background: var(--white);
  transform: translateX(100%);
  transition: 0.5s ease;
  z-index: 99999 !important;
}
.model.ham-pop.is-open {
  transform: translateX(0%);
}
.model.ham-pop .close {
  top: 30px;
  right: 25px;
}
.model.ham-pop .close path {
  stroke: var(--text) !important;
  stroke-width: 2 !important;
}
.model.ham-pop .model-body {
  padding: 0px 40px 30px;
  margin-top: 85px;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.model.ham-pop .model-body::-webkit-scrollbar {
  width: 6px;
  background: var(--white);
}
.model.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.model.ham-pop .model-body .ico {
  max-width: 70px;
  margin-bottom: 55px;
  line-height: 0;
}
.model.ham-pop .model-body .ico img, .model.ham-pop .model-body .ico svg {
  width: 100%;
  height: auto;
}
.model.ham-pop .model-body .nav-list {
  flex: 1;
}
.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;
}
@media (max-width: 991px) {
  .model.ham-pop .model-body .nav-list > li.desktop-non {
    display: block;
  }
}
.model.ham-pop .model-body .nav-list > li.hasDropdown {
  position: relative;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico {
  position: absolute;
  right: 0;
  top: 4px;
  --sizeplu: 20px;
  height: var(--sizeplu);
  width: var(--sizeplu);
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--prime);
  transition: 0.5s ease;
  transform: rotate(90deg);
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--prime);
  transition: 0.5s ease;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico.active::before {
  transform: rotate(0deg);
  opacity: 0;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham {
  display: none;
  padding-top: 15px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  max-height: 226px;
  overflow-y: auto;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul::-webkit-scrollbar {
  width: 4px;
  background: #fff;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul::-webkit-scrollbar-thumb {
  background-color: #1BB6F0;
  border-radius: 4px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li {
  padding: 4px 0;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li a {
  font-size: 15px;
  color: #000;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li a:hover {
  color: var(--prime);
}
.model.ham-pop .model-body .nav-list > li > a {
  font-size: 20px;
  line-height: 1.06;
  color: #000;
  display: inline-block;
  font-weight: 500;
}
.model.ham-pop .model-body .nav-list > li > a:hover {
  color: var(--prime);
}
.model.ham-pop .model-body .bottom-list {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.model.ham-pop .model-body .bottom-list .social-icons a {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  color: var(--text);
}
.model.ham-pop .model-body .bottom-list .social-icons a::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: var(--prime);
}
.model.ham-pop .model-body .bottom-list .social-icons a::before {
  border-radius: 50%;
  transform: scale(1.5);
  z-index: -1;
  opacity: 0;
  transition: 0.2s ease;
}
.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 svg {
  width: 24px;
  height: 24px;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path {
  transition: none;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path[stroke], .model.ham-pop .model-body .bottom-list .social-icons a svg path[fill=none] {
  stroke: currentColor;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path[fill] {
  fill: currentColor;
}
.model.ham-pop .model-body .bottom-list .social-icons a:hover {
  color: #dadada;
}
.model.ham-pop .model-body .bottom-list .social-icons a:hover::before {
  transition: 0.5s ease;
  opacity: 1;
  transform: scale(1);
}

.flex-center {
  gap: 30px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.social-icons svg {
  width: 26px;
  height: 26px;
  margin-right: 12px;
  transition: all 0.4s ease;
}
.social-icons svg path {
  fill: var(--gray);
  stroke: var(--gray);
  transition: all 0.3s ease;
}
.social-icons a:hover svg path {
  fill: var(--text);
  stroke: var(--text);
}

.option-parent, .choose-cart-parent, .adress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 675px) {
  .option-parent, .choose-cart-parent, .adress {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 991px) {
  .option-parent, .choose-cart-parent, .adress {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (max-width: 991px) {
  .option-parent, .choose-cart-parent, .adress {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .option-parent, .choose-cart-parent, .adress {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 540px) {
  .option-parent, .choose-cart-parent, .adress {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
}

.option {
  position: relative;
  padding: 24px 4rem;
}
@media (max-width: 1024px) {
  .option {
    padding: 36px 0;
  }
}
.option .swiper-group {
  z-index: 999;
  margin: 0 20px;
}
.option .swiper-group button img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  padding: 4px;
}
.option .swiper-group .option-parent-prev {
  position: absolute;
  left: 2%;
  top: 50%;
  z-index: 999;
  transform: rotate(180deg);
}
.option .swiper-group .option-parent-next {
  position: absolute;
  right: 2%;
  top: 50%;
  z-index: 999;
}

.option1 {
  height: 602px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1536px) {
  .option1 {
    height: 464px;
  }
}
@media (max-width: 1024px) {
  .option1 {
    height: 345px;
  }
}
@media (max-width: 991px) {
  .option1 {
    height: 415px;
  }
}
@media (max-width: 768px) {
  .option1 {
    height: 580px;
  }
}
@media (max-width: 540px) {
  .option1 {
    height: 345px;
  }
}
.option1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-in-out;
  transform: scale(1.05);
}
.option1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.2) 80%);
  transition: background 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .option1::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0.4) 80%);
  }
}
.option1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  transform: skewX(-20deg);
  opacity: 0;
  transition: opacity 0.3s;
}
.option1:hover img {
  transform: scale(1.1);
}
.option1:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}
.option1:hover::after {
  opacity: 1;
  animation: ledLight 3s ease-in-out;
}
.option1:hover .hover-option {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding-bottom: 20px;
  transform: translateY(0);
}

@keyframes ledLight {
  0% {
    left: -100%;
  }
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.option-content {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  z-index: 1111;
  text-align: center;
  width: 80%;
}
@media (max-width: 1536px) {
  .option-content {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .option-content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .option-content {
    width: 70%;
  }
}
@media (max-width: 540px) {
  .option-content {
    width: 95%;
  }
}
.option-content h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1024px) {
  .option-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
}
@media (max-width: 540px) {
  .option-content h4 {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}

.hover-option {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .hover-option {
    max-height: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    overflow: visible;
  }
}
.hover-option p {
  margin-bottom: 30px;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
  .hover-option p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .choose-cart h4 {
    font-size: 1.4rem;
  }
}
@media (max-width: 991px) {
  .choose-cart p {
    font-size: 14px;
  }
}

.sticky-action-bar {
  display: none;
}
@media (max-width: 768px) {
  .sticky-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background-color: var(--yellow);
    justify-content: space-between;
    align-items: center;
  }
  .sticky-action-bar > div {
    display: flex;
    flex: 1;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
  }
  .sticky-action-bar > div a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
  }
  .sticky-action-bar > div a svg {
    width: 20px;
    height: 20px;
    fill: black;
  }
  .sticky-action-bar > div a p {
    color: black;
    font-weight: 500;
    font-size: 14px;
  }
  .sticky-action-bar > div:nth-child(2) {
    border-left: 1px solid rgba(24, 24, 24, 0.5);
    border-right: 1px solid rgba(24, 24, 24, 0.5);
  }
}

body {
  position: relative;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 8px;
  background: var(--white);
}
body::-webkit-scrollbar-track {
  box-shadow: none;
}
body::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  color: var(--white);
}
h1 p, h2 p, h3 p, h4 p, h5 p, h6 p {
  color: var(--gray);
}

.black-navbar {
  background-color: black;
}

.modal1_1 .center1_1 {
  filter: invert(0) !important;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  transition: 0.5s ease;
  height: var(--headerheight);
}
header::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(--prime);
}
header::after {
  bottom: auto;
  height: 0;
  z-index: -1;
  transition: 0.5s ease;
}
@media (max-width: 768px) {
  header {
    height: 68px;
  }
}
@media (max-width: 540px) {
  header {
    height: 62px;
  }
}
header .header-container {
  height: 100%;
  transition: 0.5s ease;
}
header .header-container .upper-container {
  height: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--containerfluid);
  transition: 0.5s ease;
  gap: 2rem;
}
@media (max-width: 991px) {
  header .header-container .upper-container {
    padding: 12px 18px;
    gap: 0;
  }
}
@media (max-width: 540px) {
  header .header-container .upper-container {
    padding: 12px 18px;
    gap: 0;
  }
}
header .header-container .upper-container .colA, header .header-container .upper-container .colB, header .header-container .upper-container .colC {
  height: 100%;
  display: flex;
  align-items: center;
}
header .header-container .upper-container .colA {
  flex: 1;
}
header .header-container .upper-container .colA img {
  margin-top: 24px;
  width: 26%;
}
@media (max-width: 1024px) {
  header .header-container .upper-container .colA img {
    width: 41%;
  }
}
@media (max-width: 991px) {
  header .header-container .upper-container .colA img {
    width: 45%;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  header .header-container .upper-container .colA img {
    width: 60%;
    margin-top: 0;
  }
}
@media (max-width: 540px) {
  header .header-container .upper-container .colA img {
    width: 90%;
    margin-top: 0;
  }
}
header .header-container .upper-container .colC {
  flex: 1;
  display: flex;
  justify-content: end;
  margin: 0;
}
@media (max-width: 1024px) {
  header .header-container .upper-container .colC {
    margin-top: 10px;
  }
}
@media (max-width: 991px) {
  header .header-container .upper-container .colC {
    flex: 2;
    margin: 0;
  }
}
header .header-container .upper-container .colC ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
@media (max-width: 768px) {
  header .header-container .upper-container .colC ul {
    gap: 8px;
  }
}
@media (max-width: 540px) {
  header .header-container .upper-container .colC ul {
    gap: 0;
  }
}
header .header-container .upper-container .colC ul.hasDropdown {
  position: relative;
}
header .header-container .upper-container .colC ul.hasDropdown::before {
  content: "";
  background-image: url(../../icon/arrow-down-white.svg);
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-position-x: 92%;
  background-size: var(--arrowsize) auto;
  position: absolute;
  right: 7%;
  top: 9%;
  width: 20px;
  height: 20px;
  z-index: 3;
}
header .header-container .upper-container .colC ul.hasDropdown.group-sites .dropdown-menu {
  min-width: 230px;
}
header .header-container .upper-container .colC ul.hasDropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
header .header-container .upper-container .colC ul.hasDropdown:hover::before {
  transform: rotate(180deg);
  transition: 0.5s ease;
}
header .header-container .upper-container .colC ul.hasDropdown > a {
  padding: 6px 30px 6px 10px;
}
header .header-container .upper-container .colC ul.hover-btn > a {
  border: none !important;
  background: transparent;
  padding: 6px 10px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
header .header-container .upper-container .colC ul.hover-btn > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 25px;
  z-index: -2;
}
header .header-container .upper-container .colC ul.hover-btn > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  border-radius: 25px;
  z-index: -1;
}
header .header-container .upper-container .colC ul.hover-btn > a:hover::before {
  width: 100%;
}
header .header-container .upper-container .colC ul.hover-btn > a:hover {
  border: 1px solid #1BB6F0;
}
header .header-container .upper-container .colC ul.hasDropdown > a {
  padding: 6px 30px 6px 10px;
}
header .header-container .upper-container .colC ul:last-child {
  padding-left: 20px;
}
header .header-container .upper-container .colC ul.reg-btn a {
  transition: 0.5s ease;
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 6px 15px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
header .header-container .upper-container .colC ul.reg-btn a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 25px;
  z-index: -2;
}
header .header-container .upper-container .colC ul.reg-btn a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--elementhover);
  transition: all 0.3s;
  border-radius: 25px;
  z-index: -1;
}
header .header-container .upper-container .colC ul.reg-btn a:hover::before {
  width: 100%;
}
header .header-container .upper-container .colC ul.reg-btn a:hover {
  transition: 0.5s ease;
  color: var(--white);
}
header .header-container .upper-container .colC ul button.ham-btn {
  width: 50px;
  height: 20px;
  --border: 2px;
  border-top: var(--border) solid var(--white);
  border-bottom: var(--border) solid var(--white);
  transition: 0.5s ease;
}
header .header-container .upper-container .colC ul .dropdown-menu {
  --triangle: 10px;
  position: absolute;
  top: calc(100% + var(--triangle));
  left: 50%;
  translate: -50% 0;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.4s ease;
  opacity: 0;
  width: 100%;
  min-width: 185px;
  z-index: 2;
}
header .header-container .upper-container .colC ul .dropdown-menu::before {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(100% - var(--triangle) / 2);
  left: 50%;
  translate: -50% 0;
  width: var(--triangle);
  height: var(--triangle);
  background: var(--white);
  transform: rotate(45deg);
  z-index: -1;
}
header .header-container .upper-container .colC ul .dropdown-menu ul {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.01) -2px 6px 2px 3px;
  border-radius: 5px;
  text-align: left;
  white-space: nowrap;
}
header .header-container .lower-container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 16px;
  padding: 5px;
}
@media (max-width: 1024px) {
  header .header-container .lower-container ul {
    font-size: 14px;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  header .header-container .lower-container ul {
    display: none;
  }
}
header .header-container .lower-container ul li .svg path {
  fill: darkgray;
}
header .header-container .lower-container ul li.hasDropdown.active .dropdown-menu {
  transition: 0.5s ease-in-out;
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale3d(1, 1, 1);
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-top: 1px solid #F8B132;
}
header .header-container .lower-container ul li.hasDropdown > a {
  transition: 0.5s ease;
  padding-bottom: 50px;
  position: relative;
}
header .header-container .lower-container ul li.hasDropdown > a:hover {
  color: #F8B132;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu {
  --triangle: 10px;
  position: absolute;
  top: calc(60% + var(--triangle));
  left: 50%;
  translate: -50% 5%;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.7s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  height: 460px;
  min-width: 220px;
  z-index: 100;
  padding: 40px;
  border-radius: 5px;
  display: block;
  overflow: hidden;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #1D1D1D 0%, #150D0D 100%);
  z-index: -1;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content {
  width: 100%;
  height: 100%;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-grid {
  display: flex;
  justify-content: left;
  width: 100%;
  max-width: 60%;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-grid .tab-item {
  background: #282727;
  border-radius: 5px;
  padding: 8px 20px 8px 20px;
  text-align: center;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-grid .tab-item img {
  padding-bottom: 10px;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-grid .tab-item p {
  color: rgba(255, 255, 255, 0.3607843137);
  font-size: 1em;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-grid .tab-item.active {
  background: #fff;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-grid .tab-item.active p {
  color: #150A0A;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-grid .tab-item.active .svg path {
  filter: invert(1);
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  transition: 2s ease;
  transform: translateY(10%);
  opacity: 0;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs.active {
  transform: translateY(0%);
  opacity: 1;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs h2 {
  font-family: Kugile;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 40px;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs .navbar-tab-nav-content {
  width: 100%;
  max-width: 48em;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs .navbar-tab-nav-content hr {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.168627451);
  margin: 20px 0;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs .navbar-tab-nav-content .box-grid {
  display: flex;
  justify-content: left;
  width: 100%;
  max-width: 60%;
  gap: 24px;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs .navbar-tab-nav-content .box-grid .box-grid-item {
  width: 134px;
  height: 143px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs .navbar-tab-nav-content .box-grid .box-grid-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs .navbar-tab-nav-content .box-grid .box-grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs .navbar-tab-nav-content .box-grid .box-grid-item p {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 14px;
  width: 100%;
  text-align: center;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs .right-iamge {
  width: 380px;
  max-width: 35%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 59.62%, rgba(0, 0, 0, 0.85) 100%);
  height: 370px;
  position: absolute;
  right: 0;
  top: -100px;
  border-radius: 5px;
  overflow: hidden;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs .right-iamge img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 59.62%, rgba(0, 0, 0, 0.85) 100%);
  position: relative;
  z-index: -1;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu .content .tab-nav-content .tabs .right-iamge p {
  font-family: Kugile;
  font-weight: 400;
  font-size: 21px;
  line-height: 24px;
  text-transform: uppercase;
  transform: rotate(-90deg);
  position: absolute;
  top: 220px;
  right: -40px;
}
header .header-container .lower-container ul li header.header-fixed .header-container .upper-container {
  padding: 4px var(--containerfluid);
}
@media (max-width: 1024px) {
  header .header-container .lower-container ul li header.header-fixed .header-container .upper-container {
    padding: 4px 15px;
  }
}
@media (max-width: 540px) {
  header .header-container .lower-container ul li header.header-fixed .header-container .upper-container {
    padding: 4px 12px;
  }
}
header .header-container .lower-container ul li header.header-fixed .header-container .upper-container .colA ul li a, header .header-container .lower-container ul li header.header-fixed .header-container .upper-container .colC ul li a {
  font-size: 12px;
  transition: 0.5s ease;
}
header .header-container .lower-container ul li header.header-fixed .header-container .lower-container ul li a {
  font-size: 14px;
  transition: 0.5s ease;
}
header .header-container .lower-container ul li header.header-fixed, header .header-container .lower-container ul li header.header-fit {
  transition: 0.5s ease;
  height: var(--headerfixed);
}
@media (max-width: 520px) {
  header .header-container .lower-container ul li header.header-fixed, header .header-container .lower-container ul li header.header-fit {
    height: 65px;
  }
}
header .header-container .lower-container ul li header.header-fixed::after, header .header-container .lower-container ul li header.header-fit::after {
  height: 100%;
}
header .header-container .lower-container ul li header.header-fit {
  transition: 0s;
}
header .header-container .lower-container ul li header.header-fit::after {
  transition: none;
}
header .header-container .lower-container ul li header.header-fit .header-container .colA .logo {
  transition: none !important;
}
header .header-container .lower-container ul li header.header-shadow {
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
}

.hero-heading1 h2 {
  text-align: center !important;
}

.hero-heading, .hero-heading1 {
  text-align: left;
}
.hero-heading h4, .hero-heading1 h4 {
  text-align: left;
}
@media (max-width: 1024px) {
  .hero-heading h4, .hero-heading1 h4 {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .hero-heading h4, .hero-heading1 h4 {
    text-align: center;
  }
}

.hero-heading h2 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 7rem;
  margin-top: 16px;
}
@media (max-width: 1440px) {
  .hero-heading h2 {
    font-size: 5rem;
    text-align: left;
  }
}
@media (max-width: 991px) {
  .hero-heading h2 {
    font-size: 5rem;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .hero-heading h2 {
    font-size: 3rem;
    margin-top: 30px;
  }
}
.hero-heading h4 {
  font-size: 2rem;
  margin-top: 16px;
}
@media (max-width: 991px) {
  .hero-heading h4 {
    font-size: 1.1rem;
  }
}

.hero-heading p {
  text-align: center;
}
@media (max-width: 991px) {
  .hero-heading p {
    font-size: 14px;
  }
}

.hero-content-left {
  text-align: left;
  justify-self: end;
}
@media (max-width: 1024px) {
  .hero-content-left {
    justify-self: end;
  }
}
@media (max-width: 991px) {
  .hero-content-left {
    justify-self: center;
    text-align: center;
  }
}

.conditional-elem {
  display: block;
}
@media (max-width: 768px) {
  .conditional-elem {
    display: none;
  }
}

@media (max-width: 991px) {
  .product-nav {
    display: none;
  }
}

.only-product {
  display: none;
}
@media (max-width: 768px) {
  .only-product {
    display: block;
  }
}

.br {
  display: block;
}
@media (max-width: 1024px) {
  .br {
    display: block;
  }
}
@media (max-width: 991px) {
  .br {
    display: none;
  }
}

.product-tab {
  padding-top: 60px;
}
@media (max-width: 540px) {
  .product-tab {
    padding-top: 0;
  }
}
.product-tab h2 {
  color: var(--white);
  text-align: center;
}
.product-tab ul {
  list-style: none;
  padding: 0;
  margin: 60px 0;
}
@media (max-width: 991px) {
  .product-tab ul {
    margin: 40px 0;
  }
}
@media (max-width: 540px) {
  .product-tab ul {
    margin: 30px 0;
  }
}
.product-tab ul li {
  color: var(--text) !important;
  margin-bottom: 8px;
  padding-bottom: 5px;
}
@media (max-width: 540px) {
  .product-tab ul li {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.product-tab {
  margin: 0 auto;
}

ul.flex {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  ul.flex {
    overflow-x: scroll;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 40px;
    padding-bottom: 12px;
  }
}

ul.flex li {
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 14px;
}
ul.flex li.active {
  font-weight: 500;
  border-bottom: 2px solid white;
  color: var(--white) !important;
}

.tab-content {
  display: none;
  padding: 10px;
  margin-top: 10px;
  padding: 10px 0 0;
}
.tab-content.active {
  display: block;
}

.tab-upper {
  position: relative;
}

.tab-video {
  height: 750px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 540px) {
  .tab-video {
    height: 386px;
  }
}
@media (max-width: 991px) {
  .tab-video {
    height: 480px;
  }
}
.tab-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tab-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(255, 255, 255, 0.1));
  z-index: 1;
  pointer-events: none;
}

.tab-vedio-content {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 111;
  max-width: 600px;
  width: 90%;
  text-align: center;
  color: var(--white);
}
.tab-vedio-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (max-width: 540px) {
  .tab-vedio-content h2 {
    font-size: 1.8rem;
  }
}
.tab-vedio-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.tab-cart {
  background-color: var(--gray);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tab-cart h6 {
  color: var(--white);
  text-align: center;
  padding: 20px 10px;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  text-align: center;
}
@media (max-width: 540px) {
  .tab-cart h6 {
    font-size: 13px;
  }
}
.tab-cart img {
  width: 100%;
  transition: transform 0.4s ease;
  display: block;
}
.tab-cart:hover img {
  transform: scale(1.03);
}

.tab-lower {
  position: relative;
}

.product-next, .feature-product-next, .gallery-next, .benefits-next, .benefits-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  right: -1%;
  bottom: 47%;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.feature-product-next, .gallery-next {
  right: -1%;
}

.all {
  margin-top: 56px;
  text-align: center;
}
@media (max-width: 540px) {
  .all {
    margin-top: 26px;
  }
}

.product-options,
.about-brand,
.benifits,
.about-c,
.border-bottom {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 540px) {
  .product-options,
  .about-brand,
  .benifits,
  .about-c,
  .border-bottom {
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .product-options,
  .about-brand,
  .benifits,
  .about-c,
  .border-bottom {
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .product-options,
  .about-brand,
  .benifits,
  .about-c,
  .border-bottom {
    padding-bottom: 95px;
  }
}
@media (max-width: 768px) {
  .product-options,
  .about-brand,
  .benifits,
  .about-c,
  .border-bottom {
    padding-bottom: 78px;
  }
}
.product-options::after,
.about-brand::after,
.benifits::after,
.about-c::after,
.border-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #000000 0.96%, #FFFFFF 57.69%, #000000 100%);
}

.about-brand {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .about-brand {
    padding-bottom: 67px;
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .about-brand {
    margin-top: 40px;
  }
}
.about-brand h1 {
  text-align: center;
  font-size: 64px;
}
@media (max-width: 991px) {
  .about-brand h1 {
    font-size: 50px;
    margin-top: 12px;
  }
}
@media (max-width: 540px) {
  .about-brand h1 {
    font-size: 35px;
    margin-top: 12px;
  }
}
.about-brand h4 {
  padding-bottom: 40px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
@media (max-width: 991px) {
  .about-brand h4 {
    padding-bottom: 30px;
  }
}
@media (max-width: 540px) {
  .about-brand h4 {
    padding-bottom: 16px;
  }
}

.about-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 142px;
  align-items: center;
  width: 84%;
  margin: 0 auto;
  padding-top: 80px;
}
@media (max-width: 991px) {
  .about-content {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 65px;
  }
}
@media (max-width: 540px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 65px;
  }
}

.text-container {
  text-align: left;
}
@media (max-width: 768px) {
  .text-container {
    text-align: center;
  }
}
.text-container p:nth-child(2) {
  margin: 35px 0;
}
@media (max-width: 540px) {
  .text-container p:nth-child(2) {
    margin: 22px 0;
  }
}
.text-container h4 {
  font-size: 4rem;
  margin-top: 60px;
  font-weight: 700;
  letter-spacing: 6px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 12px;
}
@media (max-width: 768px) {
  .text-container h4 {
    justify-content: center;
    margin-top: 26px;
  }
}
.text-container h4 span {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: normal;
  padding-bottom: 6px;
  align-self: center;
}
@media (max-width: 768px) {
  .text-container h4 span {
    font-size: 30px;
  }
}

.hero-lower {
  margin-bottom: 60px !important;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (max-width: 991px) {
  .hero-lower {
    grid-template-columns: repeat(1, 1fr);
  }
}

.choose-us {
  padding: 30px 0 90px 0;
}
@media (max-width: 991px) {
  .choose-us {
    padding: 20px 0 50px 0;
  }
}

.choose-heading {
  padding: 60px 0;
  text-align: center;
  width: 40%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .choose-heading {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .choose-heading {
    width: 100%;
    padding: 33px 20px;
  }
}
@media (max-width: 540px) {
  .choose-heading {
    width: 100%;
    padding: 33px 0;
  }
}
.choose-heading h3 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3rem;
}
@media (max-width: 540px) {
  .choose-heading h3 {
    font-size: 1.8rem;
  }
}
.choose-heading p {
  margin: 30px 0;
}

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

.choose-cart {
  padding: 20px 90px;
  text-align: center;
}
@media (max-width: 1440px) {
  .choose-cart {
    padding: 20px 16px;
  }
}
@media (max-width: 1024px) {
  .choose-cart {
    padding: 20px 16px;
  }
}
@media (max-width: 768px) {
  .choose-cart {
    margin: 0 0px;
  }
}
@media (max-width: 991px) {
  .choose-cart {
    padding: 20px 16px;
  }
}
@media (max-width: 540px) {
  .choose-cart {
    padding: 20px 16px;
    margin: 0;
  }
}
.choose-cart h4 {
  margin: 30px 0;
}
@media (max-width: 540px) {
  .choose-cart h4 {
    margin: 20px 0 12px;
  }
}
.choose-cart p a {
  display: inline-block;
}
.choose-cart p a:last-child {
  margin-left: 10px;
}
@media (max-width: 540px) {
  .choose-cart p a:last-child {
    margin-top: 8px;
  }
}

.adress .adress-cart:nth-child(2) {
  border-left: 2px solid var(--gray);
  border-right: 2px solid var(--gray);
}
@media (max-width: 768px) {
  .adress .adress-cart:nth-child(2) {
    border-top: 2px solid var(--gray);
    border-bottom: 2px solid var(--gray);
    border-left: none;
    border-right: none;
  }
}

.product-tab .menu-list {
  z-index: 99999 !important;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 0;
  margin-top: 24px;
  color: var(--text) !important;
  padding-bottom: 12px;
}
@media (max-width: 991px) {
  .product-tab .menu-list {
    gap: 0;
  }
}
@media (max-width: 540px) {
  .product-tab .menu-list {
    margin-top: 8px;
  }
}
.product-tab .dropdown-menu {
  width: 330px;
  margin-bottom: 50px;
  position: relative;
}
@media (max-width: 540px) {
  .product-tab .dropdown-menu {
    margin-bottom: 18px;
    padding: 0 20px;
  }
}
.product-tab .dropdown-menu .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #fff;
  padding: 10px 14px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.product-tab .dropdown-menu .dropdown-toggle .dropdown-selected {
  font-size: 16px;
}
.product-tab .dropdown-menu .dropdown-toggle svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.product-tab .dropdown-menu .dropdown-item {
  position: absolute;
  top: 100%;
  left: 0;
  width: 330px;
  padding: 10px;
  margin-top: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 0;
  visibility: hidden;
  pointer-events: none;
  transition: max-height 0.4s ease;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.product-tab .dropdown-menu .dropdown-item::-webkit-scrollbar {
  width: 8px;
}
.product-tab .dropdown-menu .dropdown-item::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}
.product-tab .dropdown-menu .dropdown-item::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border-radius: 8px;
  border: 2px solid #f1f1f1;
}
.product-tab .dropdown-menu .dropdown-item::-webkit-scrollbar-thumb:hover {
  background-color: #a8a8a8;
}
.product-tab .dropdown-menu .dropdown-item .dropdown-option {
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
}
.product-tab .dropdown-menu .dropdown-item .dropdown-option .dropdown-label {
  font-size: 16px;
  word-wrap: break-word;
  color: var(--gray);
}
.product-tab .dropdown-menu.active .dropdown-toggle svg {
  transform: rotate(0deg);
}
.product-tab .dropdown-menu.active .dropdown-item {
  max-height: 300px;
  visibility: visible;
  pointer-events: auto;
}
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}

.triangle-nav {
  position: relative;
  transition: 0.5s ease-in-out;
}
.triangle-nav::before {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(100% - var(--triangle) / 2);
  left: 50%;
  translate: -50% 100%;
  width: var(--triangle);
  height: var(--triangle);
  background: #F8B132;
  transform: rotate(45deg);
  z-index: 1;
  top: 35px;
  transition: 0.5s ease-in-out;
}

.triangle-color {
  color: #F8B132;
}

.center1_1 {
  z-index: 999 !important;
}/*# sourceMappingURL=header.css.map */