*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  -webkit-overflow-scrolling: touch; /* Ensures smooth scrolling on mobile devices */
}

@font-face {
  font-family: "AbolitionTest-Regular";
  src: url("../fonts/AbolitionTest/AbolitionTest-Regular.otf");
}
/* @font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/Avenir.ttc");
} */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/AvenirLTStd-Light.otf");
}

@font-face {
  font-family: "AvenirLTStd-Book";
  src: url("../fonts/Avenir/AvenirLTStd-Book.otf");
}
@font-face {
  font-family: "AvenirLTStd-Black";
  src: url("../fonts/Avenir/AvenirLTStd-Black.otf");
}
@font-face {
  font-family: "AvenirLTStd-Medium";
  src: url("../fonts/Avenir/AvenirLTStd-Medium.otf");
}
@font-face {
  font-family: "AvenirLTStd-Roman";
  src: url("../fonts/Avenir/AvenirLTStd-Roman.otf");
}

@font-face {
  font-family: "AvenirLTStd-MediumOblique";
  src: url("../fonts/Avenir/AvenirLTStd-MediumOblique.otf");
}
@font-face {
  font-family: "GraphikBold";
  src: url("../fonts/Graphic/GraphikBold.otf");
}

/* ---------- Hero Section Start -----*/
.hero-section {
  width: 100%;
  height: 265px;
  /* height: 13.8vw; */
  background: #284a06;
}

/* // Popup :start */
.video-popup-wrapper {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
  transition: all 0.5s ease;
  animation: popupOpen 0.4s ease-out;
  background: linear-gradient(135deg, rgb(0 0 0 / 64%), rgb(0 0 0 / 44%));
  backdrop-filter: blur(10px);
}
.video-popup-wrapper > div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-popup {
  width: 100vw;
  width: fit-content;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.video-popup #closeBtn {
  display: flex;
  justify-content: end;
}

.video-popup .video-player-wrapper {
  width: 70vw;
  height: 83vh;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
  height: 0;
  /* Trick keeps the aspect ratio at 16:9 (most YouTube videos). */
  padding-bottom: 56.25%;
}
.video-popup .video-player-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.video-popup .video-player {
  display: none;
  pointer-events: auto;
}

.close-btn {
  font-size: 2rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
  border-radius: 50%;
  padding: 0px 10px;
  border: 2px solid white;
}

.close-btn:hover {
  background: gray;
  border-color: white;
}

@keyframes popupOpen {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes closeButtonAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* // Pop-up :end */

/* ------- Body Content  End ----- */
.container {
  /* padding: 4rem 7.5rem 0 7.5rem; */
  padding: 4rem;
}
.title-dec {
  display: flex;
  justify-content: start;
  align-items: center;
}
.title-dec > h2 {
  color: #d3ac6f;
  text-transform: uppercase;
  font-family: "AbolitionTest-Regular";
  font-weight: normal;

  letter-spacing: 8.96px;
  /* font-size: 4.7vw;
  line-height: 3.2vw; */
  /* font-size: 90px;
  line-height: 70px; */
  font-size: 120px;
  line-height: 70px;
}

.left-text-img-1,
.left-text-img-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  /* align-items: stretch; */
  align-items: start;
  gap: 6rem;
  /* gap: 5vw; */
}

.left-text-img-1 .text-section {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  /* gap: 2rem; */
}
.left-text-img-1 .image-section {
  flex: 1 1;
  text-align: center;
}

.left-text-img-2 .text-section {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}
.left-text-img-2 .image-section {
  /* flex: 1 1; */
  position: relative;
  background: black;
}

.text-section h2 {
  /* font-family: "Avenir"; */
  font-family: "AvenirLTStd-Black";
  margin-bottom: 2rem;
  /* line-height: 46px; */
  line-height: 1.28;
}
.text-section .bg-color {
  font-size: 36px;
  padding: 1.4rem 2rem 1.4rem 2rem;
  /* font-size: 1.6vw;
  padding: 1.2vw 2vw 1.2vw 1.4vw; */
  /* line-height: 2.4vw; */
  background: #284a06;
  color: white;
}
.text-section p {
  font-family: "AvenirLTStd-Medium";
  /* font-size: 22px;
  line-height: 34px; */
  font-size: 29px;
  line-height: 1.4;
  /* font-size: 1.15vw;
  line-height: 1.8vw; */
  text-align: justify;
}
.text-section p:not(:last-of-type) {
  margin-bottom: 2rem;
}
.image-section img {
  /* height: auto; */
}

