@import url("//fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("../../ajax/libs/font-awesome/6.6.0/css/all.min.css");
@media (max-width: 991.98px) {
  .mobile_toggler {
    display: block !important;
    flex: 0;
  }
  .search_section .close_section{
     margin-top:-40px;
  }
  .menu_link {
    display: none !important;
  }
  .topbar_menu {
    display: none !important;
  }
  .header_items .main_logo {
    margin: 0 auto;
  }
  .column-9, .column-3 {
    width: 100% !important;
  }
  .row {
    display: block !important;
  }
  .footer_section {
    text-align: center;
  }
  .footer_section h4 {
    margin: 0 auto;
  }
  .blog_banner_section {
    height: 150px !important;
  }
  .carousel-inner {
    height: 150px !important;
  }
  .carousel-inner .carousel-item {
    height: 150px !important;
  }
  .footer_logo{
      margin:0 auto;
  }
  .list_items_big .artist_section .artist_details p{
      display:none;
  }
  .list_items_big .artist_section .artist_details button a{
      font-size:12px !important;
  }
  .list_items_big .artist_section .artist_details h5{
      font-size:14px !important;
  }
  .list_items_big .list_item .artist_image{
      width:85px !important;
  }
}
.latest-posts {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
.load-more-container {
    text-align: center; /* Center-aligns the button */
    margin-top: 20px; /* Adds some space above the button */
}
#load-more {
    padding: 10px 20px;
    background-color: #6d6d6d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#load-more:hover {
    background-color: #262626; /* Darkens the button on hover */
}

#load-more:disabled {
    background-color: #d3d3d3; /* Light grey color for disabled button */
    color: #888; /* Slightly darker grey for the text */
    cursor: not-allowed; /* Change cursor to indicate it's disabled */
}

.post-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.post {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    flex-basis: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post img {
    width: 100%;
    height: auto;
}

.post-content {
    padding: 15px;
}

.post h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
}

.post p {
    color: #666;
    font-size: 0.9em;
}

.post:hover {
    transform: translateY(-5px);
}

