/*----------------------------------------*/
/* default CSS
/*----------------------------------------*/

@font-face {
  font-family: 'Khaleefa';
  src: url('../fonts/Khaleefa.woff') format('woff'); /* Path to your font file */
}

@font-face {
  font-family: 'Bainsley';
  src: url('../fonts/Bainsley.woff') format('woff'); /* Path to your font file */
}
@font-face {
  font-family: 'Bainsley_bold';
  src: url('../fonts/Bainsley_Bold.woff') format('woff'); /* Path to your font file */
}
@font-face {
  font-family: 'URW Gothic';
  src: url('../fonts/Gothic_Book.ttf') format('truetype'),
    url('../fonts/Gothic_Book.otf') format('opentype');
}
@font-face {
  font-family: 'URW Gothic Oblique';
  src: url('../fonts/Gothic_DemiOblique.otf') format('truetype'),
    url('../fonts/Gothic_DemiOblique.ttf') format('opentype');
}
@font-face {
  font-family: 'URW Gothic Demi';
  src: url('../fonts/Gothic_Demi.otf') format('truetype'),
    url('../fonts/Gothic_Demi.ttf') format('opentype');
}
@font-face {
  font-family: 'URW Gothic Demi Oblique';
  src: url('../fonts/Gothic_DemiOblique.otf') format('truetype'),
    url('../fonts/Gothic_DemiOblique.ttf') format('opentype');
}

html,
body {
  height: 100%;
  font-family: Bainsley;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  background: #000;
}

html {
  overflow: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111111;
  font-weight: 500;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 15px;
  color: #585858;
  line-height: 1.6;
  font-weight: 500;
}

img {
  max-width: 100%;
}

#section1 .scroll-text {
  font-size: 12px;
  font-family: Bainsley;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

::-webkit-input-placeholder {
  color: #fff;
  text-transform: uppercase;
}

:-ms-input-placeholder {
  color: #fff;
  text-transform: uppercase;
}

::-ms-input-placeholder {
  color: #fff;
  text-transform: uppercase;
}

::placeholder {
  color: #fff;
  text-transform: uppercase;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title h2 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 105px;
  padding-bottom: 105px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

/*---------------------
  Commom elements
-----------------------*/

/* buttons */

.site-btn {
  color: #ffd99f;
  background: url(../img/btn.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  padding: 1rem 70px;
  position: relative;
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 6px;
  font-family: 'Bainsley_bold';
  border: none;
}

.site-btn img {
  position: relative;
  left: 13px;
  width: auto !important;
  display: inline-block !important;
}

/**.site-btn:after,
.site-btn:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 9px;
	top: 10px;
	background: #b01ba5;
	z-index: -2;
	-webkit-box-shadow: 0 0 9px 3px rgba(226, 30, 228, 0.24);
	box-shadow: 0 0 9px 3px rgba(226, 30, 228, 0.24);
}
**/
.site-btn:before {
  left: 0;
  top: 0;
  background: #fff;
  z-index: -1;
}

.site-btn:hover {
  border-color: rgb(255 225 61);
  color: #e1bc82 !important;
  filter: brightness(1.2);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  cursor: pointer;
}

.input-error {
  border-bottom: 1px solid rgba(200, 48, 29, 0.5);
  color: #c00;
}
/* Preloder */

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #000;
}

.page-info h2 {
  color: #e1b470;
  font-size: 28px;
  font-family: khaleefa;
  text-align: center;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

/*** section 3 ***/

/*** section 3 ***/
/*** slider bullet ***/
.sociales {
  text-align: center;
  margin-bottom: 20px;
}

#timeline {
  width: 100%;
  display: flex;
  height: 52vh;
  margin-top: 40px;
  /**margin: 40px auto;**/
  position: relative;
  /* background: url('../img/dot.gif') 3px top repeat-y; */
  /**  overflow: hidden;**/
}
#dates {
  display: none;
  width: 200px;
  margin-top: 100px !important;
  height: -webkit-fill-available !important;
  overflow: hidden;
  float: left;
}

#dates li {
  list-style: none;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 24px;
  padding-left: 10px;
  background: url('http://www.csslab.cl/ejemplos/timelinr/latest/images/biggerdot.png')
    left center no-repeat;
}
#dates a {
  line-height: 38px;
  padding-bottom: 10px;
  background: url(../img/bullet.webp) no-repeat;
  background-size: 100% 100%;
  width: 50px;
  height: 50px;
  position: absolute;
  left: -22px;
}
#dates .selected {
  font-size: 38px;
  width: 75px;
  height: 75px;
  left: -34px;
}

#issues {
  height: inherit !important;
  overflow: visible;
  float: left;
}
#issues li {
  /**max-width: 300px; **/
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  list-style: none;
  text-align: center;
}
#issues li.selected img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
#issues li img {
  float: left;
  -ms-filter: 'progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)'; /* IE 8 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); /* IE 6 & 7 */
  zoom: 1;
  -webkit-transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
  -ms-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
  -webkit-transform: scale(0.7, 0.7);
  -moz-transform: scale(0.7, 0.7);
  -o-transform: scale(0.7, 0.7);
  -ms-transform: scale(0.7, 0.7);
  transform: scale(0.7, 0.7);
}

#issues li.selected h1 {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
#issues li h1 {
  -ms-filter: 'progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)'; /* IE 8 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); /* IE 6 & 7 */
  zoom: 1;
  -webkit-transition: all 2s ease-in-out;
  -moz-transition: all 2s ease-in-out;
  -o-transition: all 2s ease-in-out;
  -ms-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
  -webkit-transform: scale(0.7, 0.7);
  -moz-transform: scale(0.7, 0.7);
  -o-transform: scale(0.7, 0.7);
  -ms-transform: scale(0.7, 0.7);
  transform: scale(0.7, 0.7);
}

#arrow-down {
  width: 24px;
  height: 24px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.coming h2 {
  color: #e1b470;
  font-size: 85px;
  font-family: 'Bainsley';
  margin-top: 90px;
}
.newsletter-section h3 {
  color: #fffcd9;
  font-size: 25px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
}

#section1 {
  /* size based on content by default */
  height: auto !important;
  min-height: 0;
  position: relative;
}

#section1::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: url('../img/border.webp') no-repeat center bottom;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

html,
body {
  height: 100%;
}

.hero-section {
  min-height: 0;
  height: auto !important;
}

.heading-custom {
  margin-top: 65px;
}

#section1 a {
  display: none;
  visibility: hidden;
}

h2.text_wrap1 {
  position: relative;
  font-size: 30px;
  font-family: 'URW Gothic Demi';
  color: #ddb87e !important;
  margin-left: 15px;
}
h1.text_wrap3,
h2.text_wrap3 {
  position: relative;
  font-size: 35px;
  font-family: Khaleefa;
  color: #3c1703 !important;
  margin-top: -60px;
  margin-left: 15px;
}

#grad_top,
#grad_bottom {
  width: 500px;
  height: 80px;
  position: absolute;
}
#grad_top {
  top: 0;
}
#grad_bottom {
  bottom: 0;
}

#next,
#prev {
  display: none !important;
  position: absolute;
  left: -1.2rem;
  font-size: 70px;
  width: 50px;
  height: 45px;
  background-position: 0 -15px;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}
#next:hover,
#prev:hover {
  background-position: 0 0;
}
#next {
  bottom: 0;
  background-image: url('../img/arrow_down.webp');
}
#prev {
  top: 0;
  background-image: url('../img/arrow_up.webp');
}
#next.disabled,
#prev.disabled {
  opacity: 0.2;
}

/*** slider bullet ***/

/*** video ****/
aside {
  position: relative;
  background: url(../img/frame.webp);
  background-size: cover;
}
.tantra-section aside {
  position: relative;
  width: 760px;
  height: 445px;
  background: url(../img/frame.webp);
  background-size: cover;
  margin: 0 auto;
}
.video_overlay {
  background-image: url('../img/frame-bg.png');
  position: absolute;
  z-index: 10;
  top: 5px;
  left: 90px;
  height: 435px;
  width: 760px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  cursor: pointer;
}
.video_overlay_hover {
  background: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}
.play-button-wrapper #circle-play-b svg {
  width: 100px;
  height: 100px;
  fill: #000;
  stroke: #fff;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.9;
}
.startScreen1 {
  position: absolute;
  width: 760px;
  height: 430px;
  top: 7px;
  left: -12px;
  background: url('../img/frame-bg.png');
  z-index: 1;
  transition: 0.8s ease-out;
  background-size: cover;
}
.startScreen2 {
  position: absolute;
  width: 760px;
  height: 430px;
  top: 7px;
  left: -12px;
  background: url('../img/frame-bg.png');
  z-index: 1;
  transition: 0.8s ease-out;
  background-size: cover;
}
.startScreen {
  position: absolute;
  width: 760px;
  height: 430px;
  top: 7px;
  left: -12px;
  background: url('../img/frame-bg.png');
  z-index: 1;
  transition: 0.8s ease-out;
  background-size: cover;
}
.startScreen__btnStart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  background: url('../img/play_btn.webp');
  background-repeat: no-repeat;
  transition: 0.4s ease-out;
  background-size: cover;
  z-index: 999;
  border-color: #ff7f5000;
}

