/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@media (max-width: 1024px) {
  :root {
    --h1: var(--h1-responsive);
    --h2: var(--h2-responsive);
    --h3: var(--h3-responsive);
    --h4: var(--h4-responsive);
  }
}

:root {
  --h1: 56;
  --h2: 42;
  --h3: 38;
  --h4: 32;
  --h5: 24;
  --h6: 20;
  --p: 16px;
  /* --primary: #592D2E; */
  --primary: #C60C30;
  /* --secondary: #F2994A; */
  --tertiary-gradient: linear-gradient(135deg, #F8FAFC 0%,#CBD5E1 50%,#94A3B8 100%);
  --secondary: #000;
  --black: #000;
  --white: #fff;
  --text: #333333;
  --gray: #4F4F4F;
  --font: "Roboto", sans-serif;
  --heading-font: "Roboto", sans-serif;
  --sidebar-width: 300px;
  --transition: 300ms;
  --overlay: rgba(0, 0, 0, 0.45);
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}


body {
  padding: 0px;
  margin: 0px;
  font-family: var(--font);
}

input:focus {
  outline: 0 !important;
  border: 0 !important;
}
textarea:focus {
  outline: 0 !important;
  border: 0 !important;
}

ul,
ol,
li {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.img-fluid {
  width: 100%;
  height: 100%;
}

.text-center {
  text-align: center;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL'0,
    'wght'400,
    'GRAD'0,
    'opsz'24
}

.cursor-pointer {
  cursor: pointer;
}

.gap-0 {
  gap: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.body-font{
  font-family: var(--font);
  font-weight: 700;
}

.italic{
  font-style: italic;
}
/* Colors */
.primary-color {
  color: var(--blue-color);
}

.secondry-color {
  color: var(--secondary);
}

.text-white {
  color: var(--white) !important;
}

.black-color {
  color: var(--black);
}

.bg-light {
  background-color: #f3f1f2;
}

.bg-gradient-light {
  background: linear-gradient(0deg, rgba(243, 241, 242, 1) 53%, rgba(0, 0, 0, 0) 96%);
  ;
}

.bg-cover {
  background-size: cover;
}

.bg-noRepeat {
  background-repeat: no-repeat;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.inr-bnr-heading {
  font-weight: 900;
  font-family: var(--font);
  line-height: 1.4em;
  font-style: italic;
  text-transform: capitalize;
}

h1 {
  font-size: calc(36px + (var(--h1) - 36) * (100vw - 320px) / (1920 - 320));
}

.inr-bnr-heading {
  font-size: calc(36px + (64 - 36) * (100vw - 320px) / (1920 - 320));
  line-height: 1.2em;
}

h2 {
  font-size: calc(28px + (var(--h2) - 28) * (100vw - 320px) / (1920 - 320));
}

h3 {
  font-size: calc(28px + (var(--h3) - 28) * (100vw - 320px) / (1920 - 320));
}

h4 {
  font-size: calc(20px + (var(--h4) - 20) * (100vw - 320px) / (1920 - 320));
}

h5 {
  font-size: calc(18px + (var(--h5) - 18) * (100vw - 320px) / (1920 - 320));
}

h6 {
  font-size: calc(16px + (var(--h6) - 16) * (100vw - 320px) / (1920 - 320));
}

.small-heading {
  margin-bottom: 10px;
}

.heading {
  font-size: calc(28px + (var(--h2) - 28) * (100vw - 320px) / (1920 - 320));
  color: var(--black);
  font-family: 'Roboto Slab', serif;

}

.description {
  font-size: calc(16px + (var(--h6) - 16) * (100vw - 320px) / (1920 - 320));
  margin-top: 12px;
}

.fz-24 {
  font-size: calc(18px + (24 - 18) * (100vw - 320px) / (1920 - 320));
  margin-top: 12px;
}


.fz-18 {
  font-size: calc(16px + (18 - 16) * (100vw - 320px) / (1920 - 320));
  margin-top: 12px;
}

strong {
  font-weight: bold;
}

p {
  font-size: var(--p);
  line-height: 160%;
  font-weight: 500;
  color: var(--text);
  font-family: var(--font);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out 0.1s;
}

a:hover{
  color: var(--primary);
}

.btn-group {
  display: flex;
  justify-content: center;
}

/* Bg */
.bg {
  position: relative;
}

.bg-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.bg-effect.overlay:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--black);
  opacity: 0.9;
}

.bg-effect.overlay.light:after {
  background-color: var(--white);
}

.dark-theme .bg-effect.overlay.light:after {
  background-color: var(--black);
  opacity: 80%;
}

section.dark * {
  color: var(--white);
}

.dark-theme .theme-heading h2,
.dark-theme .theme-heading p {
  color: var(--white);
}

/* Container */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1150px;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 1170px;
  }
}


