body, html {
    
    background-repeat: no-repeat;
            background-size: cover;
    background-color: #1b0029 !important;
    box-sizing: 0;
    margin: auto;
    max-width: 600px;
    padding: 0;
}

.root{
	height: 100%;
	padding: 5px;
}

.logo img{
	width: 50%;
}

.logo b{
	width: 80px;
	border-radius: 20%;
	font-family: Montserrat;
    font-weight: 800;
    font-size: 30px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .12);
}

.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.col-sm-6{
	width: 50% !important;
}

.video-card{
    height: 250px;
    margin-top: 10px;
}

.video-card img{
	object-fit: cover;
	height: 100%;
	width: 100%;
	border-radius: 10px;

}

.video-card-overlay{
	display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
}

.video-card-overlay img{
	width: 2rem;
	height: 2rem;
}

.footer-download-btn{
	position: fixed;
	top: 90%;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    width: 100%;
    padding: 0px 10px;
}

.footer-download-btn a{
	width: 100%;
	background: linear-gradient(180deg, #00d047 0, #00a040 100%);
    box-shadow: 0 4px 12px -5px rgba(40, 153, 83, .12);
    border-radius: 100px;
    height: 56px;
    justify-content: center;
    align-items: center;
    display: flex;
    border: 1px solid #ffffffa1;
    font-family: Montserrat;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .12);
}

.footer-download-btn a:hover{
	color: #fff;
}

.footer-download-btn a img{
	width: 20px;
    height: auto;
    margin-right: 10px;
}


.header-back-btn{
	position: fixed;
	top: 2%;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    width: 100%;
    padding: 0px 10px;
}

.header-back-btn a{
	width: 35px;
	height: 35px;
	background: #fff;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    display: flex;
    border: 1px solid #ffffffa1;
}

.header-back-btn a:hover{
	color: #fff;
}

.header-back-btn a img{
	width: 35px;
    height: 35px;
}


/* */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  max-width: 100%;
  height: 70vh;
  min-height: 400px;
}

.arrows{
    display: none !important;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(100%);
  transition: all var(--transition-duration) ease-in-out;
  display: flex;
  align-items: flex-end;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.slide.exit-left {
  transform: translateX(-100%);
}

.slide.exit-right {
  transform: translateX(100%);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.1)
  );
  z-index: 0;
}

.slide-content {
  padding: 2rem;
  z-index: 2;
  max-width: 700px;
  margin-bottom: 30px;
}

.slide-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.slide-content p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 1rem;
}

.slide-content .author {
  font-size: 0.85rem;
  color: #aaa;
}

.controls {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 32px;
  background-color: #60a5fa;
}

.arrows {
  display: flex;
  gap: 0.5rem;
}

.arrow-btn {
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.3s;
}

.arrow-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .slide-content {
    padding: 1.5rem;
  }

  .slide-content h1 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 1.2rem;
  }

  .slide-content p {
    display: none;
  }
}

.section-container{
    padding: 10px;
    margin-top: 20px;
}

.section-heading h2{
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #75ff93;
}

.section-sub-heading h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    background: linear-gradient(85.98deg, #ffe974 10.89%, #d06cff 91.16%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-body-content {
    padding: 0 0;
}

.section-body-content p {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 100;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: rgba(255, 255, 255, .7);
    margin-top: 10px;
}

.section-content {
    margin-top: 30px;
    margin-bottom: 50px;
}
    
.main-rating-img {
    width: 100%;
}

.main-rating-img img {
    width: 100%;
    height: auto;
}


.section-content .link ul li{
    list-style: none;
}

.section-content .link ul li a{
     font-family: Montserrat;
    font-style: normal;
    font-weight: 100;
    color: #fff;
    font-size: 12px;
}