.player2 {
  font-family: 'Barlow Condensed', sans-serif;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.8s ease-out;
  top: -14px;
  left: 3px;
}
.player1 {
  font-family: 'Barlow Condensed', sans-serif;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.8s ease-out;
  top: -14px;
  left: 3px;
}
.player {
  font-family: 'Barlow Condensed', sans-serif;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.8s ease-out;
  top: -14px;
  left: 3px;
}
.player__video {
  width: 730px;
  height: 450px;
  position: static;
  top: 100px;
  left: 320px;
}
.player__video1 {
  width: 730px;
  height: 450px;
  position: static;
  top: 100px;
  left: 320px;
}
.player__video2 {
  width: 730px;
  height: 450px;
  position: static;
  top: 100px;
  left: 320px;
}
.player__btnSkip {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 8px 25px;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  transition: 0.4s ease-out;
}
.player__btnSkip:hover {
  background-color: #ffffff;
  color: #000000;
}
/*** video ****/
/*------------------
  Header section
---------------------*/

.header-section {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  padding-top: 1%;
  height: 65px;
  background-color: rgba(0, 0, 0, 0.8);
}

.header-warp {
  max-width: 1512px;
  margin: 0 auto;
  height: 65px;
  position: relative;
}

.header-social p,
.footer-social p,
.geme-social-share p {
  display: inline-block;
  color: #9190a5;
  font-size: 16px;
  padding-top: 4px;
}

.header-social a,
.footer-social a,
.geme-social-share a {
  display: -ms-inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 50px;
  height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  margin-left: 18px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.header-social a:hover,
.footer-social a:hover,
.geme-social-share a:hover {
  background: #440000;
}

.header-bar-warp {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/bg-nav.webp');
  /* padding: 39px 40px 0; */
  background-position: center center;
  background-repeat: no-repeat;
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 110px;
  position: relative;
  top: -8px;
  left: 0;
  background-size: 100% 100%;
}

.site-logo {
  float: left;
}

.community-panel {
  float: right;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.community-panel a {
  color: #ffd99f;
  background: url(../img/community-btn.webp);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 30px 32px;
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 2px;
  font-family: 'Bainsley_bold';
}

.community-panel a:hover {
  border-color: rgb(255 225 61);
  color: #e1bc82 !important;
  filter: brightness(1.4);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

.cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.user-panel {
  float: right;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.user-panel a {
  color: #ffd99f;
  background: url(../img/bg-btn.webp);
  background-size: contain;
  background-repeat: no-repeat;
  padding: 8px 35px;
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 6px;
  font-family: 'Bainsley_bold';
}

.user-panel a:hover {
  border-color: rgb(255 225 61);
  color: #e1bc82 !important;
  filter: brightness(1.4);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

.main-menu {
  list-style: none;
  text-align: center;
  float: left;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.main-menu li {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.main-menu li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #ffd99f;
  margin-right: 8px;
  position: relative;
  text-transform: uppercase;
  padding: 5px 25px;
  box-sizing: border-box;
  mix-blend-mode: normal;
  box-shadow: 0px 2.69099px 8.74571px #220604;
  border-image: linear-gradient(#eebd6e 0%, #935324 100%) 1;
  border-radius: 5px; /* this doesn't work */
  border-width: 2px;
  border-style: solid;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)),
    linear-gradient(
      180deg,
      rgba(153, 81, 43, 0.94) 0%,
      rgba(75, 45, 25, 0.94) 100%
    );
  white-space: nowrap;
}

/* Vector */

/* Note: backdrop-filter has minimal browser support */

.main-menu li a:hover {
  border-color: rgb(255 225 61);
  color: #e1bc82 !important;
  filter: brightness(1.5);
}

.main-menu li a:hover:after {
  background-image: url('../img/icons/arrow-down-color.png');
}

.main-menu li a:hover i {
  color: #e1bc82;
}

.main-menu li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}

.main-menu li:hover > a {
  color: #e1bc82;
}

.main-menu li:hover > a:after {
  background-image: url('../img/icons/arrow-down-color.png');
}

.main-menu li .sub-menu {
  position: absolute;
  list-style: none;
  text-align: left;
  width: 240px;
  left: 0;
  top: 100%;
  padding: 15px 10px;
  visibility: hidden;
  opacity: 0;
  margin-top: 50px;
  background: #dfbc82;
  z-index: 99;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.4);
  box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
}

/* Gallery submenu: two columns on big screens (keep position: absolute from parent) */
.main-menu li .sub-menu.gallery-submenu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 420px;
  gap: 0 12px;
  padding: 15px 12px;
  background: #dfbc82;
  box-sizing: border-box;
  min-height: 0;
  overflow: visible;
  border-radius: 5px;
}
/* Full background layer so colour covers entire dropdown (z-index 0, items on top) */
.main-menu li .sub-menu.gallery-submenu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #dfbc82;
  border-radius: 5px;
  z-index: 0;
}
.main-menu li .sub-menu.gallery-submenu > li {
  position: relative;
  z-index: 1;
}

.main-menu li .sub-menu li {
  display: block;
  margin-bottom: 8px;
}

.main-menu li .sub-menu.gallery-submenu li {
  margin-bottom: 8px;
}

.main-menu li .sub-menu li:last-child {
  margin-bottom: 0;
}

.main-menu li .sub-menu li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #ffd99f;
  margin-right: 0;
  padding: 5px 25px;
  text-transform: uppercase;
  box-sizing: border-box;
  mix-blend-mode: normal;
  box-shadow: 0px 2.69099px 8.74571px #220604;
  border-image: linear-gradient(#eebd6e 0%, #935324 100%) 1;
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)),
    linear-gradient(
      180deg,
      rgba(153, 81, 43, 0.94) 0%,
      rgba(75, 45, 25, 0.94) 100%
    );
  transition: all 0.3s ease;
  white-space: nowrap;
}

.main-menu li .sub-menu li a:after {
  display: none;
}

.main-menu li .sub-menu li a:hover {
  border-color: rgb(255 225 61);
  color: #e1bc82 !important;
  filter: brightness(1.5);
}

/* Dropdown arrow indicator */
.main-menu li.has-dropdown > a {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.main-menu li.has-dropdown > a:after {
  content: '\f078';
  font-family: 'FontAwesome';
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: transform 0.3s ease;
  margin: 0;
  padding: 0;
}

.main-menu li.has-dropdown:hover > a:after {
  transform: rotate(180deg);
}

.slicknav_menu {
  display: none;
}

.slicknav_menutxt {
  visibility: hidden;
}

/*------------------
  Hero section
---------------------*/

.hero-slider .owl-dots {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  left: calc(50% - 740px);
  bottom: 38px;
  position: relative;
  width: 1496px;
  position: absolute;
  display: none;
}

.hero-slider .owl-dots .owl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid transparent;
  color: #fff;
  display: -ms-inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-slider .owl-dots .owl-dot.active {
  color: #b01ba5;
  border: 2px solid #b01ba5;
}

.hero-slider .owl-nav {
  margin-top: -24px;
  display: block;
}

.hero-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: 100px;
  display: none;
}

.hero-item {
  height: 921px;
  padding-top: 125px;
}

.hero-item h2 {
  font-size: 160px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  position: relative;
  top: 100px;
  opacity: 0;
}

.hero-item p {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  opacity: 0.39;
  margin-bottom: 70px;
  position: relative;
  top: 80px;
  opacity: 0;
}

.hero-item .site-btn {
  position: relative;
  top: 50px;
  opacity: 0;
}

.hero-slider .owl-item.active .hero-item h2,
.hero-slider .owl-item.active .hero-item p,
.hero-slider .owl-item.active .hero-item .site-btn {
  top: 0;
  opacity: 1;
}

.hero-slider .owl-item.active .hero-item h2 {
  -webkit-transition: all 0.5s ease 0.4s;
  -o-transition: all 0.5s ease 0.4s;
  transition: all 0.5s ease 0.4s;
}

.hero-slider .owl-item.active .hero-item p {
  -webkit-transition: all 0.5s ease 0.6s;
  -o-transition: all 0.5s ease 0.6s;
  transition: all 0.5s ease 0.6s;
}

.hero-slider .owl-item.active .hero-item .site-btn {
  -webkit-transition: all 0.5s ease 0.8s;
  -webkit-transition: all 0.5s ease 0.8s;
  -o-transition: all 0.5s ease 0.8s;
  transition: all 0.5s ease 0.8s;
}

.hero-slider .owl-item.active .hero-item .offer-card {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s ease 1s;
  -webkit-transition: all 0.5s ease 1s;
  -o-transition: all 0.5s ease 1s;
  transition: all 0.5s ease 1s;
}