.image-video-section {
  /* width: 714px; */
  /* height: 20.9vw; */
  height: 400px;
  overflow: hidden;
  position: relative;
}

/* style="display: none;transition: all 0.5s ease;" */

.epi-list-container .video-section {
  width: 600px;
  height: 352px;
  /* width: 32.6vw;
  height: 18.33vw; */
}
.video-player {
  display: none;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
/* div.video-player{
  display: none;
}
iframe.video-player{
  display: block;
} */
.thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-fit: fill;
  display: block;
  transition: all 0.5s ease;
}

.play-btn {
  display: block;
  right: 50% !important;
  bottom: 50% !important;
  transform: translate(50%, 50%) !important;
  /* transform: inherit !important; */
  transition: all 0.5s ease;
}

.play-btn svg {
  /* border-radius: 50%; */
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
.thumbnail-wrapper {
  width: 100%;
  height: 100%;
}
.thumbnail-title {
  /* font-family: "GraphikBold"; */
  font-family: "AvenirLTStd-Book";
  font-size: 29px;
  /* font-size: 1.45vw; */
  text-transform: uppercase;
  /* font-size: 35px; */
  color: white;
  position: absolute;
  left: 4%;
  bottom: 5%;
}
/* iframe .ytp-watermark{
  display: none !important;
} */
.title-para {
}
.title-para h2 {
  font-size: 24px;
  font-family: "Avenir";
  /* letter-spacing: 1.92px; */
  /* line-height: 35px; */
}
.title-para p {
  font-family: "Avenir";
  font-size: 22px;
  /* letter-spacing: 1.54px; */
  /* line-height: 35px; */
}
.title-para p:not(:last-of-type),
.title-para h2 {
  margin-bottom: 1.8rem;
}

/* Verticlal slider All interviews*/

/* // Tabs */
/* .tab-container{
  height: 100vh;
} */
.tab-container {
  /* width: 100%;
height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  /* gap: 2.36vw; */
}

.mobile-tabs {
  display: none;
  /* width: 100%; */
  /* position: relative; */
}

.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: "AvenirLTStd-Roman";
  padding: 14px;
  font-size: 22px;
  color: #d2ab6f;
  border: 1px solid #dcbe90;
  /* border-radius: 4px; */
  cursor: pointer;
  background: white;
}
.dropdown-toggle svg {
  width: 30px;
  height: 12px;
}
.dropdown-icon {
  fill: #333;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  /* margin: 0; */
  margin-top: 1%;
  padding: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #dcbe90;
  /* border-radius: 4px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.dropdown-menu button:not(:last-child) {
  border-bottom: 1px solid #dcbe90;
}

.dropdown-menu button {
  font-family: "AvenirLTStd-Roman";
  font-size: 22px;
  color: black;

  cursor: pointer;
  padding: 8px;
  border: none;
  width: 100%;
  height: 100%;
  background: white;
}
.dropdown-menu button.active,
.dropdown-menu button:hover {
  color: #d2ab6f;
  background: #f9f9f9;
}

/* Show the dropdown menu when the button is clicked */
.custom-dropdown.active .dropdown-menu {
  display: block;
}

/* Rotate the icon when the dropdown is active */
.custom-dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.tabs {
  width: 100%;
  /* display: flex; */
  /* border-bottom: 0.4vw solid #edf1ea; */
  /* position: relative; */
  /* justify-content: start; */
}
.tabs .splide li {
  margin: 0 !important;
}
.tabs .splide .splide__arrows {
  display: none !important;
}
.tab {
  color: #000000;
  border: none;
  background: none;
  padding: 1rem 2rem;
  font-family: "AvenirLTStd-Roman";
  font-size: 29px;
  cursor: pointer;
  position: relative;
  border-bottom: 0.4vw solid #edf1ea;
  /* bottom: -7px; */
}
.tab.act .tab:hover {
  color: white;
}

.tab.active {
  font-weight: bold;
  color: #d6b75c;
  border-bottom-color: #d6b75c;
}
.tabs-underline {
  position: absolute;
  width: full;
  width: 100%;
  height: 0.4vw;
  bottom: 0;
  background: #edf1ea;
  z-index: -1;
}
#episodesListWrapper .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* background: #dddddd; */
}
#episodesListWrapper .video-loader {
  /* display: none; */
  /* width: 84px; */
}
/* #episodesListWrapper .video-loader-container > div{
  align-items: center;
  background: #dddddd;
} */
#episodesListWrapper .video-loader {
  /* background: conic-gradient(#0000 10%, #2d5b0d) content-box; */
}
#episodesList {
  /* max-height: 2106px; */
  /* max-height: 2206px; */
  position: relative;
  /* overflow-y: hidden; */
  /* overflow-y: auto; */
  -webkit-overflow-scrolling: touch;
}
#episodesList.scrollable {
  overflow-y: scroll; /* Apply scrollbar when class is added */
}
.epi-list-container li {
  animation: fadeInList 1s ease-in !important;
}
@keyframes fadeInList {
  0% {
    opacity: 0;
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.play-btn svg {
  width: 4vw !important;
  height: 4vw !important;
}
/* --------------Scrollbar Start----------------- */
/* For modern browsers with scrollbar pseudo-elements */

/* .epi-list-container::-webkit-scrollbar {
  width: 10px;
}

.epi-list-container::-webkit-scrollbar-track {
  background: #f0f0f0; 
  border-radius: 10px;
}

.epi-list-container::-webkit-scrollbar-thumb {
  background: linear-gradient(
    90deg,
    #00a388,
    #00d4ff
  ); 
  border-radius: 10px; 
  border: 2px solid #f0f0f0; 
}

.epi-list-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    90deg,
    #00d4ff,
    #00a388
  ); 
}

.epi-list-container::-webkit-scrollbar-corner {
  background: transparent; 
}


.epi-list-container {
  scrollbar-width: thin; 
  scrollbar-color: linear-gradient(90deg, #00a388, #00d4ff) #f0f0f0; 
}

.epi-list-container {

}
.epi-list-container::-webkit-scrollbar-button {
  display: none;
} */
/* --------------Scrollbar End----------------- */

#epiListItemDots {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  margin-top: 2rem;
}
/* // slider */
.episodes-scroll,
.episodes-scroll .splide__track,
.episodes-scroll .scroll-item {
  height: 100%;
}
.slide-item {
  /* display: flex;
  justify-content: space-between;
  align-items: flex-start; */
  /* padding: 20px; */
  /* background: #f4f4f4; */
  background: #efefef;
  /* border-left: 10px solid #284a06; */
  border-left: 0.54vw solid #284a06;
  /* padding-left: 4rem; */
}
.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5rem 0 5rem 5rem;
  /* padding: 82.56px 0 82.56px 76.8px; */
  /* padding: 3.3vw 0 3.3vw 4vw; */
  gap: 6rem;
}

