.btn-about-light {
  margin: 0 auto;
  bottom: 20%;
  left: 0;
  right: 0;
  padding: 5px 15px;
  font-family: Figtree-Bold;
  font-size: 25px;
  width: 200px;
  height: 80px;
  border: none;
  border-radius: 48px;
  background-color: rgba(240, 134, 5, 0.7098039216);
  color: #8f5304;
  transition: background-color 1s;
}
.btn-about-light:hover {
  background-color: #f08605;
  transition-duration: 1s;
}

.theme-switcher-light {
  width: 190px;
  padding: 5px 15px;
  margin: 25px;
  border: 0;
  border-radius: 18px;
  transition-duration: 1s;
  background-image: url(/assets/img/light_mode.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.theme-switcher-dark {
  width: 190px;
  padding: 5px 15px;
  margin: 25px;
  border: 0;
  border-radius: 18px;
  transition-duration: 1s;
  background-image: url(/assets/img/dark_mode.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.newvid-card {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e9e9e9;
  border-radius: 40px;
  padding: 20px;
  height: 100%; /* Ensure cards take full available height */
  box-sizing: border-box;
  transition-duration: 1s;
  margin: 0 auto;
  justify-content: center;
}

.vd-cards-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  width: 95%;
  margin: 0;
  flex-wrap: wrap;
}

.vd-cards {
  height: 100%;
  display: grid;
  flex-direction: column;
  align-items: center;
  background-color: #e9e9e9;
  border-radius: 40px;
  padding: 20px;
  box-sizing: border-box;
  transition-duration: 1s;
}

.main-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e9e9e9;
  border-radius: 40px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 20px;
  padding-top: 15px;
  width: 50%;
  height: 500px; /* Ensure cards take full available height */
  box-sizing: border-box;
  transition-duration: 1s;
  margin-right: 5px;
  margin-bottom: 50px;
}

body.dark {
  background-color: #141314;
  transition-duration: 1s;
}
body.dark .card {
  background-color: #1c1b1d;
  color: #fefbff;
  transition-duration: 1s;
}
body.dark h1 {
  color: #fefbff;
  transition-duration: 1s;
}
body.dark .navbar {
  background-color: #1c1b1d;
  transition-duration: 1s;
}
body.dark .navbar-li {
  background-color: #141314;
  color: #fefbff;
  transition-duration: 1s;
}
body.dark .navbar-li:hover {
  color: rgba(240, 134, 5, 0.7098039216);
}
body.dark .theme-switcher {
  background-color: #151613;
}
body.dark .theme-icon {
  color: #e9e9e9;
}
body.dark path {
  stroke: #fefbff;
}

@font-face {
  font-family: "Figtree-Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Figtree-Regular"), url("/assets/fonts/Figtree-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree-Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Figtree-Bold"), url("/assets/fonts/Figtree-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree-Black";
  font-style: normal;
  font-weight: normal;
  src: local("Figtree-Black"), url("/assets/fonts/Figtree-Black.woff2") format("woff2");
}
.main-title {
  top: 0;
  left: 0;
  right: 0;
  font-family: Figtree-Black;
  font-size: 50px;
  color: #252523;
  text-align: center;
}

.main-text {
  font-family: Figtree-Regular;
  font-size: 25px;
  color: #252523;
  margin: 50px;
}

body {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  transition-duration: 1s;
}

.container {
  display: flex;
  flex-direction: column; /* Align items vertically */
  align-items: center; /* Center items horizontally */
  padding: 20px;
  box-sizing: border-box;
  justify-content: center;
}

.logo {
  width: auto;
  height: 50px;
  display: flex;
  justify-content: center;
  padding: 15px;
}

.vl {
  border-left: solid rgba(220, 219, 222, 0.9882352941);
  height: 70px;
}

.newvid {
  font-family: Figtree-Bold;
  font-size: 45px;
  margin: 0;
  margin-bottom: 5px;
}

.ytframe {
  border-radius: 25px;
}

.newvid-hr {
  border-radius: 25px;
  width: 100%;
  height: auto;
  color: gray;
  margin-bottom: 25px;
}

.other-vids {
  font-family: Figtree-Bold;
  font-size: 35px;
  margin: 25px 15px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.navbar {
  border-radius: 25px;
  background-color: #e9e9e9;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 20px;
  margin-top: 15px;
  transition-duration: 1s;
  justify-content: center;
  align-items: center;
  position: filex;
  margin: 20px 10%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-list {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.navbar-item {
  margin-right: 15px;
  margin-left: 15px;
}

.navbar-item a {
  text-decoration: none;
  font-size: 1.1rem;
}

.navbar-li {
  padding: 5px;
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 28px;
  transition-duration: 0.3s;
  background-color: #f5f5f5;
  margin: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Figtree-Bold;
  font-size: 25px;
  text-decoration: none;
}
.navbar-li :hover {
  color: #ffaa00;
  transition-duration: 0.3s;
}

.navbar-li-active {
  padding: 5px;
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 28px;
  transition-duration: 1s;
  background-color: #f5f5f5;
  margin: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Figtree-Black;
  font-size: 25px;
  text-decoration: none;
  transition-duration: 1s;
  color: #ffaa00;
}

.navbar-li:hover {
  color: rgba(240, 134, 5, 0.7098039216);
}

.nav-txt {
  text-decoration: none;
  color: #252523;
  transition-duration: 1s;
}

.navtxt-active {
  text-decoration: none;
  color: #ffaa00;
  transition-duration: 1s;
}

.image-container {
  position: relative;
  flex-direction: column;
  align-items: center;
}

.main-img {
  width: 50%;
  height: 500px;
  border-radius: 40px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-bottom: 50px;
  margin-left: 5px;
}

.footer {
  display: grid;
  width: 100%;
}

.hrfooter {
  margin: 20px;
  color: #151613;
}

.hrfooter-cards {
  margin: 10px;
  color: #151613;
}

.ft-container {
  display: flex;
  width: auto;
  gap: 10px;
  background-color: #252523;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 20px;
  margin-top: 50px;
}

.side-by-side {
  flex: 0 1 auto; /* Default: allow the element to shrink or grow */
  width: 100%; /* Set a fixed or flexible width */
  height: 100%; /* Optional: Set a height */
  display: flex;
  align-items: start;
  justify-content: center;
  text-align: center;
  max-width: 70%;
  margin: auto;
}

.ft-card1 {
  display: flex;
  width: 70%;
  height: 100%;
  flex-direction: column;
  padding: 20px;
  font-family: Figtree-Regular;
  transition-duration: 1s;
  margin: 0;
  background-color: #151613;
  border-radius: 30px;
  margin: 10px;
  padding-bottom: 65px;
}

.ft-card2 {
  display: flex;
  width: 70%;
  height: 100%;
  flex-direction: column;
  padding: 20px;
  font-family: Figtree-Regular;
  transition-duration: 1s;
  margin: 0;
  background-color: #151613;
  border-radius: 30px;
  margin: 10px;
}

.ft-cards-lg {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 20px;
  font-family: Figtree-Regular;
  transition-duration: 1s;
  margin: 0;
  background-color: #151613;
  border-radius: 30px;
  margin: 10px;
  padding-bottom: 215px;
}

.bld-txt {
  font-family: Figtree-Bold;
  font-size: 23px;
  color: #e9e9e9;
  text-align: center;
  margin: 0;
}

.pages-fd {
  display: flex;
  align-items: center; /* Vertically aligns items */
  gap: 10px; /* Adds spacing between the image and text */
  font-family: Figtree-Regular;
  font-size: 18px;
  color: #e9e9e9;
  text-align: left; /* Aligns text within its container */
  margin: 5px 10px;
  text-decoration: none;
  transition-duration: 0.5s;
}
.pages-fd :hover {
  color: #ffaa00;
  transition-duration: 0.5s;
}

.pages-sc {
  display: flex;
  align-items: center; /* Vertically aligns items */
  gap: 10px; /* Adds spacing between the image and text */
  font-family: Figtree-Regular;
  font-size: 18px;
  color: #e9e9e9;
  text-align: left; /* Aligns text within its container */
  margin: 8px;
  text-decoration: none;
  transition-duration: 0.5s;
}
.pages-sc :hover {
  color: #ffaa00;
  transition-duration: 0.5s;
}

.ft-logos {
  fill: #ffaa00;
  height: 30px;
  margin: 0;
}

.sc-logos {
  fill: #ffaa00;
  width: 25px;
  height: 25px;
}

.faq-container {
  max-width: 50%;
  margin: 50px auto;
  padding: 15px;
  background-color: #f5f5f5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.faq-item {
  margin-bottom: 10px;
  background-color: #e9e9e9;
  border-radius: 20px;
  margin-bottom: 15px;
  padding: 0;
}

.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 20px;
  font-weight: bold;
  background-color: #e9e9e9;
  border: none;
  text-align: left;
  outline: none;
  border-radius: 15px;
  transition: background-color 0.3s;
  font-family: Figtree-Bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question:hover {
  background-color: #ffaa00;
}

.faq-answer {
  border-radius: 15px;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.3s ease-out;
  width: 95%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  font-family: Figtree-Regular;
}

.faq-answer p {
  margin: 10px 0;
  padding: 10px;
  border-left: 5px solid #ffaa00;
  font-size: 17px;
}

.faq-header {
  font-family: Figtree-Bold;
  font-size: 30px;
  text-align: center;
  background-color: #ffaa00;
  padding: 10px 0;
  margin-top: 0;
  border-radius: 20px;
}

.faq-theme {
  font-family: Figtree-Bold;
  font-size: 25px;
  text-align: left;
  background-color: #ffdd98;
  padding: 20px;
  margin-top: 0;
  border-radius: 20px;
}

/*# sourceMappingURL=style.css.map */