.top-nav-area {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.privacy-section {
  margin-top: 150px;
  background: url(../img/page-top-bg/bg-all.webp) repeat;
  border-bottom: 20px solid transparent; /* Adjust thickness */
  border-image-source: url(../img/border-2.webp);
  border-image-slice: 0 0 100% 0; /* Show only the bottom part */
  border-image-repeat: stretch;
}
.faq-footer {
  background: url(../img/f-border.webp) no-repeat;
  background-size: cover;
  height: 100px;
}
.policy-footer {
  background: url(../img/footer.webp) no-repeat;
  background-size: cover;
  min-height: 200px;
}

.privacy-section h3 {
  color: #fffcd9;
  font-size: 25px;
  line-height: 60px;
}

.text-box .top-meta {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.text-box .top-meta a {
  color: #b01ba5;
}

.text-box h3 {
  margin-bottom: 40px;
  max-width: 370px;
}

.text-box p {
  font-size: 15px;
  font-weight: 500;
  color: #68647d;
  margin-bottom: 35px;
}

.text-box .read-more {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}

.text-box .read-more img {
  margin-left: 13px;
}

/* ----------------
 Blog Section
---------------------*/

.blog-section {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#501755+0,2d1854+100 */
  background: #501755;
  /* Old browsers */
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #501755 0%, #2d1854 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(45deg, #501755 0%, #2d1854 100%);
  background: linear-gradient(45deg, #501755 0%, #2d1854 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#501755', endColorstr='#2d1854', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.blog-section .section-title {
  margin-bottom: 25px;
}

.blog-filter {
  list-style: none;
  display: block;
}

.blog-filter li {
  display: inline-block;
}

.blog-filter li a {
  display: block;
  color: #fff;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  background: #6f2b95;
  line-height: 1.1;
  margin-right: 7px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 10px;
}

.blog-filter li a:hover {
  background: #b01ba5;
}

.blog-item {
  margin-top: 86px;
}

.blog-item .blog-thumb {
  width: 362px;
  float: left;
  margin-right: 30px;
}

.blog-item .text-box {
  overflow: hidden;
}

.blog-item .text-box p {
  margin-bottom: 42px;
}

.widget-item {
  margin-bottom: 85px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.widget-item .widget-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  padding-left: 38px;
  margin-bottom: 48px;
}

.trending-widget .tw-item {
  margin-bottom: 38px;
}

.trending-widget .tw-item:last-child {
  margin-bottom: 0;
}

.trending-widget .tw-thumb {
  float: left;
  margin-right: 17px;
  overflow: hidden;
}

.trending-widget .tw-text .tw-meta {
  color: #68647d;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 7px;
}

.trending-widget .tw-text .tw-meta a {
  color: #b01ba5;
}

.trending-widget .tw-text h5 {
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
}

.categories-widget {
  background: #34164b;
  padding: 55px 0 25px;
}

.categories-widget ul {
  list-style: none;
  padding: 0 38px;
}

.categories-widget ul li {
  display: block;
}

.categories-widget ul li a {
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #68647d;
  font-weight: 500;
  margin-bottom: 15px;
  padding-right: 19px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-image: url('../img/icons/double-arrow.png');
  background-repeat: no-repeat;
  background-position: right -120% center;
  background-size: 11px;
}

.categories-widget ul li a:hover {
  color: #b01ba5;
  background-position: right center;
}

.search-widget {
  position: relative;
}

.search-widget input {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 2px solid #72628b;
  background: none;
  padding-right: 60px;
  color: #fff;
}

.search-widget button {
  position: absolute;
  right: 0;
  top: 0;
  color: #b01ba5;
  font-weight: 700;
  font-size: 14px;
  font-style: italic;
  cursor: pointer;
  background: none;
  border: none;
  text-transform: uppercase;
}

.latest-comments .lc-item {
  margin-bottom: 30px;
}

.latest-comments .lc-item:last-child {
  margin-bottom: 0;
}

.latest-comments .lc-item .lc-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  float: left;
  margin-right: 12px;
}

.latest-comments .lc-item .tw-text {
  padding-top: 10px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.latest-comments .lc-item .tw-text a {
  color: #b01ba5;
}

.latest-comments .lc-item .tw-text span {
  color: #68647d;
}

/* --------------------
  Intro video section
-----------------------*/

.intro-video-section {
  height: 757px;
  position: relative;
}

.video-play-btn {
  position: absolute;
  left: calc(50% - 61px);
  top: calc(50% - 61px);
  width: 122px;
  height: 122px;
  text-align: center;
  padding-top: 35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.video-text {
  margin-bottom: 80px;
  padding: 27px 0;
  padding-left: 25px;
  position: relative;
}

.video-text h2 {
  font-size: 48px;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1px;
}

.video-text p {
  font-size: 18px;
  color: #a3a1b3;
  font-weight: 500;
  margin-bottom: 0;
}

.video-text:after {
  position: absolute;
  content: '';
  width: 9px;
  height: 100%;
  left: -22px;
  top: 0;
  border-left: 3px solid #de46d6;
  background: #fff;
  -webkit-box-shadow: 0 0 9px 3px rgba(226, 30, 228, 0.5);
  box-shadow: 0 0 9px 3px rgba(226, 30, 228, 0.5);
}
a.link-img:hover {
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  color: #fbce79;
  filter: brightness(1.3);
}
.col-md-5.download a:hover {
  filter: brightness(1.5);
}
.col-md-5.down a:hover {
  filter: brightness(1.5);
}
.link-img {
  display: block;
  background: none;
  padding: 0;
  margin: 0 auto;
  border: 0;
  outline: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background: url('../img/btn_1.webp') center center no-repeat;
  background-size: contain;
  font-size: 1rem;
  width: 16.4em;
  height: 7.4em;
  opacity: 1;
  -webkit-transition: all 150ms;
  transition: all 150ms;
  color: #fff;
}

/* ----------------
  Featured section
---------------------*/
.tantra-section h3 {
  color: #fffcd9;
  font-size: 25px;
  margin-top: 30px;
  text-align: left;
}

.col-md-12.text-center.maha {
  justify-content: center;
  margin-top: 15px;
}

.tantra-section {
  position: relative;
  overflow: hidden;
  background: url(https://tantra-web.b-cdn.net/ash_animation.gif);
  background-size: cover;
  background-repeat: no-repeat;
  height: 1000px;
}
.logo-section {
  position: relative;
  overflow: hidden;
  background: #000;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.logo-section aside {
  position: relative;
  width: 760px;
  height: 445px;
  background: url(../img/frame.webp);
  background-size: cover;
  margin: 0 auto;
}

.col-md-12.maha.row {
  margin-top: 165px;
}
.featured-bg {
  width: calc(50% - 156px);
  float: left;
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
}

.featured-box {
  float: right;
  width: calc(50% + 156px);
  padding: 100px 50px 130px 79px;
}

.featured-box .text-box {
  max-width: 810px;
}

.featured-box .text-box .top-meta {
  color: #68647d;
}

.featured-box .text-box h3 {
  font-size: 60px;
  max-width: 100%;
}

.featured-box .text-box p {
  font-size: 16px;
}

.featured-box .text-box .read-more {
  color: #251e2f;
}

.gradient-bg,
.newsletter-section {
  background: #3e0f3d;
  /* Old browsers */
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #3e0f3d 0%, #1c0f3b 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#3e0f3d),
    to(#1c0f3b)
  );
  background: -o-linear-gradient(left, #3e0f3d 0%, #1c0f3b 100%);
  background: linear-gradient(to right, #3e0f3d 0%, #1c0f3b 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e0f3d', endColorstr='#1c0f3b', GradientType=1);
  /* IE6-9 */
}

/* --------------------
  Newsletter section
----------------------*/

.newsletter-form {
  padding-left: 56px;
}

.newsletter-form input {
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  width: 787px;
  border: none;
  border-bottom: 2px solid #9b91a6;
  background: none;
  height: 63px;
  margin-right: 26px;
}

/**** slider ****/

.creative-fullpage--slider {
  background-color: #ffffff;
  z-index: 2;
  width: 100%;
  position: relative;
  flex-direction: column;
  font-size: 16px;
  display: flex;
}

.creative-fullpage--slider .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: left;
  flex-direction: column;
  overflow: hidden;
}
.creative-fullpage--slider .swiper-slide .slider-inner img {
  object-fit: cover;
}
.creative-fullpage--slider .swiper-slide .slider-inner video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 1;
}
.creative-fullpage--slider .swiper-slide .slider-inner::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -1px;
  background-color: transparent;
  background-image: radial-gradient(at center, #ffffff00 50%, #00000026 100%);
}
.swiper-slide .slider-inner .swiper-content .title-area .tag {
  margin-bottom: 10px;
  margin-top: 0px;
  font-size: 20px;
  font-family: Khaleefa;
  color: #261209;
  text-align: center;
}
.swiper-slide .slider-inner .swiper-content .title-area .title {
  margin-top: 50px;
  color: #fff;
  font-size: 8vw;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 50px;
  margin-left: -12px;
  text-decoration: none;
}

.swiper-slide .slider-inner .swiper-content p.disc.para-2 {
  font-family: 'Courgette';
  font-weight: bold;
  color: #c55010 !important;
}

.swiper-slide .slider-inner .swiper-content p.disc.para-2 strong {
  font-weight: bolder;
}

.header-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.text-wrapper {
  display: inline-block;
  position: relative;
}

.header-image {
  display: block;
  width: 100%;
  height: auto;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: normal; /* Allow wrapping */
  text-align: center;
  width: 100%;
  font-family: 'Khaleefa';
  font-size: 16px;
  font-weight: bold;
  color: #3c1703;
  padding: 10px;
}

/* Make the wrapper take the width of the text */
.text-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 500px;
}

/* Ensure the image matches the text width */
.text-wrapper img {
  width: 100%;
  height: auto;
  max-width: none;
}

.creative-btn--wrap .creative-slide--btn {
  color: #ffffff;
  margin-left: 18px;
  font-size: 1.4em;
  transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
  font-weight: 400;
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  outline: none;
  outline-color: transparent;
  box-shadow: none;
  will-change: transform;
  backface-visibility: hidden;
}

.creative-btn--circle .circle {
  position: absolute;
  right: calc(100% - 10px);
  top: 0;
  bottom: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  clip-path: circle(25% at 50% 50%);
  transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle .circle-fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 100%;
  background-color: #ffffff;
  will-change: transform;
  transform: scale(0);
  z-index: 1;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1),
    background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon {
  transform: translate(-100%, 0%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--circle .circle-icon .icon-arrow {
  width: 20px;
  height: 20px;
  stroke: none;
  fill: #000;
}
.creative-btn--circle .circle-outline {
  fill: transparent;
  width: 10px;
  stroke: #ffffff;
}
.creative-btn--wrap .creative-slide--btn .creative-btn--label {
  margin-left: 4pt;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn .creative-btn__border {
  position: absolute;
  left: 4pt;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
  transform: translateX(18px);
}
.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
  transform: scale(0, 1);
}
.creative-btn--wrap .creative-slide--btn:hover {
  margin-left: 38px !important;
}
.creative-btn--wrap .creative-slide--btn:hover .circle {
  clip-path: circle(50% at 50% 50%);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
  transform: scale(1, 1);
}
.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
  transform: translate(0%, 0%);
  opacity: 1;
}
.newsletter-section .swiper-button-next,
.newsletter-section .swiper-button-prev {
  top: 50%;
  transition: all 0.4s;
  background-color: #ffffff00;
  width: 125px;
  border-radius: 50%;
  transition: all 0.4s;
}

.newsletter-section .swiper-button-next {
  right: 5%;
  background: url(../img/slider/right.png) no-repeat;
  background-size: contain;
}
.newsletter-section .swiper-button-prev {
  left: 5%;
  background: url(../img/slider/left.png) no-repeat;
  background-size: contain;
}
.swiper-container-h .slider-pagination-area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: unset;
  right: unset;
  bottom: 80px;
  left: 50% !important;
  transform: translateX(-50%);
  width: 500px;
  z-index: 1;
}
.swiper-container-h .slider-pagination-area .slide-range {
  font-weight: 500;
  margin: 0 15px;
  color: #000;
  line-height: 0;
  position: absolute;
  font-size: 30px;
}
.swiper-container-h .slider-pagination-area .slide-range.one {
  left: -50px;
}
.swiper-container-h .slider-pagination-area .slide-range.ten {
  right: -50px;
}
.swiper-container-h .slider-pagination-area .swiper-pagination {
  bottom: 0 !important;
  width: 500px !important;
}
.swiper-container-h
  .slider-pagination-area
  .swiper-pagination
  .swiper-pagination-progressbar-fill {
  background: linear-gradient(
    45deg,
    #8c4b28,
    #ac7429,
    #af7621,
    #724500,
    #8c4b28
  );
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 6px);
  left: 0;
  top: 0;
}
.newsletter-section .swiper-button-next::after {
  content: none;
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  font-weight: var(--fa-style, 900);
  background: none;
  color: #ffffff;
  font-size: 60px;
}
.newsletter-section .swiper-button-prev::after {
  content: none;
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  font-weight: var(--fa-style, 900);
  background: none;
  color: #ffffff;
  font-size: 60px;
}
.newsletter-section .swiper-button-next:hover,
.newsletter-section .swiper-button-prev:hover {
  background-position: 0 0;
}

/* Override Toastr default info style before it appears */
.toast-info {
  background-color: #09352b !important;
  color: #fff !important;
  border-left: 5px solid #00c9a7 !important;
}

@media (min-width: 991px) and (max-width: 1324px) {
  .header-bar-warp {
    background: url(../img/nav_bar.webp) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
  }

  .user-panel a {
    padding: 10px 40px;
    font-size: 14px;
  }

  .community-panel a {
    padding: 34px 34px;
    font-size: 14px;
  }

  .main-menu li a {
    font-size: 14px;
    margin-right: 15px;
    padding: 5px 15px;
  }
}
/* ====================== Responsive Medium Screens =============================== */
@media (max-width: 1200px) {
  .main-menu li a {
    font-size: 13px;
    padding: 5px 20px;
    margin-right: 6px;
  }
}

@media (max-width: 1100px) {
  .main-menu li a {
    font-size: 12px;
    padding: 5px 18px;
    margin-right: 5px;
  }
}

/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
  .creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
    width: 100%;
    text-align: center;
    left: 0;
  }

  .sadhana {
    margin-bottom: 20px !important;
  }

  .newsletter-section .swiper-button-next,
  .newsletter-section .swiper-button-prev {
    height: 50px;
    line-height: 50px;
  }
  .swiper-container-h .slider-pagination-area {
    width: 200px !important;
  }
  .newsletter-section .swiper-button-next::after,
  .newsletter-section .swiper-button-prev::after {
    font-size: 30px;
  }

  .swiper-container-h .slider-pagination-area .swiper-pagination {
    bottom: 0 !important;
    width: 200px !important;
  }
}
.col-md-12.tantra_path.row {
  margin-top: 150px;
}
/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
  .swiper-slide .slider-inner .swiper-content .title-area .title {
    font-size: 64px;
  }
  .swiper-slide .slider-inner .swiper-content .title-area .tag {
    margin-bottom: 0px;
  }
  /**	.swiper-slide .slider-inner .swiper-content p.disc{
		    margin:10px 15px ;
    font-size: 18px;
   width:95%;
	text-align:center;
	    line-height: 42px;
	}**/
  .swiper-container-h .slider-pagination-area {
    display: none;
  }
  .swiper-slide .slider-inner .swiper-content p.disc br {
    display: none;
  }

  h1.text_wrap2 {
    font-size: 25px !important;
    margin-top: -35px !important;
  }
  .col-md-12.text-center.maha {
    margin-top: 50px;
  }

  .newsletter-section h3 {
    color: #d4bf9a;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .link-img {
    width: 15.4em;
  }
  .btn_text {
    font-size: 18px !important;
  }

  h1.text_wrap3,
  h2.text_wrap3 {
    font-size: 20px;
    margin-top: -45px;
    margin-left: 0px;
  }
  .player__video2 {
    width: 335px;
    height: 320px;
  }
  .startScreen2 {
    width: 365px;
    height: 308px;
    left: -8px;
  }

  .tantra-section aside {
    width: 357px;
    height: 320px;
  }
  .tantra-section h3 {
    font-size: 20px;
  }
  .logo-section h3 {
    font-size: 20px;
  }
  .footer-section {
    padding: 5px 0 5px;
  }
  .divider {
    display: none;
  }
  .down {
    margin-top: -100px;
  }
  .download_1 .download {
    margin-top: 60px !important;
  }
}

