/*////////// HERO SECTION //////////*/
#hero-home {
  background-color: var(--secondary-clr);
  padding-bottom: 180px;
}

#hero-home .content {
  position: relative;
}

#hero-home .desc {
  font-size: 20px;
  line-height: 1.5;
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--clr-heading-1);
}

#hero-home .search-input {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 7px 10px 10px 25px;
  border-radius: 100px;
  border: 1px solid #dfdfdf;
  box-shadow: 0 35px 64px 10px #dee4dccc;

  & .input-group {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 320px;
    padding-top: 5px;

    input {
      font-size: 17px;
      width: 90%;
    }

    input::placeholder {
      color: #b9b0b0;
    }

    i {
      color: #b9b0b0;
    }
  }
}

#hero-home .pic {
  position: absolute;
  object-fit: cover;
}

#hero-home .pic-1 {
  top: 43%;
  right: -4%;
  border: 2px solid #ffffff;
  height: 89px;
  width: 89px;
  border-radius: 13px;
}
#hero-home .pic-2 {
  top: 41%;
  left: -5%;
  border: 2px solid #ffffff;
  height: 120px;
  width: 120px;
  border-radius: 18px;
}
#hero-home .pic-3 {
  bottom: -33%;
  left: 0;
  border: 5px solid #ffffff;
  height: 203px;
  width: 203px;
  border-radius: 30px;
}
#hero-home .pic-4 {
  bottom: -33%;
  right: 0;
  border: 5px solid #ffffff;
  height: 203px;
  width: 203px;
  border-radius: 30px;
}
#hero-home .pic-5 {
  bottom: 0;
  left: -8%;
  border: 2px solid #ffffff;
  height: 89px;
  width: 89px;
  border-radius: 13px;
}
#hero-home .pic-6 {
  top: -2%;
  right: -5%;
  border: 2px solid #ffffff;
  height: 120px;
  width: 120px;
  border-radius: 18px;
}

@media (max-width: 1279px) {
  #hero-home .pic {
    position: relative;
  }

  #hero-home :is(.pic-1, .pic-2, .pic-3, .pic-4, .pic-5, .pic-6) {
    height: 140px;
    width: 140px;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
	border-radius: 15px;
	border-width: 2px;  
  }

  .random-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 4rem;
  }
}

@media (max-width: 767px) {
  #hero-home {
    padding-bottom: 40px;
	  
	  .pic-5 {
		  display: none;
	  }  
  }

  #hero-home .search-input {
    max-width: 100%;
    flex-direction: column;
    gap: 16px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;

    & .input-group {
      width: 100%;
      background-color: #ffffff;
      padding: 20px;
      border-radius: 100px;
      border: 1px solid #dfdfdf;
      box-shadow: 0 35px 64px 10px #dee4dccc;
      font-size: 18px;
    }

    & .btn {
      width: 100%;
    }
  }
}

/*////////// ARTISTS HOME SECTION //////////*/
#artists-home {
}

#artists-home .section-heading {
}

#artists-home .section-description {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

#artists-home .artists-cards-content {
  /* background-color: #fafafa;
  margin: 0 4%;
  padding: 100px 10px 50px;
  border-radius: 60px; */
}

#artists-home .artists-cards-content .container {
  width: 1300px;
  padding: 100px 50px 50px;
  border-radius: 60px;
  background-color: #fafafa;
}

#artists-home .artist-list {
}

#artists-home .artist-card {
  border-radius: var(--radius-24);
  padding: 16px;
  background-color: #ffffff;
  box-shadow: 0 44px 124px #00000008;
  text-align: center;
}

#artists-home .artist-pic {
  width: 100%;
  height: 190px;
  border-radius: var(--radius-8);
  border: 1px solid #e2e0e5;
  margin-bottom: 1rem;
  overflow: hidden;
}

#artists-home .artist-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-heading-2);
  margin-bottom: 10px;
  text-transform: capitalize;
}

#artists-home .artist-desc {
  color: var(--clr-gray-600);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 2px 15px;
  border: 1px solid var(--secondary-clr);
  display: inline-block;
  border-radius: var(--radius-100);
}

#artists-home .social-group {
  gap: 10px;
}

#artists-home .social-icon {
  height: 40px;
  width: 40px;
  border: 1px solid #efefef;
  color: var(--clr-gray);
  border-radius: 50%;
}

.btn-wrap {
  /* margin-top: 4rem; */
}
.btn-wrap .btn {
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 767px) {
  #artists-home .artists-cards-content .container {
    padding: 84px 16px 36px;
    border-radius: 16px;
  }
	
	#artists-home :is(.slick-prev, .slick-next) {
		top: -40px;
	}	
}

/*////////// SERVICES SECTION //////////*/
#services-section {
}

#services-section .header-wrap {
  gap: 10px;
  align-items: start;
}

#services-section :is(.left-side, .right-side) {
  flex: 1;
}

#services-section .header-wrap .section-description {
  max-width: 460px;
  margin-left: auto;
}

#services-section .cards-container .card-item {
  padding: 30px 24px;
  text-align: left;
}

#services-section .slick-slide {
    transition: .3s linear;
}

#services-section .slick-slide:hover {
    transform: translateY(-5px);
}

@media (max-width: 767px) {
  #services-section .header-wrap {
    flex-direction: column;
  }
}

/*////////// JOIN SECTION //////////*/
#join-section {
  overflow: hidden;
}