.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 8.333%;
  max-width: 8.333%;
}

.col-2 {
  flex: 0 0 16.666%;
  max-width: 16.666%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.col-5 {
  flex: 0 0 41.666%;
  max-width: 41.666%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333%;
  max-width: 58.333%;
}

.col-8 {
  flex: 0 0 66.666%;
  max-width: 66.666%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333%;
  max-width: 83.333%;
}

.col-11 {
  flex: 0 0 91.666%;
  max-width: 91.666%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Section spacing */
.sec-padding {
  padding: calc(60px + (120 - 60) * (100vw - 320px) / (1920 - 320)) 0;
}

.sec-padding-100 {
  padding: calc(60px + (100 - 60) * (100vw - 320px) / (1920 - 320)) 0;
}

.sec-padding-top {
  padding-top: calc(60px + (120 - 60) * (100vw - 320px) / (1920 - 320));
}

.sec-padding-bottom {
  padding-bottom: calc(60px + (120 - 60) * (100vw - 320px) / (1920 - 320));
}

.sec-padding-small {
  padding: calc(60px + (80 - 60) * (100vw - 320px) / (1920 - 320)) 0;
}

.sec-padding-top-small {
  padding-top: calc(60px + (80 - 60) * (100vw - 320px) / (1920 - 320));
}

.sec-padding-bottom-small {
  padding-bottom: calc(60px + (80 - 60) * (100vw - 320px) / (1920 - 320));
}

.sec-padding-large {
  padding: calc(60px + (160 - 60) * (100vw - 320px) / (1920 - 320)) 0;
}

.sec-padding-top-large {
  padding-top: calc(60px + (160 - 60) * (100vw - 320px) / (1920 - 320));
}

.sec-padding-bottom-large {
  padding-bottom: calc(60px + (160 - 60) * (100vw - 320px) / (1920 - 320));
}


/* Buttons Design */
.primary-btn,
.stroke-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 5px 5px 5px 26px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: 40px;
  border: 2px solid var(--primary);
  font-size: 16px;
  transition: all 0.3s ease-in-out 0.1s;
}

.primary-btn span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50px;
  color: var(--primary);
  box-shadow: 0 0 10px rgba(0 0 0 / 15%);
}

.primary-btn.black {
  background-color: var(--black);
  border-color: var(--black);
}

.primary-btn.black span {
  color: var(--black);
}

.stroke-btn.transparent {
  background-color: transparent;
  color: var(--white);
}

.stroke-btn.transparent.primary-color {
  color: var(--blue-color);
}

.primary-btn:hover,
.stroke-btn {
  background-color: var(--white);
  color: var(--primary);
}

.primary-btn:hover span,
.stroke-btn:hover span{
  color: var(--white);
  background-color: var(--primary);
}

.primary-btn.black:hover,
.stroke-btn.black:hover{
  color: var(--black);
}

.primary-btn.black:hover span,
.stroke-btn.black:hover span{
  color: var(--white);
  background-color: var(--black);
}

.stroke-btn:hover,
.stroke-btn.transparent:hover {
  background: var(--blue-color);
  color: var(--white);
}

.stroke-btn.transparent svg path {
  fill: var(--white);
}

.stroke-btn.transparent.primary-color svg path {
  fill: var(--blue-color);
}

.stroke-btn.transparent.primary-color:hover svg path {
  fill: var(--white);
}

.primary-btn svg {
  transition: all 0.3s ease-in-out 0.1s;
}

.primary-btn:hover svg path {
  fill: var(--blue-color)
}

.stroke-btn:hover svg path {
  fill: var(--white);
}

.stroke-btn svg path {
  fill: var(--blue-color)
}

/* Theme Heading */
.theme-heading h2 {
  margin-bottom: 10px;
}

.theme-heading h2 .primary {
  color: var(--primary);
}