.content-section {
  flex: 1;
  /* padding-top: 2.5rem; */
  /* padding: 2.5rem 8rem 0rem 4rem; */
}

.content-section h2 {
  /* font-family: "Avenir"; */
  font-family: "AvenirLTStd-Black";
  font-size: 36px;
  /* font-size: 1.89vw; */
  color: #272727;
  /* font-weight: 900; */
  margin-bottom: 1.6rem;
  padding-right: 3rem;
}

.content-section p {
  /* font-family: "Avenir"; */
  font-family: "AvenirLTStd-Medium";
  /* font-size: 22px;
  line-height: 34px; */
  /* font-size: 1.15vw;
  line-height: 1.8vw; */
  color: #272727;
  font-size: 29px;
  line-height: 1.4;
  text-align: justify;
}
.episode-button {
  margin-top: 2.5rem;
  /* font-family: "Avenir"; */
  font-family: "AvenirLTStd-Medium";
  display: inline-block;
  /* margin-top: 2rem;
  padding: 16px 20px;
  font-size: 20px; */
  /* margin-top: 1.65vw; */
  padding: 16px 20px;
  /* font-size: 1.042vw; */
  font-size: 28px;
  /* padding: 0.6rem 4rem 0.6rem 1rem; */
  border: 1px solid #d3ac6f;
  background-color: white;
  color: #000000;
  cursor: pointer;
  text-decoration: none;
  /* border-radius: 4px; */
  transition: all 0.5s ease;
}