.download_1 {
  margin-bottom: 30px;
}

.download_1 .download {
  width: 250px;
  height: 80px;
  margin-top: 30px;
}

.download_1 .download img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile responsive styles for download buttons */
@media (max-width: 767px) {
  .download_1 .download {
    width: 180px;
    height: 60px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .download_1 .download {
    width: 150px;
    height: 50px;
    margin-top: 15px;
  }
}

/*** intro-video-img ***/
.wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.wrapper .wrapper__video {
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  z-index: 0;
}

.wrapper:before {
  bottom: 0;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  /* overlay sits above the video */
  z-index: 1;
}

.logo {
  text-align: center;
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 90%;
  max-width: 600px;
  padding: 0 20px;
}
img.video__image {
  transform: none !important;
}
/**intro-video-img**/
h1.text_wrap2 {
  position: relative;
  font-size: 35px;
  font-family: Khaleefa;
  color: #432616 !important;
  margin-top: -60px;
  margin-left: 15px;
  text-align: center;
}
.btn_text {
  font-size: 22px;
}
.box {
  display: inline-block;
  aspect-ratio: 1.5;
}
.box {
  position: relative;
}

.box:before {
  content: '';
  position: absolute;
  inset: 0;
  border: 55px solid;
  border-image: linear-gradient(
      45deg,
      #8c4b28,
      #e2a553,
      #ffd89f,
      #f3b65b,
      #8c4b28
    )
    10;
  background: url(../img/slider-bg.webp);
  clip-path: polygon(
    0 50.72px,
    40px 40px,
    50.72px 0,
    calc(100% - 50.72px) 0,
    calc(100% - 40px) 40px,
    100% 50.72px,
    100% calc(100% - 50.72px),
    calc(100% - 40px) calc(100% - 40px),
    calc(100% - 50.72px) 100%,
    50.72px 100%,
    40px calc(100% - 40px),
    0 calc(100% - 50.72px),
    0 50.72px,
    10px calc(50.72px + 7.67px),
    10px calc(100% - 50.72px - 7.67px),
    calc(40px + 8.16px) calc(100% - 40px - 8.16px),
    calc(50.72px + 7.67px) calc(100% - 10px),
    calc(100% - 50.72px - 7.67px) calc(100% - 10px),
    calc(100% - 40px - 8.16px) calc(100% - 40px - 8.16px),
    calc(100% - 10px) calc(100% - 50.72px - 7.67px),
    calc(100% - 10px) calc(50.72px + 7.67px),
    calc(100% - 40px - 8.16px) calc(40px + 8.16px),
    calc(100% - 50.72px - 7.67px) 10px,
    calc(50.72px + 7.67px) 10px,
    calc(40px + 8.16px) calc(40px + 8.16px),
    10px calc(50.72px + 7.67px)
  );
  height: 76vh;
}
.mask {
  /**-webkit-mask:
    radial-gradient(circle 30px at top    left ,#0000 98%,#000) top    left,
    radial-gradient(circle 30px at top    right,#0000 98%,#000) top    right,
    radial-gradient(circle 30px at bottom left ,#0000 98%,#000) bottom left,
    radial-gradient(circle 30px at bottom right,#0000 98%,#000) bottom right;
  -webkit-mask-size:51% 51%;
  -webkit-mask-repeat:no-repeat;**/
  background: url(../img/slider-bg.webp);
  clip-path: polygon(
    0 50.72px,
    40px 40px,
    50.72px 0,
    calc(100% - 50.72px) 0,
    calc(100% - 40px) 40px,
    100% 50.72px,
    100% calc(100% - 50.72px),
    calc(100% - 40px) calc(100% - 40px),
    calc(100% - 50.72px) 100%,
    50.72px 100%,
    40px calc(100% - 40px),
    0 calc(100% - 50.72px)
  );
  height: 76vh;
}

#demo {
  width: 1105px;
  margin: auto;
  height: 400px;
}