#join-section .content {
  gap: 40px;
}

#join-section .section-description p:not(:last-child) {
  margin-bottom: 1rem;
}

#join-section .section-heading {
  max-width: 500px;
}

#join-section .left-side {
  padding: 70px 0;
}

#join-section .join-pic {
}

#join-section .right-side {
  position: relative;
}

#join-section .join-pic {
  position: absolute;
}

#join-section .pic-lg {
  background-color: #ffffff;
  padding: 18px 16px 80px 16px;
  width: 68%;
  top: 0;
  left: 0;
  transform: rotate(-6.33deg);
  box-shadow: 10px 10px 57px 3px rgba(0, 0, 0, 0.09);
}

#join-section .pic-lg img {
  height: 339px;
  width: 100%;
}

#join-section .pic-sm {
  background-color: #ffffff;
  padding: 14px 12px 60px 12px;
  width: 54%;
  bottom: 0;
  right: 0;
  transform: rotate(6.33deg);
  box-shadow: 10px 10px 70px 0 rgba(0, 0, 0, 0.05);
}

#join-section .pic-sm img {
  height: 257px;
  width: 100%;
}

#join-section .graphics-join .splatter-lines {
	height: 38px; 
	width: 170px;
	position: absolute; 
	top: 15%; 
	right: -9%; 
	z-index: -1; 
	transform: rotate(-10deg);
}

#join-section .graphics-join .green-star {
	position: absolute; 
	top: 6%; 
	right: 20%; 
	z-index: -1;
	width: 20px;
}

#join-section .graphics-join .red-star {
	position: absolute; 
	top: 29%; 
	right: 3%; 
	z-index: -1;
	width: 16px;
}

@media (max-width: 1023px) {
  #join-section .left-side {
    padding: 0 0 20px;
  }

  #join-section .right-side {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  #join-section :is(.pic-lg, .pic-sm) {
    padding: 16px;
  }

  #join-section :is(.pic-sm, .pic-lg) img {
    height: 300px;
  }

  #join-section .join-pic {
    position: relative;
    transform: rotate(0);
    width: 50%;
  }
	
	#join-section .graphics-join .splatter-lines { 
		width: 110px; 
		top: -20%; 
		right: 30%; 
	}

	#join-section .graphics-join .green-star {
		top: -12%; 
		right: 90%; 
	}

	#join-section .graphics-join .red-star {
		top: 108%;
		right: 8%; 
	}
	
}

@media (max-width: 767px) {
  #join-section .content {
    gap: 40px;
  }

  #join-section :is(.pic-sm, .pic-lg) img {
    height: 140px;
  }
}

/*////////// OPPORTUNITY CTA SECTION //////////*/
#opportunity-cta {
}

#opportunity-cta .content {
  border-radius: 24px;
  background-image: url(/wp-content/uploads/2026/05/mask-gorup.png);
  background-repeat: no-repeat;
  background-size: 68% 100%;
  background-position: 130%;
   background-color: var(--secondary-clr); 
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

#opportunity-cta .section-heading {
  margin: 0 0 20px;
  padding-right: 16px;
  color: #ffffff;
  font-size: 35px;
}

#opportunity-cta .section-description {
  color: #ffffff;
  margin-bottom: 1.7rem;
}

#opportunity-cta .left-side {
  padding: 2rem 0 2rem 5%;
  max-width: 660px;
}

@media (max-width: 1023px) {
    #opportunity-cta .content {
        background-image: none;
    }
}

@media (max-width: 639px) {
  #opportunity-cta .section-heading {
    font-size: 28px;
  }
  #opportunity-cta .left-side {
    padding: 2rem 5%;
  }
}

/*////////// IMPACT SECTION //////////*/
#impact-section {
  background-color: #fafafa;
}

#impact-section .content {
}

#impact-section .section-description {
  max-width: 770px;
  margin: 0 auto;
  text-align: center;
}

#impact-section .stats-grid {
  padding: 0 5%;
  margin-top: 4rem;
  gap: 24px;
}

#impact-section .stat-card {
  padding: 66px 30px 56px;
  border-radius: var(--radius-24);
  background-color: var(--bg);
  text-align: center;
  position: relative;
}

#impact-section .stat-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80%;
  background-color: #ffffff50;
  filter: blur(70px);
  border-radius: 50%;
}

#impact-section .stat-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 33px;
  height: 33px;
}

#impact-section .stat-value {
  color: #ffffff;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 10px;
}

#impact-section .stat-description {
  font-size: 16px;
  line-height: 1.5;
  color: #eaeaf0;
  font-weight: 500;
}

/*////////// CTA SECTION //////////*/
#cta-section {
}

#cta-section .content {
  gap: 32px;
}

#cta-section :is(.left-side, .right-side) {
  flex-direction: column;
  gap: 16px;
  padding: 40px 6%;
  border-radius: var(--radius-20);
}

#cta-section .left-side {
  background-color: #ffe8e6;
}

#cta-section .right-side {
  background-color: #ebfce5;
}

#cta-section .cta-icon {
  margin-bottom: -20px;
  width: 122px;
}

#cta-section .cta-title {
  color: var(--clr-gray);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.32;
  text-align: center;
}

#cta-section .cta-desc {
  text-align: center;
  line-height: 1.6;
}

#cta-section .right-side .cta-desc {
  max-width: 400px;
  margin: 0 auto;
}