.episode-button:hover {
  background-color: #333;
  color: white;
}
.video-section {
  /* flex: 1 1; */
  position: relative;
  background: black;
}
.video-section svg {
  width: 55.79px !important;
  height: 55.79px !important;
}

.epi-list-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* gap: 4rem; */
  gap: 2.36vw;
}
.epi-list-container li {
  list-style: none;
}
.epi-list-container li:has(.item-not-found) {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.epiListItemDots {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dost-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.dost-wrapper .dots {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #d8cfc0;
  cursor: pointer;
  /* border: 1px solid black; */
}
.dost-wrapper .dots.active {
  background: #d3ac6f;
}
.arrow-up-wrapper {
  /* margin-top: 2rem; */
  margin-top: 1.65vw;
  width: 100%;
  display: flex;
  justify-content: end;
}
.arrow-up {
  /* border-radius: 50%; */
  cursor: pointer;
}

.arrow-up svg {
  width: 48px;
  height: 48px;
}

.arrow-up:active svg circle {
  fill: rgb(189, 186, 186);
}

@media screen and (max-width: 1600px) {
  .title-dec > h2 {
    font-size: 100px;
    line-height: 60px;
  }
  .text-section .bg-color,
  .content-section h2 {
    font-size: 34px;
  }
  .text-section p,
  .content-section p {
    font-size: 24px;
  }
  .tab {
    font-size: 26px;
    /* bottom: -5px; */
  }
  .tab-container {
    gap: 3rem;
  }
  .content-wrapper {
    padding: 4rem 0 4rem 4rem;
    gap: 4rem;
  }
  .left-text-img-2 {
    gap: 4rem;
  }

  .thumbnail-title {
    font-size: 24px;
  }
  .episode-button {
    font-size: 22px;
    padding: 14px 16px;
  }
  .image-video-section {
    height: 370px;
  }
  .epi-list-container .video-section {
    width: auto;
    height: 320px;
  }
  .video-popup .video-player-wrapper {
    width: 80vw;
  }
}
@media screen and (max-width: 1500px) {
  .container {
    padding: 4rem 0rem;
  }
}
@media screen and (max-width: 1440px) {
  .image-video-section {
    height: 350px;
  }
  .epi-list-container .video-section {
    height: 310px;
  }
  .spacer-7 {
    margin: 5rem 0 !important;
  }
  .video-popup .video-player-wrapper {
    width: 90vw;
  }
}
@media screen and (max-width: 1360px) {
  .inner_container {
    padding: 0 2rem !important;
  }
  .content-wrapper {
    padding: 3rem 0 3rem 3rem;
  }
}
@media screen and (max-width: 1280px) {
  /* .hero-section {
    height: 14.8vw;
  } */
  /* .container {
    padding: 4rem 3.5rem 0 3.5rem;
  } */
  .title-dec > h2 {
    font-size: 90px;
    line-height: 60px;
  }

  .text-section .bg-color,
  .content-section h2 {
    font-size: 28px;
  }
  .text-section .bg-color {
    padding: 1rem 1.4rem 1rem 1.4rem;
  }
  .text-section p,
  .content-section p {
    font-size: 22px;
  }
  .tab {
    font-size: 22px;
  }
  .episode-button {
    font-size: 20px;
    padding: 12px 16px;
  }
  .hero-section {
    height: 224px;
  }
}

@media screen and (max-width: 1200px) {
  .image-video-section {
    height: 310px;
  }
  .epi-list-container .video-section {
    height: 280px;
  }
}

@media screen and (max-width: 1100px) {
  .image-video-section {
    height: 280px;
  }
  .epi-list-container .video-section {
    height: 250px;
  }
  .left-text-img-2,
  .content-wrapper {
    gap: 2rem;
  }
  .spacer-5 {
    margin: 4rem 0 !important;
  }
  .content-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
}
@media screen and (max-width: 1040px) {
  .tab {
    padding: 1rem 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .left-text-img-2,
  .content-wrapper {
    flex-direction: column;
  }

  .content-wrapper {
    padding: 2rem;
  }
  .image-video-section,
  .epi-list-container .video-section {
    height: auto;
  }
  #episodesList {
    max-height: fit-content;
  }
  .play-btn svg {
    width: 6vw !important;
    height: 6vw !important;
  }
  .image-video-section,
  .epi-list-container .video-section {
    width: 100%;
  }
  .content-wrapper {
    padding: 0rem;
    gap: 0;
  }
  .content-section {
    padding: 2rem;
  }
  .slide-item {
    border: none;
  }
  .epi-list-container {
    gap: 4.36vw;
  }
}
@media screen and (max-width: 980px) {
  .title-dec > h2 {
    font-size: 60px;
  }
  .text-section .bg-color,
  .content-section h2 {
    font-size: 24px;
  }
  .text-section p,
  .content-section p {
    font-size: 20px;
  }
  .tab {
    font-size: 21px;
    /* bottom: -3px; */
  }
  .episode-button {
    font-size: 18px;
  }
  .arrow-up svg {
    width: 38px;
    height: 38px;
  }
  .container {
    padding: 2rem 0rem;
  }
  .spacer-7 {
    margin: 3rem 0 !important;
  }

  .slide-item {
    border: none;
  }
  .hero-section {
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .tabs {
    display: none;
  }
  .mobile-tabs {
    display: block;
  }
  .tab-container {
    gap: 2.5rem;
  }
  .episode-button {
    margin-top: 1.5rem;
  }
  .text-section p,
  .content-section p {
    font-size: 16px;
  }
  .dropdown-toggle {
    padding: 1rem 2rem;
    font-size: 22px;
  }
  .content-section p {
    text-align: left;
  }
  .episode-button {
    font-size: 17px;
  }
  .spacer-4 {
    margin: 2rem 0 !important;
  }
  .thumbnail-title {
    font-size: 22px;
  }
  .mobile-menu a {
    font-size: 22px;
  }
  .mobile-menu li {
    margin: 16px 0;
    padding: 14px 0;
  }
  .close-btn {
    font-size: 1.8rem;
    padding: 0px 9px;
  }
  .dropdown-menu button {
    font-size: 20px;
  }
  .hero-section {
    height: 114px;
  }
}

@media screen and (max-width: 680px) {
  .mobile-menu a {
    font-size: 20px;
  }
  .text-section .bg-color,
  .content-section h2 {
    font-size: 22px;
  }
  .dropdown-toggle {
    padding: 1rem 2rem;
    font-size: 20px;
  }
  .episode-button {
    font-size: 16px;
  }
  .dropdown-toggle {
    padding: 0.8rem 1rem;
  }
  .dropdown-menu button {
    font-size: 18px;
    padding: 10px;
  }
  .content-section {
    padding: 1.6rem 1rem;
  }
  .play-btn svg {
    width: 11vw !important;
    height: 11vw !important;
  }
}

@media screen and (max-width: 480px) {
  .title-dec > h2 {
    font-size: 50px;
    letter-spacing: 4.96px;
  }
  .text-section .bg-color,
  .content-section h2 {
    font-size: 18px;
  }
  .inner_container {
    padding: 0 1rem !important;
  }
  .text-section .bg-color {
    padding: 1rem;
  }
  .text-section p,
  .content-section p {
    font-size: 14px;
  }
  .text-section h2 {
    margin-bottom: 1.6rem;
  }
  .thumbnail-title {
    font-size: 18px;
  }
  .spacer-5 {
    margin: 3rem 0 !important;
  }
  .tab-container {
    gap: 1.6rem;
  }
  .dropdown-toggle,
  .text-section .bg-color,
  .content-section h2 {
    font-size: 18px;
  }
  .episode-button {
    font-size: 13px;
  }
  .arrow-up-wrapper {
    margin-top: 5.65vw;
  }
  .arrow-up svg {
    width: 34px;
    height: 34px;
  }
  .container {
    padding: 1rem 0rem;
  }
  /* .hero-section {
    height: 189px;
} */
  .dropdown-toggle svg {
    width: 20px;
    height: 10px;
  }
  .epi-list-container {
    gap: 8.36vw;
  }
  .spacer-7 {
    margin: 2rem 0 !important;
  }
  .video-loader {
    width: 10px;
  }
  .video-popup .video-player-wrapper {
    width: 96vw;
    height: 40vh;
  }
  /* .inner_container {
  padding: 0 1rem !important;
} */
  .hero-section {
    height: 94px;
  }
}