@media (max-width: 900px) {
    .post {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .post {
        flex-basis: 100%;
    }
}
body {
  margin: 0;
  padding: 0;
  font-family: "Lexend", sans-serif;
  background-color: #e6e6e6 !important;
}

ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

li {
  list-style: none;
}

a {
  text-decoration: none !important;
  color: #ff1c1c !important;
  font-family: "Lexend", sans-serif;
}

.container {
  width: 98%;
  margin: 0 auto;
  padding: 0;
}

.space {
  margin: 3rem 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-family: "Lexend", sans-serif;
}

button {
  background-color: black;
  color: white;
  padding: 5px 10px;
  margin: 5px 0;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Lexend", sans-serif !important;
  font-size: 14px;
}

.card {
  border: none !important;
}

.loader_container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader_container .loader_content .loading_image {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}
.loader_container .loader_content .loading_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.breadcumbs {
  margin-top: 15px;
}
.breadcumbs .breadcumbs_list {
  display: flex;
  list-style: none;
  padding: 0;
}
.breadcumbs .breadcumbs_list li {
  margin-right: 16px;
  position: relative;
  font-size: 12px;
}
.breadcumbs .breadcumbs_list li::before {
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ff1c1c;
  margin-right: 10px;
  font-size: 10px;
  position: absolute;
  top: 3px;
  left: -13px;
  display: none;
}
.breadcumbs .breadcumbs_list li:not(:first-child)::before {
  display: inline-block;
}
.breadcumbs .breadcumbs_list li a {
  color: #ff1c1c;
  text-decoration: none;
  font-size: 12px;
}

.navigation .topbar_menu {
  background-color: #202020;
  color: white;
  height: 45px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.navigation .primary_menu {
  background-color: #000000;
  display: flex;
  height: 60px;
  align-items: center;
  color: #ffffff;
}
.navigation .primary_menu .mobile_toggler {
  font-size: 28px;
  display: none;
  color: white;
  cursor: pointer;
  transition: all ease 0.5s;
}
.navigation .primary_menu .mobile_toggler:hover {
  color: #ff1c1c;
}
.navigation .header_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation .main_logo {
  display: flex;
  align-items: center;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 35px;
  font-style: normal;
  justify-content: center;
}
.navigation .menu_link {
  font-family: "Lexend", sans-serif;
}
.navigation .menu_link .menu_items {
  display: flex;
  margin-bottom: 0;
}
.navigation .menu_link .menu_items li {
  margin: 0 10px;
}
.navigation .menu_link .menu_items li a {
  color: white !important;
}
.navigation .menu_link .menu_items li a svg {
  width: 25px;
  height: 25px;
}

.mobile_menu {
  background-color: #000000;
  z-index: 999;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  height: 100vh;
}
.mobile_menu .menu_content {
  margin-top: 20px;
}
.mobile_menu .menu_content .mobile_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile_menu .menu_content .mobile_header .main_logo {
  font-size: 30px;
  margin: 0 auto;
  font-weight: 600;
}
.mobile_menu .menu_content .mobile_header .close_mobile_menu {
  font-size: 30px;
  cursor: pointer;
  transition: all ease 0.5s;
}
.mobile_menu .menu_content .mobile_header .close_mobile_menu:hover {
  color: #ff1c1c;
}
.mobile_menu .menu_content .mobile_menu_list {
  margin-top: 20px;
}
.mobile_menu .menu_content .mobile_menu_list li a {
  display: block;
  color: #ffffff;
  width: 90%;
  padding: 10px 5px;
  margin-top: 5px;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.mobile_menu .menu_content .mobile_menu_list li a:hover {
  background-color: #222222;
  color: #ff1c1c;
}
.mobile_menu.active {
  transform: translateX(0);
}

.list_items_big {
  margin: 0;
  padding: 0;
  width: 100%;
}
.list_items_big .list_item {
  margin: 15px 0;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.list_items_big .list_item:first-child {
  margin-top: 0;
}
.list_items_big .list_item .artist_image {
  width: 180px;
  aspect-ratio: 1;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 10px;
}
.list_items_big .list_item .artist_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_items_big .list_item .artist_details {
  flex: 1;
}
.list_items_big .list_item .artist_details a {
  color: #ff1c1c;
}
.list_items_big .list_item .artist_details .primary_btn {
  background-color: #000000;
  color: #ffffff;
}
.list_items_big .list_item .artist_details .primary_btn a {
  color: #ffffff;
}

.list_items_small {
  margin: 0;
  padding: 0;
  width: 100%;
}
.list_items_small .list_item {
  margin: 5px 0;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.list_items_small .list_item .artist_image {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 10px;
}
.list_items_small .list_item .artist_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list_items_small .list_item .artist_details {
  flex: 1;
}
.list_items_small .list_item .artist_details a {
  color: #ff1c1c;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pagination a {
  padding: 10px 15px;
  background-color: #000000;
  border-radius: 5px;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  color: white !important;
}
.pagination a.active {
  background-color: #ff1c1c;
  color: white !important;
  border: 1px solid #ff1c1c;
}

.sidebar_section .section {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 25px;
}
.sidebar_section .section h4 {
  text-align: center;
  background-color: black;
  color: white;
  padding: 10px;
}

.menu_items li a svg {
  width: 40px;
  height: 40px;
}

.footer_section {
  background-color: #000000;
  min-height: 450px;
  margin-top: 90px;
}
.footer_section .footer_menu h4 {
  color: #ff1c1c;
}
.footer_section .footer_menu li {
  margin: 5px 0;
}
.footer_section .footer_menu li a {
  color: #ffffff !important;
  transition: all ease 0.5s;
}
.footer_section .footer_menu li a:hover {
  color: #ff1c1c !important;
}
.footer_section .footer_menu li .artist_image {
  width: 80px;
  height: 80px;
  margin-right: 10px;
}
.footer_section .footer_menu li .artist_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer_section .footer_menu li .artist_details {
  flex: 1;
}
.footer_section .footer_menu .logo {
  font-size: 3rem;
  color: white;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
}
.footer_section .footer_menu p {
  color: white;
}
.footer_section .footer_menu .social_icons {
  display: flex;
  font-size: 20px;
}
.footer_section .footer_menu .social_icons li {
  margin: 0 10px;
}
.footer_section .footer_menu .social_icons li:first-child {
  margin: 0;
}
.footer_section .footer_menu .social_icons li a {
  color: #ffffff;
}

.copyright_section {
  background-color: #202020;
  display: flex;
  color: #ffffff;
  min-height: 60px;
  align-items: center;
}
.copyright_section .copyright {
  font-size: 18px;
}
.copyright_section a {
  color: #ff1c1c;
}
.copyright_section .menu_link, .copyright_section .menu_link1 {
  display: flex;
  justify-content: flex-end;
}
.copyright_section .menu_link li, .copyright_section .menu_link1 li {
  margin: 0 15px;
}
.copyright_section .menu_link li a, .copyright_section .menu_link1 li a {
  color: #ffffff;
}
.copyright_section .menu_link li:last-child, .copyright_section .menu_link1 li:last-child {
  margin-right: 0;
}
.copyright_section .menu_link1 {
  justify-content: center;
}

.content_section {
  margin-top: 25px;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.content_section .banner {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.content_section .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  position: absolute;
  top: 0;
}
.content_section .social_media {
  display: flex;
  justify-content: center;
}
.content_section .social_media li svg {
  width: 30px;
  height: 30px;
}
.content_section .albums_section {
  /* Then style the iframe to fit in the container div with full height and width */
}
.content_section .albums_section .songs_list .song_item {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 10px 0;
  padding: 5px;
  border-radius: 10px;
}
.content_section .albums_section table tr td img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.content_section .albums_section table tr td a {
  color: #ff1c1c;
}
.content_section .albums_section .video_container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.content_section .albums_section .responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.content_section .search_content {
  display: flex;
}
.content_section .search_content .image_area {
  width: 150px;
  aspect-ratio: 1;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 10px;
}
.content_section .search_content .image_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_section .search_content .details_area {
  flex: 1;
}
.content_section .search_content .details_area .source {
  background-color: #ff1c1c;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 5px;
  border-radius: 5px;
  color: white;
  font-size: 10px;
  margin: 0;
}
.content_section .search_content .details_area button {
  border-radius: 5px;
  border: none;
}

.space_m {
  margin-top: 45px !important;
}

.blog_banner_section {
  width: 100%;
  height: 450px;
}
.blog_banner_section .carousel-inner {
  height: 450px;
  overflow: hidden;
}
.blog_banner_section .carousel-inner .carousel-item {
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
}
.blog_banner_section .carousel-inner .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog_banner_section .carousel-inner .carousel-item h5 a {
  color: #ff1c1c;
}
.blog_banner_section .carousel-inner .carousel-item .carousel-caption {
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.3981967787) 43%);
  border: none; /* Ensure there's no border */
  padding: 0; /* Ensure no padding */
  margin: 0; /* Ensure no margin */
  box-sizing: border-box;
}
.blog_banner_section .carousel-inner .carousel-item .carousel-caption h5 {
  position: absolute;
  bottom: 90px;
  left: 15%;
  right: 15%;
}
.blog_banner_section .carousel-inner .carousel-item .carousel-caption p {
  position: absolute;
  bottom: 25px;
  left: 15%;
  right: 15%;
}

.title {
  background: #000000;
  color: #ffffff;
  padding: 10px;
  line-height: 1.3;
  border-radius: 5px;
}

.item_slider {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.item_slider .items {
  display: flex;
  transition: transform 0.5s ease;
}
.item_slider .items .item {
  position: relative;
  min-width: 250px;
  box-sizing: border-box;
  margin: 10px;
  aspect-ratio: 1;
  text-align: center;
  background-color: #f0f0f0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 10px;
  overflow: hidden;
}
.item_slider .items .item .img_box {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.item_slider .items .item .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item_slider .items .item p {
  background-color: #000000;
  padding: 10px;
  margin: 0;
  position: absolute;
  z-index: 5;
  bottom: 0;
  width: 100%;
  font-size: 0.8rem !important;
}
.item_slider .prev, .item_slider .next {
  position: absolute;
  top: 10px;
  border: none;
  font-size: 20px;
  cursor: pointer;
  background-color: #ff1c1c;
  z-index: 10;
  border-radius: 5px;
  transition: all ease 0.5s;
}
.item_slider .prev:hover, .item_slider .next:hover {
  background-color: #ffffff;
  color: #ff1c1c;
}
.item_slider .prev {
  right: 55px;
}
.item_slider .next {
  right: 10px;
}

#contact_form {
  margin-top: 40px;
}
#contact_form label {
  display: block;
  font-size: 14px;
  font-family: "Lexend";
  margin-top: 20px;
}
#contact_form input, #contact_form textarea {
  width: 100%;
  padding: 9px;
  border-radius: 6px;
  border: none;
  font-family: "Lexend";
}
#contact_form input:focus, #contact_form textarea:focus {
  outline: none;
}
#contact_form button {
  border-radius: 5px;
  margin-top: 10px;
}

.words_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.words_list .word_list_item {
  background: #dbdbdb;
  padding: 10px;
  border-radius: 13px;
  margin: 10px;
}

.error_section {
  width: 80%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 25px;
  border-radius: 10px;
  margin: 40px auto;
}
.error_section .error_image {
  display: flex;
  justify-content: center;
  margin: 10px auto;
  width: 150px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
}
.error_section .error_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.error_section .error_content {
  color: white;
  text-align: center;
  margin-top: 10px;
}

.main_search button {
  background-color: #ff1c1c;
  border: none;
  border-radius: 5px;
}

.search_section {
  position: fixed; /* Ensure it stays in place relative to the viewport */
  background-color: #000000;
  z-index: 1000;
  top: -100vh; /* Start hidden above the viewport */
  left: 0;
  width: 100vw; /* Full viewport width */
  height: 100vh; /* Full viewport height */
  display: flex; /* Use flexbox to center the content */
  align-items: center; /* Center items vertically */
  justify-content: center; /* Center items horizontally */
  flex-direction: column;
  opacity: 0; /* Start hidden */
  transition: opacity 0.5s ease, top 0.5s ease;
}
.search_section.show {
  top: 0; /* Move into view */
  opacity: 1; /* Fully visible */
}
.search_section .search_box input {
  width: 80vw;
  padding: 20px;
  background: none;
  border: none;
  border-bottom: 1px solid #ffffff;
  font-size: 24px;
  font-family: "Lexend", sans-serif;
  color: white;
}
.search_section .search_box input:focus {
  outline: none;
}
.search_section .close_section {
  font-size: 45px;
  color: #ff1c1c;
  cursor: pointer;
}
/*# sourceMappingURL=styles.css.map */