 
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
 @font-face {
    font-family: 'ITC-Bold';
    src: url('../font/ITC-Avant-Garde/ITC Avant Garde Gothic Pro-Bold.otf');
}  @font-face {
    font-family: 'ITC-Demi';
    src: url('../font/ITC-Avant-Garde/ITC Avant Garde Gothic Pro-Demi.otf');
}  @font-face {
    font-family: 'ITC-Medium';
    src: url('../font/ITC-Avant-Garde/ITC Avant Garde Gothic Pro-Medium.otf');
}  @font-face {
    font-family: 'ITC-XLt';
    src: url('../font/ITC-Avant-Garde/ITC Avant Garde Gothic Pro-XLt.otf');
} 
* { margin: 0; padding: 0; box-sizing: border-box; }
a{text-decoration: none;} 

body {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.video-sec{background: linear-gradient(180deg, #DFC5FE 80%, transparent 50%);position: relative;}
.cus-container{
    width: 90%;
    max-width: 90%;
    margin: 0 auto;}
.img-vector{    margin-top: -45px;}
.video-sec h2{color: #000;
font-family: 'ITC-Demi';
font-size: 52.15px;
font-style: normal;
font-weight: 600;
line-height: normal;letter-spacing: 2px;
text-transform: uppercase;}

.video-sec h6{color: #000;
  font-family: 'ITC-XLt';
font-size: 23.765px;
font-style: normal;
font-weight: 400;
line-height: normal;}
.video-list-sec{height: 240px;}
.video-list-sec video{width: 100%;height: 100%;object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 0 5px 1px #a1a1a1;}
    .cus-row{ 
    --bs-gutter-x: 1rem;
}
.testimonial-sec h3{color: #000;
font-family: 'ITC-Medium';
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: uppercase;}
 

@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Permanent+Marker&display=swap");

:root {
  --light-clr: #e5e5e5;
  --primary-clr: #6490f6;
  --secondary-clr: #c1daff;
  --active-clr: rgba(149, 153, 186, 0.4);
  --player-bg: rgba(5, 9, 51, 0.4);
  --scrollbar-track: rgb(79, 78, 78);
  --scrollbar-thumb: rgb(116, 116, 116);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
 
.body-sec {
  font-family: "Nunito", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height:700px; 
  background-repeat: no-repeat;
  background-size: cover;position: relative;top: -30px;
}
.main .content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;object-position: top;
  user-select: none;
}

.scrollable-section::-webkit-scrollbar {
  width: 8px; 
}
 
.scrollable-section::-webkit-scrollbar-track {
  background:  #af66e2;border-radius: 10px;
}

.scrollable-section::-webkit-scrollbar-thumb {
  background-color: #e0b8fd;  
  border-radius: 10px;
}
  
.scrollable-section::-webkit-scrollbar-thumb:hover {
  background-color: red;
}

.main .content h1 {
  font-size: clamp(0.8rem, 3vw, 0.9rem);
}

.main .content p {
  font-size: clamp(0.7rem, 3vw, 1rem);
}
 
.main {
  position: relative;
  width: 90%;
  height: 84%; 
  background: radial-gradient(circle at 50% 10%, #b07bef 0%, #392650 76%);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  overflow: hidden;
}

.main::after,
.main::before {
  content: "";
  position: absolute;
  width: 250px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: 5s ease-in-out;
}

.main::after {
  top: -3%;
  left: -5%;
  transform: scale(1);
  background-color: #5768af;
}

.main:hover::after {
  left: 85%;
  transform: scale(1.2);
  background-color: #a0acbd;
}

.main::before {
  bottom: -3%;
  right: -5%;
  transform: scale(1);
  background-color: #ab4c72;
}

.main:hover::before {
  right: 85%;
  transform: scale(1.2);
  background-color: #bda5ad;
}

/** CONTENT */

.main .content  {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 100%;
  place-items: center;
  background: rgba(53, 54, 72, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  box-shadow: 0 0.5px 0 1px rgba(255, 255, 255, 0.2) inset,
    0 1px 0 0 rgba(255, 255, 255, 0.6) inset, 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 10;
  color: var(--light-clr);
  overflow-y: auto;
  padding: 30px 30px 5px;
}

.main .content::-webkit-scrollbar {
  width: 7px;
}

.main .content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.3rem var(--scrollbar-track);
  border-radius: 40px;
  margin: 18px 0;
}

.main .content::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 0.5rem var(--scrollbar-thumb);
  background-color: var(--primary-clr);
  outline: none;
  border-radius: 40px;
}

/** PLAYLIST */

.main .content .slider-playlist {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
}

/** Slider */

.main .content .swiper {
  width: 300px;
  height: auto;    position: sticky;
    top: 0px;

}

.main .content .swiper-slide {
  display: grid;
  grid-template-rows: 4fr 1fr;
  padding: 15px;
  border-radius: 10px;
  background-color: #d3d2d6;
  box-shadow: 0 0.5px 0 1px rgba(255, 255, 255, 0.2) inset,
    0 1px 0 0 rgba(255, 255, 255, 0.6) inset, 0 4px 16px rgba(0, 0, 0, 0.1);
  user-select: none;
}

.main .content .swiper-slide img {
  aspect-ratio: 1/1;
  border-radius: 5px;
  margin-bottom: 14px;
  pointer-events: none;
}

.main .content .swiper-slide h1 {
  width: max-content;
  font-family: "Permanent Marker", serif;
  letter-spacing: 2px;
  color: #0e0e0e;
  text-transform: uppercase;
  transform: rotate(-3deg);
  margin: auto;
}

/** Playlist */

.main .content .playlist {
  width: 100%;
    overflow-y: scroll;
    height: 400px;
}

.main .content .playlist-item {
  display: grid;
  grid-template-columns: 15% 65% 15% 5%;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 8px 10px;
  margin-bottom: 15px;
      border-bottom: 2px solid #ffffff1a;
    color: #f7f7f7;
  cursor: pointer;
  user-select: none;
}

.main .content .playlist-item img {
  width: 70%;
  aspect-ratio: 1/1;
  border-radius: 5px;
  overflow: hidden;
}

.main .content .playlist-item .song p:nth-child(1) {
  font-weight: 500;
  margin-bottom: 3px;
}

.main .content .playlist-item .song p:nth-child(2) {
  font-weight: 300;
  opacity: 0.5;
}

.main .content .playlist-item i {
  font-size: 1.2rem;
  color: var(--light-clr);
}

.main .content .active-playlist-item {
  background-color: var(--active-clr);
  border-radius: 5px;
}

/** PLAYER CONTROL */

.main .content .player {
  position: sticky;
  left: 0;
  bottom: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: var(--player-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 0 0px;
  z-index: 15;
  overflow: hidden;
}

/** Player Buttons */

.main .content .controls {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
}

.main .content .controls i {
  font-size: 1.7rem;
  cursor: pointer;
  transform: scale(1);
  will-change: transform;
}

.main .content #playPauseBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  aspect-ratio: 1/1;
  margin: 5px 0;
  color: var(--primary-clr);
  outline: 0;
  background: var(--light-clr);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(5, 36, 28, 0.3);
  font-size: 1.5rem;
  transform: scale(1);
  will-change: transform;
}

.main .content #shuffleBtn:hover,
.main .content #prevBtn:hover,
.main .content #nextBtn:hover,
.main .content #playPauseBtn:hover {
  transform: scale(1.05);
}

/** Volume */

.main .content .volume {
  position: relative;
  display: flex;
  align-items: center;
}

.main .content .volume i {
  color: var(--light-clr);
  font-size: 1.2rem;
}

.main .content #volume-range {
  position: absolute;
  left: 30px;
  top: 7px;
  appearance: none;
  -webkit-appearance: none;
  width: 120px;
  height: 4px;
  background: var(--primary-clr);
  border-radius: 4px;
  cursor: pointer;
}

.main .content #volume-range::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  background: var(--light-clr);
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

/** Progress */

.main .content #progress-bar {
  appearance: none;
  -webkit-appearance: none;
  width: 90%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--light-clr),
    var(--secondary-clr),
    var(--primary-clr),
    var(--secondary-clr),
    var(--light-clr)
  );
  border-radius: 4px;
  margin: 8px 0 14px;
  cursor: pointer;
}