.carousel-caption {
  position: initial;
  z-index: 10;
  padding: 30px 45px;
  color: #000;
  text-align: center;
  font-weight: bold;
  line-height: 2rem;
  height: 430px;
}
.carousel-caption p {
  font-size: 20px;
  text-align: left;
  font-weight: 800;
  color: #060000;
}

@media (max-width: 767px) {
  .carousel-caption {
    position: initial;
    z-index: 10;
    padding: 3rem 2rem;
    color: rgba(78, 77, 77, 0.856);
    text-align: center;
    font-size: 0.7rem;
    font-style: italic;
    font-weight: bold;
    line-height: 1.5rem;
  }

  .header-section {
    padding-top: 0;
    height: 50px;
  }
  .cta-group {
    position: absolute;
    top: 25px;
    right: 10px;
  }
  .user-panel {
    float: right;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    margin: 0;
  }
  .community-panel {
    float: right;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    margin: 0;
  }
  .user-panel a {
    padding: 45px 85px;
    position: relative;
    font-size: 16px;
  }

  .community-panel a {
    padding: 19px 22px;
    position: relative;
    font-size: 16px;
  }
}
.carousel-caption img {
  width: 280px;
  margin-top: -40px;
  max-width: fit-content;
}
.carousel-control-prev {
  left: -20px;
}
@media (max-width: 767px) {
  .carousel-caption img {
    width: 4rem;
    border-radius: 4rem;
    margin-top: 1rem;
  }
}

#image-caption {
  font-size: 30px;
  font-family: Khaleefa;
  color: #261209;
  margin-top: 20px;
}

@media (max-width: 767px) {
  #image-caption {
    font-size: 25px;
    font-family: Khaleefa;
    color: #261209;
    margin-top: 20px;
  }
}

i {
  padding: 1.4rem;
}
i.fas.fa-arrow-left {
  background: url(../img/slider/left.png) no-repeat;
  background-size: contain;
  width: 100px;
}
.fa-arrow-left:before {
  content: inherit;
}
i.fas.fa-arrow-right {
  background: url(../img/slider/right.png) no-repeat;
  background-size: contain;
  width: 100px;
}
.fa-arrow-right:before {
  content: inherit;
}
.carousel-control-next {
  right: -20px;
}
@media (max-width: 767px) {
  i {
    padding: 0.8rem;
  }
}

.carousel-control-prev {
  justify-content: flex-start;
}

.carousel-control-next {
  justify-content: flex-end;
}

.carousel-control-prev,
.carousel-control-next {
  transition: none;
  opacity: unset;
}

/**** slider****/

/*** video****/

.video {
  position: relative;
  width: 96%;
  background-color: #000;
  left: 18px;
  top: 8px;
  height: 97%;
}
.video:before {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.video__poster {
  left: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  right: 0;
  z-index: 10;
  transition: opacity 0.3s, visibility 0s 0.3s;
  cursor: pointer;
}
.video__poster:before {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  background-size: cover;
}
.video__poster:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 2px;
}
.video__poster--hide {
  opacity: 0;
  visibility: hidden;
}
.video__image {
  display: block;
  width: 100%;
}
.video__iframe,
.video__video,
.video iframe {
  left: 0;
  position: absolute;
  top: 0;
  border: 0;
  height: 100%;
  width: 100%;
}
.game-single-content ul li {
  line-height: 45px;
}
.video__iframe,
.video__video_,
.video iframe {
  left: 31px;
  position: absolute;
  top: 20px;
  border-radius: 93px;
  width: 560px;
}

.tantra-section .video_frame {
  position: relative;
  width: 620px;
  height: 490px;
  background: url(../img/frame-fire.webp);
  background-size: cover;
  margin: 0 auto;
}

video[poster] {
  height: 100%;
  width: 100%;
}

.video-wrapper {
  position: relative;
  height: auto;
  overflow: hidden;
}

.video-wrapper > video {
  width: 100%;
  vertical-align: middle;
  height: auto;
}

.video-wrapper > video.has-media-controls-hidden::-webkit-media-controls {
  display: none;
}

