@import "https://fonts.googleapis.com/css?family=Mukta:400,500,600,700,800";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--dark);
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .bx {
  color: var(--dark)
} */

:root {
  --poppins: 'Mukta', sans-serif;
  --font: 'Mukta', sans-serif;
  --light: #F9F9F9;
  --blue: #3C91E6;
  --light-blue: #CFE8FF;
  --grey: #eee;
  --dark-grey: #AAAAAA;
  --dark: #342E37;
  --red: #DB504A;
  --yellow: rgba(11, 187, 11, 0.896);
  --light-yellow: #FFF2C6;
  --orange: #FD7238;
  --light-orange: #FFE0D3;
  --tag: #FFE0D3;
  --tag-border: #F9F9F9;
  --border: rgba(225, 225, 225, 0.981);
}

html {
  overflow-x: hidden;
}

:root[data-theme="dark"] {
  --light: #342E37;
  --dark: #F9F9F9;
  --orange: #ff851b;
  --grey: #0b0b0f;
  --tag: rgba(255, 255, 255, 0);
  --tag-border: #AAAAAA;
  --border: rgba(116, 116, 116, 0.412);
}

body {
  background: var(--grey);
  font-family: var(--font);
  /* line-height: 1.5; */
  color: var(--dark);
  font-size: 16px;
  line-height: 1.5;
}

/* Hide scrollbar on all devices */
::-webkit-scrollbar {
  display: none;
  /* Hide the scrollbar for Chrome, Safari, and Opera */
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}


@media (min-width: 600px) {
  .container {
    max-width: 580px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 990px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0px 20px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    padding: 0px;
  }
}

#sajhalekh {
  width: 100%;
  height: 100%;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0px 10px;
}

.main {
  padding-top: 75px;
}

/* main contain container */

/* Your custom CSS for the video player */
.custom-video-player {
  position: relative;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Style for the overlay container */
.overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

/* Style for the logo */
.overlay-logo {
  width: 100px;
  height: auto;
}

/* Style for the name */
.overlay-name {
  font-size: 24px;
  color: white;
  position: absolute;
  top: 20px;
  /* Adjust the top position as needed */
  left: 50%;
  transform: translateX(-50%);
}

/* Style for the play button */
.play-button {
  font-size: 32px;
  color: white;
}

/* Style for the video */
video {
  z-index: 1;
}

/* Hide video controls */
.video-js .vjs-control-bar {
  display: none;
}