.main .content #progress-bar::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  background: var(--light-clr);
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

/** Media Queries */

@media (max-width: 1300px) {
  .main  {
    width: 90%;
  }

  .main .content .swiper {
    width: 270px;
  }
}

@media (max-width: 1100px) {
  .main .content {
    padding: 40px 20px 20px;
  }

  .main .content .swiper {
    width: 240px;
  }

.main .content .slider-playlist {
    grid-template-columns: 50% 50%;
  }
}

@media (max-width: 900px) {
  .main .content  {
    padding: 30px 40px 20px;
    overflow-x: hidden;
  }

  .main .content .slider-playlist {
    grid-template-columns: 100%;
  }

  .main .content .swiper {position: relative;
    margin: 0px auto 0px;
  }
.body-sec {  height: 1150px;}

  .main .content .player {
    width: 110%;
  }

.main .content #volume-range {
    width: 50px;
  }
}

@media (max-width: 580px) {
  .content.main .content  {
    overflow-x: hidden;
  }

  .main .content .swiper {
    width: 220px;
    margin: 0px auto 0px;
  }

  .main .content .playlist-item {
    margin-bottom: 10px;
  }

  .main .content .player {
    width: 95%;
  }

.main .content .controls {
    column-gap: 15px;
  }

  .main .content .controls i {
    font-size: 1.3rem;
  }
.img-vector {
    margin-top: -26px;
}
    .main .content {
        padding: 20px 10px 20px;
    }
.main .content #playPauseBtn {
    width: 40px;
    font-size: 1.2rem;
  }

  .main .content .volume i {
    font-size: 0.9rem;
  }

  .main .content #volume-range {
    left: 20px;
    top: 6px;
    width: 40px;display: none;
  }
  .video-list-sec {
    height: 201px;
}
}
.contact-sec h4{color: #000;
    font-family: 'ITC-Medium';
font-size: 26px;
font-style: normal;
font-weight: 600;
line-height: normal;letter-spacing: 1px;
text-transform: uppercase;}
.contact-sec p{color: #000; 
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 30px */
letter-spacing: 0.6px;
}


.footer {
    background: #242424;
    color: #BFBFBF;
    padding: 10px 0;
    font-size: 12px;
}

.footer a {
    color: #BFBFBF;
    transition: all 0.5s ease;
}

.footer a:hover {
    color: #ffffff;
}






@media only screen and (max-width:576px) {  
    .footer .d-flex {
        flex-direction: column;
        gap: 7px;
    }
}