.theme-heading h6 {
  margin-bottom: 10px;
}

.description-wpr {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
  margin-top: 20px;
}

/* End Reset CSS */
/* ************* */

/* Header */
.main-header {
    position: fixed;
    top: var(--wp-admin--admin-bar--height, 0px);
    left: 50%;
    z-index: 99999;
    width: 100%;
    transition: all 0.5s ease-in-out 0.1s;
    transform: translateX(-50%);
    border-radius:  20px;
}

.main-header.scrolled {
    top: 20px;
    background: #00000063;
    backdrop-filter: blur(8px);
    max-width: 95%;
}

.header-inr {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 40px;
     padding: 10px 28px;
}

.main-header.scrolled  .header-inr {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 40px;
  padding: 24px 28px;
  position: relative;
}

.header-inr .logo img {
    max-width: 100px;
    width: 100%;
}

.main-header.scrolled .header-inr .logo img {
  max-width: 100px;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-14% ,-50%);
}

.menu {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu ul li a {
    font-size: 18px;
    color: var(--white);
    text-transform: uppercase;
    gap: 20px;
    position: relative;
    transition: all 0.3s ease-in-out 0.1s;
}

.menu ul li a:after{
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  width: 0px;
  height: 3px;
  border-radius: 5px;
  background-color: var(--white);
  transition: all 0.3s ease-in-out 0.1s;
}

.menu ul li a:hover:after{
  width: 36px;
}

.header-icon-list {
    display: flex;
    gap: 20px;
}

.header-icon-list li img {
    max-width: 26px;
    height: 26px;
    filter: invert(1);
}

.toggle-btn, .header-icon-list{
  display: none;
}



.sidebar-wrap {
  position: fixed;
  inset: 0;
  z-index: 999999;
  pointer-events: none;
}

.overlay-sidebar {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  opacity: 0;
  transition: opacity var(--transition) ease;
  will-change: opacity;
}

.sidebar-wrap.open .overlay-sidebar {
  opacity: 1;
}

.sidebar {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: var(--sidebar-width);
  max-width: 100%;
  background: var(--black);
  box-shadow: -12px 0 30px rgba(10, 10, 25, 0.15);
  transform: translateX(110%);
  transition: transform var(--transition) cubic-bezier(.2, .9, .3, 1);
  will-change: transform;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-height: 100vh;
}

.sidebar:focus-visible{
  border: 0;
  outline: 0;
}

.sidebar > a {
    margin-top: 30px;
}

.sidebar .main-menu li a {
    color: var(--white);
    font-family: var(--font);
    font-weight: 900;
    font-style: italic;
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
    padding-left: 15px;
}

/* .sidebar a img {
    max-width: 200px;
} */

.sidebar a img {
    max-width: 80px;
    margin-bottom: 20px;
}

.sidebar-wrap.open {
  pointer-events: auto;
}

.sidebar-wrap.open .overlay {
  opacity: 1;
}

.sidebar-wrap.open .sidebar {
  transform: translateX(0);
}

.close-btn {
  align-self: flex-end;
  background: var(--white);
  font-size: 18px;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0 0 0 / 20%);
  border-radius: 50%;
  border: 1px solid var(--primary);
  transition: all 0.3s ease-in-out 0.1s;
}

.close-btn:hover {
  transform: rotate(90deg);
}

/* Banner Section */
.banner-sec {
  position: relative;
  padding: 150px 0 80px;
  z-index: 0;
}

.banner-sec:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

.banner-sec .container {
  position: relative;
  z-index: 2;
}

.banner-sec .bg-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-ctnt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.banner-left {
  max-width: 620px;
  width: 100%;
}

.banner-right {
  max-width: 350px;
  width: 100%;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 30px;
}

.badge-hdg {
  font-size: 14px;
  font-family: var(--font);
  padding: 10px 18px;
  font-weight: 700;
  font-style: italic;
  background-color: var(--primary);
  display: inline-flex;
  border-radius: 30px;
  color: var(--white);
  margin-bottom: 12px;
}

/* .banner-ctnt h1,
.banner-ctnt p {
  font-family: var(--font);
    font-weight: 900;
    font-style: italic;
  color: var(--white);
} */

.banner-ctnt h1 {
    font-family: 'Roboto Slab', serif;
    font-weight: 900; /* Black */
    font-style: italic;
    color: var(--white);
}