.video-overlay-play-button {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 10px calc(50% - 50px);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  opacity: 0.95;
  cursor: pointer;
  background-image: linear-gradient(transparent, #000);
  transition: opacity 150ms;
}

.video-overlay-play-button:hover {
  opacity: 1;
}

.video-overlay-play-button.is-hidden {
  display: none;
}
/**** video******/
/* ----------------
  Footer section
---------------------*/
.footer {
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  /* height: 900px; */
  background: url(https://tantra-web.b-cdn.net/ash_animation.gif);
  padding-top: 40px;
}
.explore-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url(../img/sec5_bg.webp) no-repeat;
  background-size: cover;
  margin-top: 40px;
}

.footer-section .container {
  position: relative;
  padding: 60px 15px 25px;
}

.footer-left-pic {
  position: absolute;
  left: -13px;
  bottom: 19px;
}

.footer-right-pic {
  position: absolute;
  right: 50px;
  bottom: 19px;
}
/* .explore-section .container:before {
  bottom: 0;
  content: "";
  display: block;
  height: 90px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  background: url(../img/border.webp) no-repeat top;
  z-index: 9;
} */
.footer-menu {
  padding-top: 62px;
}

.footer-menu li:last-child a {
  margin-right: 0;
}

.footer-social {
  padding-bottom: 15px;
}

.footer-social a:first-child {
  margin-left: 0;
}

.copyright {
  font-weight: 500;
  color: #fff;
}

.copyright a {
  color: #fff;
}

.copyright a:hover {
  text-decoration: underline;
}

.footer-social i {
  font-size: x-large !important;
}
.footer .nav {
  font-size: 0.8rem;
}

p.copy-text {
  color: #fff;
}
/* ----------------
  Other Pages
=====================
---------------------*/

.site-breadcrumb a,
.site-breadcrumb span {
  color: #fff;
  margin: 0 10px;
  font-weight: 700;
}

.site-breadcrumb a:first-child {
  margin-left: 0;
}

.site-breadcrumb span {
  color: #e1b470;
}
ul.nav.justify-content-center li a {
  color: #fff;
}

ul.nav.justify-content-center li a:hover {
  text-decoration: underline;
}
/* --------------
  Games Page
-----------------*/

.games-section {
  padding: 108px 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#501755+0,2d1854+100 */
  background: #501755;
  /* Old browsers */
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #501755 0%, #2d1854 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -o-linear-gradient(45deg, #501755 0%, #2d1854 100%);
  background: linear-gradient(45deg, #501755 0%, #2d1854 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#501755', endColorstr='#2d1854', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.game-filter {
  list-style: none;
  margin-bottom: 82px;
}

.game-filter li {
  display: inline-block;
  width: 40px;
  height: 34px;
  background: #503c6e;
  border-radius: 17px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.game-filter li:hover {
  background: #c313b7;
}

.game-filter li a {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding-top: 7px;
}

.game-item {
  margin-bottom: 80px;
}

.game-item h5 {
  font-size: 20px;
  color: #fff;
  padding-top: 30px;
  margin-bottom: 20px;
}

.game-item .read-more {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  color: #b01ba5;
}

.game-item .read-more img {
  margin-left: 13px;
}

.site-pagination {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-pagination a {
  width: 38px;
  height: 44px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid transparent;
  color: #fff;
  display: -ms-inline-flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.site-pagination a.active {
  width: 44px;
  margin: 0 10px;
  color: #b01ba5;
  border: 2px solid #b01ba5;
}

.site-pagination a.active:first-child {
  margin-left: 0;
}

.game-page-sideber .widget-item {
  margin-bottom: 55px;
}

.rating-widget {
  background: #34164b;
  padding: 55px 0 30px;
}

.rating-widget ul {
  list-style: none;
  padding: 0 38px;
  margin-bottom: 30px;
}

.rating-widget ul li {
  display: block;
  font-size: 16px;
  color: #b01ba5;
  font-weight: 500;
  margin-bottom: 10px;
}

.rating-widget ul li span {
  float: right;
  color: #68647d;
}

.rating-widget h5 {
  text-align: right;
  font-size: 36px;
  color: #fff;
  font-weight: 900;
  padding-right: 38px;
}

.rating-widget h5 i {
  font-weight: 500;
  font-size: 16px;
  font-style: italic;
  color: #65607b;
  text-transform: uppercase;
  margin-right: 18px;
}

.rating-widget h5 span {
  color: #b01ba5;
}

.testimonials-widget {
  background: #34164b;
  padding: 55px 0 50px;
}

.testimonials-widget .testim-text {
  padding: 0 30px;
}

.testimonials-widget .testim-text p {
  font-size: 16px;
  font-weight: 500;
  color: #68647d;
  line-height: 1.8;
  margin-bottom: 40px;
}

.testimonials-widget .testim-text h6 {
  color: #68647d;
  padding-left: 15px;
}

.testimonials-widget .testim-text h6 span {
  color: #b01ba5;
}

/* ----------------
  Review section
---------------------*/

.review-item {
  margin-bottom: 87px;
}

.review-content {
  position: relative;
}

.review-content h3 {
  max-width: 100%;
  margin-bottom: 35px;
}

.review-content p {
  margin-bottom: 40px;
}

.review-content .rating {
  position: absolute;
  right: 0;
  top: 0;
}

.review-content .rating h5 {
  text-align: right;
  font-size: 36px;
  color: #fff;
  font-weight: 900;
  padding-right: 38px;
}

.review-content .rating h5 i {
  font-weight: 500;
  font-size: 16px;
  font-style: italic;
  color: #65607b;
  text-transform: uppercase;
  margin-right: 18px;
}

.review-content .rating h5 span {
  color: #c313b7;
}

/* ------------------
	Blog Page
---------------------*/

.blog-page .blog-filter {
  margin-bottom: 77px;
}

.big-blog-item {
  margin-bottom: 65px;
}

.big-blog-item .blog-thumbnail {
  margin-bottom: 30px;
}

.big-blog-item .blog-content .top-meta {
  margin-bottom: 15px;
}

.big-blog-item .blog-content h3 {
  max-width: 100%;
  margin-bottom: 25px;
}

.big-blog-item .blog-content p {
  margin-bottom: 10px;
}

.policy-section p,
.policy-section ul li {
  color: #fff;
}

.policy-section ul li {
  margin-bottom: 5px;
}

.policy-section .page-info {
  margin: 40px auto 30px auto;
}

.policy-section .page-info {
  display: flex;
}

#section1 .wrapper {
  height: auto;
}

.text-center {
  width: 100%;
  margin-bottom: 50px;
}

.title-area {
  margin-top: 10px !important;
}

.slicknav_icon-bar {
  background-color: #891e17 !important;
}

.slicknav_nav {
  background-color: #ddb67c;
  margin-left: 50px;
  width: 100%;
  border-radius: 15px;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.slicknav_nav::-webkit-scrollbar {
  width: 6px;
}

.slicknav_nav::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.slicknav_nav::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.slicknav_nav::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}
.slicknav_nav a {
  color: #0a0603;
  text-transform: uppercase;
}
.slicknav_nav ul {
  margin-left: 20px;
  background: #dfbc82;
  border-radius: 5px;
  padding: 10px 8px;
  list-style: none !important;
  position: relative;
  transition: all 0.3s ease;
  overflow: visible !important;
}
.slicknav_nav ul li {
  margin-bottom: 8px;
}
.slicknav_nav ul li:last-child {
  margin-bottom: 0;
}
.slicknav_nav ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #ffd99f !important;
  text-transform: uppercase;
  padding: 5px 20px !important;
  box-sizing: border-box;
  mix-blend-mode: normal;
  box-shadow: 0px 2.69099px 8.74571px #220604;
  border-image: linear-gradient(#eebd6e 0%, #935324 100%) 1;
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)),
    linear-gradient(
      180deg,
      rgba(153, 81, 43, 0.94) 0%,
      rgba(75, 45, 25, 0.94) 100%
    ) !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.slicknav_nav .slicknav_row {
  display: flex;
  align-items: center;
}
.slicknav_nav .slicknav_arrow {
  margin-left: 10px;
}
.slicknav_nav .slicknav_parent > a {
  pointer-events: auto;
}
.slicknav_nav .slicknav_parent .slicknav_item {
  cursor: pointer;
}
/* ===== MOBILE DROPDOWN - INLINE WITH INDENT ===== */

/* Submenu hidden by default */
.slicknav_nav .slicknav_parent > ul,
.slicknav_nav .slicknav_parent > .sub-menu {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: transparent !important;
}

/* Show submenu when Gallery is expanded (not collapsed) */
.slicknav_nav .slicknav_parent:not(.slicknav_collapsed) > ul,
.slicknav_nav .slicknav_parent:not(.slicknav_collapsed) > .sub-menu {
  display: block !important;
}

/* Gallery submenu on small screen: fixed height, scrollable */
.slicknav_nav .slicknav_parent > .sub-menu.gallery-submenu,
.slicknav_nav .slicknav_parent > ul.gallery-submenu {
  max-height: 280px !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

/* Active gallery item on small screen - distinct colour */
.slicknav_nav .gallery-submenu li a.active,
.slicknav_nav .gallery-submenu li a.active:hover {
  background: linear-gradient(to bottom, #c39a57 0%, #b8884a 100%) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.slicknav_nav .gallery-submenu li a.active::before {
  color: #fff !important;
}

/* Gallery parent item - highlighted when submenu is open */
/* Background on the entire parent li to cover text + arrow */
.slicknav_nav .slicknav_parent:not(.slicknav_collapsed) {
  background: linear-gradient(to bottom, #c39a57 0%, #b8884a 100%) !important;
  border-radius: 5px !important;
  border: 2px solid #c39a57 !important;
  box-shadow: 0px 2.69099px 8.74571px #220604 !important;
  margin-bottom: 8px !important;
}

.slicknav_nav .slicknav_parent:not(.slicknav_collapsed) > a {
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}

/* Arrow icon color when open */
.slicknav_nav .slicknav_parent:not(.slicknav_collapsed) .slicknav_arrow {
  color: #fff !important;
}

/* Submenu items - same design as main menu but with LEFT INDENT */
.slicknav_nav .slicknav_parent > ul > li,
.slicknav_nav .slicknav_parent > .sub-menu > li {
  margin: 8px 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.slicknav_nav .slicknav_parent > ul > li > a,
.slicknav_nav .slicknav_parent > .sub-menu > li > a {
  display: block !important;
  padding: 12px 20px !important;
  padding-left: 40px !important; /* LEFT INDENT to show it's a submenu */
  margin-left: 0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #000 !important; /* BLACK color for Ma Kali */
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

/* Add a subtle indicator before submenu items */
.slicknav_nav .slicknav_parent > ul > li > a::before,
.slicknav_nav .slicknav_parent > .sub-menu > li > a::before {
  content: '→' !important;
  position: absolute !important;
  left: 20px !important;
  color: #000 !important; /* BLACK to match Ma Kali text */
  font-size: 14px !important;
}

.slicknav_nav .slicknav_parent > ul > li > a:hover,
.slicknav_nav .slicknav_parent > .sub-menu > li > a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #000 !important; /* Keep black on hover */
  padding-left: 45px !important;
}

.slicknav_nav .slicknav_parent > ul > li > a:hover::before,
.slicknav_nav .slicknav_parent > .sub-menu > li > a:hover::before {
  color: #000 !important; /* Keep arrow black on hover */
}
/* ----------------
  Contact page
---------------------*/

.offerings-container {
  flex-direction: row;
  align-items: start;
}

.sm-section-seperator {
  display: none;
}

@media (min-width: 767px) {
  #timeline {
    background: url('../img/dot.gif') 3px top repeat-y;
  }

  #next,
  #prev {
    display: block !important;
  }

  #dates {
    display: block;
  }
  .header-image {
    height: 70px;
  }
  .footer .nav {
    font-size: 1rem;
  }
  .text-overlay {
    font-size: 22px;
  }
  .swiper-slide .slider-inner .swiper-content .title-area .tag {
    font-size: 34px;
  }
  .box {
    height: 72vh;
  }
  .box:before {
    height: 72vh;
  }
}

@media (min-width: 992px) {
  .mask {
    max-width: 80%;
  }
  .box {
    height: 70vh;
  }
  .box:before {
    height: 70vh;
  }
}

@media (max-width: 1530px) {
  .hero-slider .owl-dots {
    width: 1170px;
    left: calc(50% - 585px);
  }
  .text-overlay {
    font-size: 26px;
  }
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-item .blog-thumb {
    width: 250px;
  }
  .hero-item p {
    font-size: 22px;
  }
  .hero-slider .owl-nav .owl-next {
    right: 30px;
  }
  .hero-slider .owl-dots {
    width: 930px;
    left: calc(50% - 465px);
  }
  .newsletter-form {
    padding-left: 0;
  }
  .newsletter-form input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .game-filter li {
    width: 31px;
    height: 31px;
  }
  .game-filter li a {
    padding-top: 5px;
  }
  .text-overlay {
    font-size: 24px;
  }
}

/* Tablet :768px. */

@media only screen and (min-width: 767px) and (max-width: 991px) {
  .header-bar-warp {
    background: url(../img/nav_small.webp) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 80px;
  }
  .user-panel a {
    padding: 6px 24px;
    font-size: 11px;
  }

  .cta-group {
    gap: 4px;
  }
  .community-panel a {
    padding: 20px 24px;
    font-size: 11px;
  }
  .main-menu {
    margin-left: 25px;
  }
  .main-menu li a {
    margin-right: 5px;
    font-size: 10px;
    padding: 5px 12px;
  }
  .hero-item h2 {
    font-size: 110px;
  }
  .hero-item p {
    font-size: 16px;
    padding: 0 30px;
  }
  .hero-slider .owl-nav .owl-next {
    right: 0;
  }
  .hero-slider .owl-dots {
    width: 690px;
    left: calc(50% - 345px);
  }
  .blog-item .blog-thumb {
    float: none;
    margin-right: 0;
    width: 100%;
    margin-bottom: 30px;
  }
  .featured-bg {
    display: none;
  }
  .featured-box {
    float: none;
    width: 100%;
  }
  .newsletter-form input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .footer-right-pic {
    right: 15px;
  }
  .footer-left-pic {
    left: -44px;
  }
  .game-filter {
    text-align: center;
  }
  .game-filter li {
    margin-bottom: 5px;
  }
  .game-single-content .gs-title {
    font-size: 40px;
  }
  .review-pic img {
    min-width: 100%;
    margin-bottom: 30px;
  }
  .contact-text {
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 150px) and (max-width: 380px) {
  .tantra-section {
    height: 595px;
  }
  .video__video_ {
    left: 8px;
    position: absolute;
    top: 5px;
    border-radius: 40px;
    width: 180px;
  }

  .tantra-section .video_frame {
    position: relative;
    width: 200px;
    height: 160px;
    background: url(../img/frame-fire.webp);
    background-size: cover;
    margin: 0 auto;
  }

  .offerings-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sm-section-seperator {
    display: block;
    width: 20%;
  }
  .game-founder-section {
    margin-top: 30px;
  }
  .header-image {
    height: 50px;
  }
  .text-overlay {
    font-size: 14px;
  }
}

@media only screen and (min-width: 351px) and (max-width: 400px) {
  .video__iframe,
  .video__video_,
  .video iframe {
    left: 16px;
    position: absolute;
    top: 10px;
    border-radius: 40px;
    width: 305px;
  }
  .tantra-section .video_frame {
    position: relative;
    width: 335px;
    height: 270px;
    background: url(../img/frame-fire.webp);
    background-size: cover;
    margin: 0 auto;
  }

  .swiper-slide .slider-inner .swiper-content .title-area .tag {
    font-size: 25px;
  }
  .tantra-section {
    height: 700px;
  }
  .offerings-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sm-section-seperator {
    display: block;
    width: 20%;
  }
  .game-founder-section {
    margin-top: 30px;
  }
  .header-image {
    height: 50px;
  }
  .text-overlay {
    font-size: 15px;
  }
}

@media only screen and (min-width: 400px) and (max-width: 600px) {
  .tantra-section .video_frame {
    position: relative;
    width: 340px;
    height: 267px;
    background: url(../img/frame-fire.webp);
    background-size: cover;
    margin: 50px auto;
  }
  .video__iframe,
  .video__video_,
  .video iframe {
    left: 15px;
    position: absolute;
    top: 8px;
    border-radius: 60px;
    width: 315px;
  }
  .tantra-section {
    height: 1155px;
    margin-top: 50px;
  }
  .col-md-12.tantra_path.row {
    margin-top: 0;
  }

  .swiper-slide .slider-inner .swiper-content .title-area .tag {
    font-size: 25px;
  }
  .offerings-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sm-section-seperator {
    display: block;
    width: 20%;
  }
  .game-founder-section {
    margin-top: 30px;
  }
  .header-image {
    height: 50px;
  }
}
@media only screen and (min-width: 400px) and (max-width: 550px) {
  .video {
    position: relative;
    width: 96%;
    background-color: #000;
    left: 10px;
    top: 5px;
    height: 95%;
  }

  #grad_top,
  #grad_bottom {
    width: 375px;
  }
  #timeline {
    width: 100%;
    background-image: none;
  }
  #issues {
    width: 100%;
  }
  #dates {
    display: none;
    width: 60px;
    margin-top: 90px !important;
  }
  #next,
  #prev {
    display: none !important;
    position: absolute;
    left: -5%;
  }
  .offerings-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sm-section-seperator {
    display: block;
    width: 20%;
  }
  .game-founder-section {
    margin-top: 30px;
  }
  .text-overlay {
    font-size: 16px;
  }
}

