*,
*::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);
  }
}

.header404 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 540px) {
  .header404 {
    width: 90%;
  }
}

.header404-content {
  text-align: center;
}
.header404-content h2 {
  text-transform: uppercase;
  font-size: 4.5rem;
}
@media (max-width: 1024px) {
  .header404-content h2 {
    font-size: 3.8rem;
  }
}
@media (max-width: 540px) {
  .header404-content h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}
.header404-content p {
  font-size: 1.1rem;
  color: var(--white);
  font-size: 14px;
}
.header404-content a {
  text-transform: uppercase;
  display: inline-block;
  margin-top: 40px;
}/*# sourceMappingURL=not-found.css.map */