.banner-ctnt p {
 font-family: var(--font);
    font-weight: 900;
    font-style: italic;
  color: var(--white);
}

.banner-right ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.check-list li {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-list li span {
    width: 26px;
    height: 26px;
    min-width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    font-size: 16px;
    border-radius: 50%;
}

.banner-sec .check-list li {
    font-weight: 600;
    color: var(--white);
    align-items: start;
}

.banner-sec .check-list li span {
    min-width: 26px;
}

/* Information Section */
.info-img-grp {
  padding-right: 60px;
  position: relative;
}

.info-img-one {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid var(--primary);
}

.info-img-two {
  max-width: 70%;
  height: 200px;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
  border: 3px solid var(--primary);
  position: absolute;
  left: 45%;
  transform: translateX(-50%);
  bottom: -70px;
}

/* Inspiration Section */
.inspiration-row {
  display: flex;
  gap: 50px;
}

.inspiration-left {
    max-width: 370px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.inspiration-left p {
  margin-bottom: 24px;
  margin-top: 20px;
}

.inspiration-cards {
  display: flex;
  gap: 30px;
  width: 100%;
  justify-content: flex-end;
}

.inspiration-card {
  max-width: 314px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.inspiration-card-img img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid var(--primary);
}

.inspiration-card h6 {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Product Grid */
.productGrid-sec  .theme-heading {
    max-width: 820px;
}

.theme-heading.max-width {
  max-width: 800px;
  margin: 0 auto 50px;
}

.product-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.product-card {
  max-width: calc(100% / 3 - 14px);
  width: 100%;
  border: 1px solid #b0b0b03b;
  border-radius: 20px;
}

.product-content {
  padding: 32px 12px 24px;
}

.product-card-hdr h6 {
  font-size: 16px;
}

.product-card-hdr {
  display: flex;
  align-items: start;
  gap: 30px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
}

.product-image {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 50px 20px 20px;
  min-height: 310px;
  align-items: center;
}

.product-image img {
  max-width: 230px;
  max-height: 240px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bestseller-badge {
  position: absolute;
  font-size: 10px;
  padding: 8px 13px;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px 0 0 20px;
  right: 0;
  top: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

.price {
  font-size: 16px;
  margin: 16px 0px;
}

.color-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.color-box {
  width: 24px;
  height: 24px;
  border: 1px solid #0000002b;
  border-radius: 50%;
}

.add-btn-grp {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.add-button {
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 19px 8px 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--primary);
    background: var(--primary);
}

.add-button:hover {
  color: var(--primary);
  background-color: transparent !important;
}

/* Blog */
.blog-row {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 50px;
}

.blog-col {
  max-width: calc(100% / 3 - 10px);
  width: 100%;
}

.blog-card {
  position: relative;
  overflow: hidden;
}

.blog-image {
  height: 440px;
  width: 100%;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.blog-content {
  position: absolute;
  padding: 40px 30px;
  bottom: 0;
  color: var(--white);
}

.blog-icon-list {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.blog-icon-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  line-height: 1;
  opacity: 0.8;
}

.blog-icon-list li span {
  font-size: 18px;
  line-height: 1;
}

.badge {
  font-size: 10px;
  background-color: var(--primary);
  color: var(--white);
  display: inline-flex;
  padding: 6px 15px;
  border-radius: 50px;
  position: absolute;
  right: 15px;
  top: 15px;
}


.blog-card-small {
  display: flex;
  gap: 16px;
  align-items: center;
}

.blog-small-image {
  width: 100px;
  height: 100px;
  min-width: 100px;
}

.blog-small-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.blog-small-cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

.blog-small-content p {
  font-family: var(--font);
    font-weight: 900;
    font-style: italic;
  font-size: 14px;
}

.blog-small-content .blog-icon-list {
  opacity: 40%;
}

/* Delivery Keys */
.delivery-cards {
  display: flex;
  flex-wrap: wrap;
}

.delivery-card {
  max-width: calc(100% / 4);
  width: 100%;
  text-align: center;
  padding: 15px;
}

.delivery-card h6 {
  font-size: 16px;
  margin: 10px 0;
}

.delivery-card p {
  font-size: 14px;
  color: var(--text);
}

/* Testimonial */
.testimonial-sec .bg-effect {
  background-color: #f4f4f4;
  clip-path: polygon(0 3%, 100% 0, 100% 98%, 0% 100%);
}

.testimonial-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.testimonial-card {
  max-width: calc(100% / 2 - 10px);
  display: none;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0 0 0 / 13%);
}

.testimonial-card.visible {
  display: flex; 
}

.testimonial-image {
  flex: 0 0 165px;
  max-width: 165px;
  width: 100%;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.testimonial-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.testimonial-content p {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 15px;
}


/* Experience Section */
.experience-row {
  display: flex;
  gap: 35px;
}

.experience-left {
  max-width: 430px;
  flex: 0 0 430px;
}

.experience-left video {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  border: 3px solid var(--primary);
}

.experience-right p {
  margin-bottom: 15px;
}

.number-list {
  display: flex;
  margin-bottom: 30px;
  margin-top: 30px;
}

.number-list li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: calc(100% / 3);
}

.number-list li .number {
  font-size: 32px;
  font-weight: 600;
  font-style: italic;
}

.number-list li h6 {
  font-size: 16px;
}


/* Video Section */
.video-section {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  height: 95vh;
  max-height: 767px;
}

.video-section video {
  width: 100%;
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  background-color: #000;
  object-position: top;
  transition: opacity 0.5s ease;
}

.poster-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.poster-wrapper:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: linear-gradient(to right, #592d2e, rgba(0, 0, 0, 0));
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.8;
}

.poster-wrapper img {
  width: 100%;
  display: block;
  height: 100%;
  transition: opacity 0.5s ease;
  object-fit: cover;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 500px;
  z-index: 9;
  transition: opacity 0.5s ease;
}

.overlay-content h2 {
  margin-bottom: 40px;
}

.overlay-content .btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.play-btn {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay-content.hidden+.play-btn {
  display: none;
}

.play-btn::before,
.play-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 100%;
  border: 2px solid var(--white);
  opacity: 0.4;
  top: 0;
  left: 0;
  animation: ripple 2s infinite;
}

.play-btn::after {
  animation-delay: 1s;
}

.play-btn svg {
  width: 55px;
  height: 55px;
  fill: #000;
  position: relative;
  z-index: 2;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.hidden {
  opacity: 0;
  pointer-events: none;
}


/* Video Slider Section */
.video-slider-sec {
  overflow-x: hidden;
}

.video-slider-sec .bg-effect {
  background-color: var(--black);
  clip-path: polygon(50% 0%, 100% 14%, 100% 92%, 0 100%, 0 14%);
}

.video-slider-sec .theme-heading {
    max-width: 100%;
}

.video-slider-sec .swiper {
    padding-left: 15px;
}

.video-slider-sec .swiper-wrapper {
    height: 400px !important;
    margin-bottom: 50px;
    max-width: 100%;
}

.video-slider-sec .swiper-material-wrapper video {
    width: 100%;
    object-fit: cover;
}


/* Footer */
.footer-sec {
    background-color: var(--black);
    padding-top: 60px;
}

.ftr-logo img {
    /* max-width: 350px; */
    max-width: 80px;
    margin-bottom: 20px;
    width: 100%;
}

.copyright {
    background-color: #444444;
    color: var(--white);
    font-size: 14px;
    padding: 11px 20px;
    text-align: center;
}

.ftr-row {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: space-between;
}

.ftr-col-1,
.ftr-col-4  {
    max-width: 42%;
    width: 100%;
}

.ftr-col-1 {
    padding-right: 30px;
}

.ftr-col-1 p {
    font-size: 14px;
    margin: 15px 0;
}

.footer-form-wrap {
  max-width: 520px;
  width: 100%;
}

.footer-form-wrap .gform_wrapper {
  margin: 0;
}

.footer-form-wrap .gform_heading,
.footer-form-wrap .gform_validation_errors,
.footer-form-wrap .validation_message,
.footer-form-wrap .gform_required_legend {
  display: none;
}

.footer-form-wrap .gform-body,
.footer-form-wrap .gform_fields {
  margin: 0;
}

.footer-form-wrap .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px !important;
}

.footer-form-wrap .gfield {
  margin: 0;
}

.footer-form-wrap .gfield_label {
  color: var(--white);
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-form-wrap input:not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.footer-form-wrap textarea.small,
.footer-form-wrap select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
}

/* .gform-theme--foundation .gfield  */
.footer-form-wrap input::placeholder,
.footer-form-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-form-wrap .gform_footer,
.footer-form-wrap .gform-page-footer {
  margin-top: 16px;
  padding: 0;
}

.footer-form-wrap .gform_button,
.footer-form-wrap input[type="submit"] {
  min-width: 180px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.gform-theme--foundation .gform_fields {
    gap: 14px;
}

.ftr-col-2, .ftr-col-3 {
    max-width: 18%;
    width: 100%;
    padding-left: 20px;
}

.ftr-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ftr-links li a {
    color: var(--white);
    font-size: 16px;
}

.ftr-links li a:hover{
  color: var(--primary);
}

.ftr-row > * {
    color: var(--white);
}

.ftr-row h6 {
    margin-bottom: 16px;
}

.ftr-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ftr-details li a {
    display: flex;
    gap: 12px;
}

.ftr-details li a:hover {
  color: var(--primary) !important;
}

.gform-footer.gform_footer.top_label {
    margin-top: 16px;
}

.gform-footer.gform_footer.top_label input[type="submit"] {
    width: 100% !important;
    background-color: var(--primary) !important;
    opacity: 60% !important;
    border-radius: 12px !important;
    height: 46px !important;
}

.gform-footer.gform_footer.top_label input[type="submit"]:hover {
    opacity: 100% !important;
}

.subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 5px 5px 5px 16px;
  background: var(--white);
  color: var(--white);
  font-weight: 600;
  border-radius: 40px;
  border: 2px solid var(--black);
  font-size: 16px;
  transition: all 0.3s ease-in-out 0.1s;
}

.subscribe-btn input{
  background-color: var(--white);
  border: 0;
  outline: 0;
  font-size: 14px;
  font-family: var(--font);
}

.subscribe-btn span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 50px;
  color: var(--white);
}

/* Animation */
[data-animate] {
    visibility: hidden;
}

.videoSwiper .swiper-button-next, .videoSwiper .swiper-button-prev {
    color: #fff;
}

.videoSwiper .swiper-button-next:after, .videoSwiper .swiper-button-prev:after {
    font-size: 30px;
}

/* Early Access Button Css */

.early-access-btn{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 99999;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 16px 26px;

    border-radius: 999px;
    text-decoration: none;

    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;

    background: rgba(10,10,10,.75);
    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.08);

    overflow: hidden;
    isolation: isolate;

    transition:
        transform .35s cubic-bezier(.22,1,.36,1),
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;

    animation: float 3s ease-in-out infinite;
}

.early-access-btn::before{
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.12) 0%,
            transparent 45%
        );

    pointer-events: none;
}

.early-access-btn::after{
    content: "";

    position: absolute;
    top: 0;
    left: -200%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );

    transform: skewX(-25deg);

    animation: shine 7s linear infinite;
}

