* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --main-color: #ff1182;
  --blue-color: #0e1120;
  --text-color: #525252;
  --black-color: #030303;
  --white-color: #ffffff;
  --background-color: #eee6e6;
}

body,
html {
  width: 100vw;
  overflow-x: hidden;
}

h1 {
  font-family: "Inter", sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 10px 0 15px;
  text-transform: capitalize;
  font-weight: bold;
  color: #ffffff;
}

h2 {
  font-size: 30px;
  font-weight: 700;

}

h3 {
  font-size: 25px;
  font-weight: 700;
}

h4 {
  font-size: 20px;
  font-weight: 700;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

a {
  text-decoration: none;
}

/* loader css start */

.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999999;
  background-color: var(--blue-color);
}

.preloader .th-btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.preloader-inner img {
  display: block;
  margin: 0 auto 0 auto;
}

.loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  color: #fff;
  display: inline-block;
}

.loader:before,
.loader:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spinloader linear infinite;
}

.loader:after {
  color: var(--main-color);
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spinloader {

  0%,
  100% {
    box-shadow: 0.5em 0px 0 0px currentcolor;
  }

  12% {
    box-shadow: 0.5em 0.5em 0 0 currentcolor;
  }

  25% {
    box-shadow: 0 0.5em 0 0px currentcolor;
  }

  37% {
    box-shadow: -0.5em 0.5em 0 0 currentcolor;
  }

  50% {
    box-shadow: -0.5em 0 0 0 currentcolor;
  }

  62% {
    box-shadow: -0.5em -0.5em 0 0 currentcolor;
  }

  75% {
    box-shadow: 0px -0.5em 0 0 currentcolor;
  }

  87% {
    box-shadow: 0.5em -0.5em 0 0 currentcolor;
  }
}

/* loader css end */


/* main btn css start */

.main_btn {
  background: #fff;
  width: fit-content;
  padding: 12px 40px 18px 5px;
  border-radius: 7px;
  position: relative;
  border: 1px solid var(--main-color);
  box-shadow: rgba(13, 18, 27, 0.788) 5px 5px 2px 1px;
}

.main_btn a,
.main_btn button {
  font-size: 14px;
  background: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  color: var(--white-color);;
  padding: 10px 15px;
}

.main_btnlink {
  background: #fff;
  width: fit-content;
  padding: 12px 40px 18px 5px;
  border-radius: 7px;
  position: relative;
  border: 1px solid var(--main-color);
  box-shadow: rgba(13, 18, 27, 0.788) 5px 5px 2px 1px;
}

.main_btnlink a,
.main_btnlink button {
  font-size: 14px;
  background: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  color: var(--white-color);;
  padding: 10px 15px;
}

.Registration_btn {
  padding: 5px 10px 10px 5px;
}

.scrolldown-btn {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 33px;
  margin: auto;
  text-align: center;
  transform: rotate(270deg);

}

.scrolldown-btn svg path.first-path {
  animation: scrollanim 1s ease-in-out infinite;
  animation-delay: 0.8s;
}

.scrolldown-btn svg path.second-path {
  animation: scrollanim2 1s ease-in-out infinite;
}

@-webkit-keyframes scrollanim {
  0% {
    -webkit-transform: translate(0, -40px);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate(0, 0);
    opacity: 0.8;
  }
}

@-moz-keyframes scrollanim {
  0% {
    -moz-transform: translate(0, -40px);
    opacity: 0;
  }

  60% {
    -moz-transform: translate(0, 0);
    opacity: 0.8;
  }
}

@keyframes scrollanim {
  0% {
    -webkit-transform: translate(0, -40px);
    -moz-transform: translate(0, -40px);
    -ms-transform: translate(0, -40px);
    -o-transform: translate(0, -40px);
    transform: translate(0, -40px);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0.8;
  }
}

@-webkit-keyframes scrollanim2 {
  0% {
    -webkit-transform: translate(0, -40px);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate(0, 0px);
    opacity: 0.6;
  }
}

@-moz-keyframes scrollanim2 {
  0% {
    -moz-transform: translate(0, -40px);
    opacity: 0;
  }

  60% {
    -moz-transform: translate(0, 0px);
    opacity: 0.6;
  }
}

@keyframes scrollanim2 {
  0% {
    -webkit-transform: translate(0, -40px);
    -moz-transform: translate(0, -40px);
    -ms-transform: translate(0, -40px);
    -o-transform: translate(0, -40px);
    transform: translate(0, -40px);
    opacity: 0;
  }

  60% {
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
    transform: translate(0, 0px);
    opacity: 0.6;
  }
}

/* main btn css end */


/* whatshap detail css start */
.whatshapp_img {
  position: fixed;
  right: 0;
  bottom: 35px;
  background: white;
  z-index: 999;
  padding: 8px 0;
  box-shadow: rgba(26, 13, 21, 0.904) 5px 5px 2px 1px;
  overflow: hidden;
  border-style: outset;
  border-color: rgb(243, 3, 159);
}

.whatshapp_img ul li a {
  color: var(--main-color);
  font: normal 600 16px Inter;
  padding: 10px 10px;
}

.whatshapp_img ul li:nth-child(2) a {
  border-left: 2px solid #f51e9b;
  padding: 8px 8px;
  font-size: 600 18px Inter;
  position: relative;
}

.whatshapp_img ul li:nth-child(2) a:before {
  position: absolute;
  left: -10px;
  top: -8px;
  content: '';
  height: 20px;
  width: 20px;
  background: rgba(2, 116, 2, 0);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  z-index: 1000;
  animation: pulsate 1s ease-out infinite;
  -webkit-animation: pulsate 1s ease-out infinite;
}

.whatshapp_img ul li:nth-child(2) a:after {
  position: absolute;
  left: -4px;
  top: -1px;
  content: '';
  background: rgba(31, 133, 31, 0);
  z-index: 100000;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

/* whatshap detail css end */

/* sider bar start */
#wrapper {
  transition: all 0.5s ease;
  position: relative;
}

#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 250px;
  width: 0;
  height: 100%;
  margin-left: -250px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
  width: 250px;
}