@media only screen and (min-width: 550px) and (max-width: 650px) {
  .video {
    position: relative;
    width: 95%;
    background-color: #000;
    left: 15px;
    top: 8px;
    height: 94%;
  }
  #dates {
    display: none;
  }

  #grad_top,
  #grad_bottom {
    width: 440px;
  }

  #issues li {
    width: 100%;
    list-style: none;
    text-align: center;
  }
  #issues {
    width: 100%;
  }
  #timeline {
    width: 100%;
    background-image: none;
  }
  #next,
  #prev {
    display: none !important;
    position: absolute;
    left: -4.6%;
  }
  #issues li h3 {
    font-size: 14px;
  }
  .text-overlay {
    font-size: 18px;
  }
}
.sadhana {
  margin-bottom: 100px;
}
@media only screen and (min-width: 650px) and (max-width: 767px) {
  .video {
    position: relative;
    width: 95%;
    background-color: #000;
    left: 11px;
    top: 8px;
    height: 95%;
  }

  #grad_bottom {
    width: 453px;
  }

  #dates {
    width: 60px;
  }

  #next,
  #prev {
    position: absolute;
    left: -3%;
  }
  .offerings-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sm-section-seperator {
    display: block;
    width: 20%;
  }

  .game-founder-section {
    margin-top: 30px;
  }
  .header-image {
    height: 60px;
  }
  .text-overlay {
    font-size: 20px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 767px) {
  .swiper-slide .slider-inner .swiper-content .title-area .tag {
    font-size: 25px;
  }
  .swiper-container-h .slider-pagination-area {
    display: none;
  }
  .offerings-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sm-section-seperator {
    display: block;
    width: 20%;
  }
  .game-founder-section {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1000px) and (max-width: 1200px) {
  #dates {
    display: block;
    width: 125px;
  }
  #timeline {
    /* background: url("../img/dot.gif") 3px top repeat-y; */
    width: 940px;
  }
  #next,
  #prev {
    display: block !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  #dates {
    display: block;
    width: 60px;
  }
  .video {
    height: 96%;
  }

  #issues {
    width: auto;
  }

  #next,
  #prev {
    display: block !important;
  }

  aside {
    position: relative;
    background: url(../img/frame.webp);
    background-size: cover;
  }
  .swiper-slide .slider-inner .swiper-content .title-area .tag {
    font-size: 30px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 800px) {
  .video__iframe,
  .video__video_,
  .video iframe {
    left: 25px;
    position: absolute;
    top: 20px;
    border-radius: 65px;
    width: 315px;
  }

  .tantra-section {
    height: 1088px;
  }
  .tantra-section .video_frame {
    position: relative;
    width: 360px;
    height: 290px;
    background: url(../img/frame-fire.webp);
    background-size: cover;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 400px) and (max-width: 767px) {
  .header-bar-warp {
    background: url(../img/nav_small.webp) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 70px;
  }
  .slicknav_btn {
    position: relative;
    display: block;
    vertical-align: middle;
    float: left;
    padding: 0.438em 0.625em;
    line-height: 1.125em;
  }
  .user-panel a {
    padding: 12px 55px;
    font-size: 12px;
  }
  .community-panel a {
    padding: 28px 40px;
    font-size: 12px;
  }
  .main-menu {
    padding-top: 35px;
    margin-left: 25px;
  }
  .main-menu li a {
    margin-right: 10px;
    font-size: 15px;
    padding: 5px 20px;
  }
}
/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
  .col-md-5.down img {
    width: 340px;
  }
  .col-md-5.download img {
    width: 340px;
  }
  section.logo-section.text-center img {
    width: 390px;
  }
  .main-menu.primary-menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
    position: absolute;
    top: 0px;
    left: -45px;
    background: transparent;
  }
  .slicknav_btn {
    margin-right: 10px;
    background: transparent;
  }
  .slicknav_nav a:hover,
  .slicknav_nav .slicknav_row:hover {
    background: #09352b;
    color: #fff;
  }
  .slicknav_nav {
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .slicknav_nav ul {
    margin-left: 20px;
    background: #dfbc82;
    border-radius: 5px;
    padding: 10px 8px;
    margin-top: 5px;
    list-style: none !important;
    overflow: visible !important;
  }
  .slicknav_nav ul li {
    display: block !important;
    margin-bottom: 8px;
    visibility: visible !important;
  }
  
  /* Mobile dropdown styles handled in main section above */
  .slicknav_nav ul li:last-child {
    margin-bottom: 0;
  }
  .slicknav_nav ul li a {
    padding: 5px 20px !important;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #ffd99f !important;
    text-transform: uppercase;
    box-sizing: border-box;
    mix-blend-mode: normal;
    box-shadow: 0px 2.69099px 8.74571px #220604;
    border-image: linear-gradient(#eebd6e 0%, #935324 100%) 1;
    border-radius: 5px;
    border-width: 2px;
    border-style: solid;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.34)),
      linear-gradient(
        180deg,
        rgba(153, 81, 43, 0.94) 0%,
        rgba(75, 45, 25, 0.94) 100%
      ) !important;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  .slicknav_nav ul li a:hover {
    border-color: rgb(255 225 61);
    color: #e1bc82 !important;
    filter: brightness(1.5);
  }

  .logo {
    top: 90px;
    width: 88%;
  }
  .hero-item h2 {
    font-size: 70px;
  }
  .hero-item p {
    font-size: 18px;
  }
  .footer-right-pic,
  .footer-left-pic {
    display: none;
  }
  .hero-slider .owl-nav .owl-next {
    top: auto;
    bottom: 33px;
    right: 15px;
    z-index: 99;
  }
  .hero-slider .owl-dots {
    width: 100%;
    left: 0;
    padding-left: 15px;
  }
  .intro-text-box {
    margin-bottom: 40px;
  }
  .blog-item .blog-thumb {
    float: none;
    margin-right: 0;
    width: 100%;
    margin-bottom: 30px;
  }
  .sidebar {
    padding-top: 60px;
  }
  .featured-bg {
    display: none;
  }
  .featured-box {
    float: none;
    width: 100%;
  }
  .featured-box .text-box h3 {
    font-size: 45px;
  }
  .newsletter-form {
    padding-left: 0;
  }
  .newsletter-form input {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .video-text:after {
    left: 0;
  }
  .game-filter {
    text-align: center;
  }
  .game-filter li {
    margin-bottom: 5px;
  }
  .game-single-content .gs-title {
    font-size: 40px;
  }
  .review-pic img {
    min-width: 100%;
    margin-bottom: 30px;
  }
  .contact-text {
    margin-bottom: 50px;
  }
  .review-content .rating {
    position: relative;
    margin-bottom: 20px;
  }
  .review-content .rating h5 {
    text-align: left;
    padding-right: 0;
  }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
  .logo {
    top: 120px;
  }
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
  #section1 {
    height: auto !important;
    position: relative;
  }
  #section1 .wrapper {
    height: auto !important;
  }

  .header-section {
    height: 45px;
  }

  .logo {
    top: 90px;
    width: 85%;
    padding: 0 10px;
  }

  #section1::after {
    height: 60px;
  }

  /* Keep the scroll control centered on small screens to avoid overlap */
  @media (max-width: 767px) {
    #section1 a {
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      align-items: center;
    }
  }

  .maha {
    margin-top: 30px !important;
  }

  #issues li h1 {
    margin-bottom: 30px;
  }

  .header-bar-warp {
    background: url(../img/nav_small.webp) no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 60px;
  }
  .slicknav_btn {
    position: relative;
    display: block;
    vertical-align: middle;
    float: left;
    padding: 0.438em 0.625em;
    line-height: 1.125em;
  }
  .user-panel a {
    padding: 5px 22px;
    font-size: 9px;
  }
  .community-panel a {
    padding: 18px 22px;
    font-size: 9px;
  }
  .main-menu {
    padding-top: 35px;
    margin-left: 25px;
  }
  .main-menu li a {
    margin-right: 10px;
    font-size: 15px;
    padding: 5px 20px;
  }
  .newsletter-section h3 {
    color: #fffcd9;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 40px;
  }

  #dates {
    display: none;
    width: 35px;
    margin-top: 100px !important;
  }
  #issues li {
    width: 100%;
  }
  #scroll-section {
    display: flex;
    flex-direction: column;
  }

  aside {
    position: relative;
  }
  .video {
    position: relative;
    width: 95%;
    background-color: #000;
    left: 10px;
    top: 8px;
    height: 93%;
  }

  h1.text_wrap3,
  h2.text_wrap3 {
    margin-top: -32px !important;
  }
  #timeline {
    background-image: none;
    width: 100%;
    margin-top: 30px;
  }
  #next,
  #prev,
  #grad_top,
  #grad_bottom {
    display: none !important;
  }

  .disc {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .row.align-items-center {
    flex-direction: column-reverse;
    align-items: center;
  }
  .slicknav_menu {
    display: block;
    position: absolute;
    top: -6px;
    background: transparent;
  }
  .cta-group {
    position: absolute;
    top: 20px;
    right: 10px;
    gap: 4px;
  }
  .user-panel {
    float: right;
    font-weight: 500;
    color: #fff;
    margin: 0;
  }
  .community-panel {
    float: right;
    font-weight: 500;
    color: #fff;
    margin: 0;
  }
}