.early-access-btn .material-symbols-outlined,
.early-access-btn .btn-text{
    position: relative;
    z-index: 2;
}

.early-access-btn .material-symbols-outlined{
    font-size: 22px;

    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;
}

.early-access-btn:hover{
    color: #fff;

    transform: translateY(-4px);

    border-color: rgba(255,43,43,.45);

    background: rgba(15,15,15,.88);

    box-shadow:
        0 0 0 1px rgba(255,43,43,.12),
        0 12px 40px rgba(255,43,43,.18),
        0 24px 50px rgba(0,0,0,.22);
}

.early-access-btn:hover .material-symbols-outlined{
    transform: translateX(2px);
    transition: transform .35s ease;
}

.early-access-btn:active{
    transform: translateY(-1px);
}

@keyframes float{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-5px);
    }
}

@keyframes shine{
    0%{
        left:-200%;
    }
    30%,100%{
        left:200%;
    }
}

@media (max-width:767px){

    .early-access-btn{
        width:58px;
        height:58px;

        padding:0;

        justify-content:center;

        border-radius:50%;

        right:15px;
        bottom:15px;
    }

    .early-access-btn .btn-text{
        display:none;
    }

    .early-access-btn .material-symbols-outlined{
        font-size:26px;
    }
}

@media (prefers-reduced-motion: reduce){

    .early-access-btn,
    .early-access-btn::after{
        animation:none;
    }

    .early-access-btn{
        transition:none;
    }
}