.sidebar-brand {
  width: 250px;
  text-align: center;
  padding: 20px 15px;
}

.sidebar-nav {
  position: absolute;
  top: 100px;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 10px 20px;
  border-bottom: 1px solid #80808036;
}

.sidebar-nav li :hover{
  color: var(--main-color);
}

.sidebar-nav li a {
  font: normal normal 600 14px Inter;
  color: #161616;
}

.sidebar-nav>li>a:hover:before,
.sidebar-nav>li.active>a:before,
.sidebar-nav .dropdown-menu li.active>a:before {
  position: absolute;
  left: -41px;
  top: 0;
  content: '';
  height: 119%;
  width: 25px;
  background: var(--main-color);
  border-radius: 0px 5px 5px 0px;
}

.sidebar-nav>li.active>a,
.sidebar-nav .dropdown-menu li.active>a {
  position: relative;
  color: var(--main-color);
}

#navbar-wrapper .navbar-header #sidebar-toggle {
  color: var(--main-color);
  font-size: 25px;
}

.sidebar-nav li .dropdown-menu {
  position: unset !important;
  transform: translate3d(0px, 7px, 0px) !important;
  border: 0;
  border-radius: 0;
}

.sidebar-brand a img {
  width: 100%;
}

.sidebar-nav .dropdown-menu li.active>a:before {
  width: 5px;
}

/* sider bar end */


/* Age Verification Modal Start */
#custom-age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 47, 47, 0.904);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease;
  transform: scale(1.1);
  z-index: 9999;
}

.custom-modal-content {
  background: #01010f;
  padding: 45px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  width: 90%;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.custom-modal-content::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(90deg, #ff1182, #77faf3, #8890f8, #93f154, #ff1182, #f4f746, #ff1182, #40e6f1);
  background-size: 300%;
  border-radius: 30px;
  padding: 4px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#ffffff 0 0) border-box;
  mask-composite: exclude;
  -webkit-mask-composite: source-out;  
  mask-composite: exclude;
  z-index: -1;
  animation: gradient-border 3s linear infinite;
}

@keyframes gradient-border {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.custom-modal-content h5,
.custom-modal-content p,
.custom-modal-content small {
  color: var(--white-color);;
  margin-bottom: 20px;
}

.custom-modal-content h5 {
  color: var(--white-color);;
  margin-bottom: 20px;
  position: relative;
  font-size: 28px;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--main-color);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  text-decoration-style: solid;
}

.custom-modal-content h5::before,
.custom-modal-content h5::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, #ff1182, #ff4b9a, #ff1182, #ffffff);
  background-size: 5px 3px; 
  background-repeat: repeat-x;
  transform: translateY(-10%);
}

.custom-modal-content h5::before {
  left: -45%;
}

.custom-modal-content h5::after {
  right: -45%;
}

.custom-button-container {
  margin-top: 35px;
  display: flex;
  justify-content: space-around;
  gap: 25px;
}

#custom-age-verification-modal button {
  border: none;
  padding: 5px 15px;
  border-radius: 10px;
  color: var(--white-color);;
  font-weight: 600;
  cursor: pointer;
  background: var(--main-color);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5), 0 3px 6px rgba(0, 0, 0, 0.3) inset;
}

#custom-age-verification-modal button:hover,
#custom-age-verification-modal button:focus {
  background-color: #e61076;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7), 0 4px 8px rgba(0, 0, 0, 0.4) inset;
  transform: translateY(-4px);
}

#confirm-age {
  border: none;
  padding: 5px 15px;
  border-radius: 10px;
  color: var(--white-color);
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #4caf50, #66bb6a);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5), 0 3px 6px rgba(0, 0, 0, 0.3) inset;
}

#deny-age {
  border: none;
  padding: 5px 15px;
  border-radius: 10px;
  color: var(--white-color);
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #f44336, #e5739f);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5), 0 3px 6px rgba(0, 0, 0, 0.3) inset;
}

.modal-logo {
  display: block;
  margin: 0 auto 20px;
  padding: 15px;
  width: 80%;
  height: auto;
  border: 4px ridge var(--main-color);
  border-radius: 30px;
  box-shadow: 
    0 10px 20px rgba(243, 4, 135, 0.856),
}

/* Age Verification Modal End */