/* ----------------
  Blog Carousel Section
---------------------*/

#section1 .wrapper {
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  margin-top: 60px;
}

#section1 .wrapper .wrapper__video {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  z-index: 0;
}

#section1 .wrapper:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  height: 100%;
  pointer-events: none;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0) 60%
  );
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  z-index: 1;
}

.blog-carousel-section {
  padding: 60px 0;
  background: #0a0a0a;
}

.blog-carousel-section .blog-swiper {
  padding: 20px 50px 60px 50px;
}

.blog-carousel-wrapper {
  position: relative;
  margin-top: 40px;
}

.blog-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
  border-color: rgba(255, 107, 53, 0.5);
}

.blog-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.blog-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 56px;
}

.blog-card-description {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.blog-card-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 15px;
  font-style: italic;
}

.blog-card-link {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #e1b470 0%, #ffd99f 100%);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  align-self: flex-start;
}

.blog-card-link:hover {
  background: linear-gradient(135deg, #ffd99f 0%, #e1b470 100%);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(225, 180, 112, 0.4);
  color: #1a1a1a;
}

.blog-pagination {
  bottom: 20px !important;
}

.blog-pagination .swiper-pagination-bullet {
  background: #e1b470;
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.blog-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}

.blog-carousel-section .container {
  position: relative;
}

.blog-carousel-section .swiper-button-prev,
.blog-carousel-section .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
  background-color: transparent;
  width: 125px;
  height: 125px;
  z-index: 10;
  cursor: pointer;
}

.blog-carousel-section .swiper-button-prev::after,
.blog-carousel-section .swiper-button-next::after {
  content: none;
  display: none;
}

.blog-carousel-section .swiper-button-next {
  right: 0;
  background: url(../img/slider/right.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.blog-carousel-section .swiper-button-prev {
  left: 0;
  background: url(../img/slider/left.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.blog-carousel-section .swiper-button-prev:hover,
.blog-carousel-section .swiper-button-next:hover {
  background-position: center;
  opacity: 0.8;
}

.blog-carousel-section .click_img {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .blog-carousel-section .swiper-button-prev,
  .blog-carousel-section .swiper-button-next {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .blog-carousel-section .blog-swiper {
    padding: 20px 40px 60px 40px;
  }

  .blog-card-title {
    font-size: 1.2rem;
  }

  .blog-card-description {
    font-size: 0.9rem;
  }

  .blog-carousel-section .swiper-button-prev,
  .blog-carousel-section .swiper-button-next {
    width: 80px;
    height: 80px;
  }
}

/* ----------------
  Ritual History Section
---------------------*/

.ritual-history-section {
  padding: 60px 0 70px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a05 100%);
  position: relative;
  overflow: hidden;
}

.ritual-history-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(225, 180, 112, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.ritual-carousel-wrapper {
  position: relative;
  margin-top: 30px;
  z-index: 1;
}

.ritual-history-section .ritual-swiper {
  padding: 20px 50px 40px 50px;
}

.ritual-card {
  background: linear-gradient(
    135deg,
    rgba(45, 30, 15, 0.9) 0%,
    rgba(30, 20, 10, 0.95) 100%
  );
  border-radius: 20px;
  padding: 30px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px solid rgba(225, 180, 112, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ritual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(225, 180, 112, 0.1) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.ritual-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 180, 112, 0.6);
  box-shadow: 0 15px 50px rgba(225, 180, 112, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ritual-card:hover::before {
  opacity: 1;
}

.ritual-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(225, 180, 112, 0.5));
}

.ritual-text {
  font-family: 'URW Gothic', sans-serif;
  font-size: 1.1rem;
  color: #d4bf9a;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ritual-text .ritual-name {
  color: #e1b470;
  font-weight: 600;
  font-family: 'Bainsley_bold', 'URW Gothic Demi', sans-serif;
}

.ritual-text .ritual-location {
  color: #ffd99f;
  font-style: italic;
}

.ritual-text .ritual-time {
  color: #a89070;
  font-size: 0.95rem;
}

.ritual-time-ago {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

.ritual-history-section .container {
  position: relative;
}

.ritual-history-section .swiper-button-prev,
.ritual-history-section .swiper-button-next {
  position: absolute;
  top: calc(
    50% + 10px
  ); /* Adjusted for asymmetric padding (20px top, 40px bottom) */
  transform: translateY(-50%);
  transition: all 0.4s;
  background-color: transparent;
  width: 100px;
  height: 100px;
  z-index: 10;
  cursor: pointer;
}

.ritual-history-section .swiper-button-prev::after,
.ritual-history-section .swiper-button-next::after {
  content: none;
  display: none;
}

.ritual-history-section .swiper-button-next,
.ritual-history-section .ritual-next {
  right: 0;
  background: url(../img/slider/right.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.ritual-history-section .swiper-button-prev,
.ritual-history-section .ritual-prev {
  left: 0;
  background: url(../img/slider/left.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.ritual-history-section .swiper-button-prev:hover,
.ritual-history-section .swiper-button-next:hover {
  opacity: 0.8;
}

@media (max-width: 991px) {
  .ritual-history-section .swiper-button-prev,
  .ritual-history-section .swiper-button-next {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .ritual-history-section {
    padding: 40px 0 30px;
  }

  .ritual-history-section .ritual-swiper {
    padding: 15px 40px 30px 40px;
  }

  .ritual-card {
    padding: 25px 20px;
    min-height: 160px;
  }

  .ritual-text {
    font-size: 1rem;
  }

  .ritual-icon {
    font-size: 2rem;
  }

  .ritual-history-section .swiper-button-prev,
  .ritual-history-section .swiper-button-next {
    width: 60px;
    height: 60px;
    top: calc(
      50% + 7.5px
    ); /* Adjusted for asymmetric padding (15px top, 30px bottom) */
  }
}

@media (max-width: 480px) {
  .ritual-history-section .ritual-swiper {
    padding: 10px 30px 25px 30px;
  }

  .ritual-card {
    padding: 20px 15px;
    min-height: 140px;
  }

  .ritual-text {
    font-size: 0.9rem;
  }

  .ritual-history-section .swiper-button-prev,
  .ritual-history-section .swiper-button-next {
    width: 50px;
    height: 50px;
    top: calc(
      50% + 7.5px
    ); /* Adjusted for asymmetric padding (10px top, 25px bottom) */
  }
}
