#find-artist-main .section-heading {
  font-size: 35px;
}

#hero-artist {
  padding-top: 220px;
}

#hero-artist::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 86%;
  background-color: var(--secondary-clr);
  z-index: -1;
}

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

#search-wrapper {
  width: 850px;
  max-width: 90%;
  margin: 0 auto;
  gap: 20px;
  border-radius: 25px;
  border: 1px solid #efefef;
  box-shadow: var(--shadow-1);
  padding: 30px 3%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: #ffffff;
}

#search-wrapper > * {
  flex: 1;
}

#search-wrapper .input-group {
}

#search-wrapper .input-group label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--clr-heading-2);
  margin-bottom: 16px;
  display: inline-block;
}

#search-wrapper .input-group :is(input, select) {
  width: 100%;
  border-radius: 68px;
  border: 1px solid #efefef;
  height: 54px;
  display: inline-block;
  padding: 16px 20px;
}

#search-wrapper .input-group select {
}

#search-wrapper .btn.btn-green {
  max-width: 190px;
}

@media (max-width: 767px) {
  #hero-artist {
    padding-top: 190px;
  }

  #search-wrapper {
    flex-direction: column;
  }

  #search-wrapper > * {
    min-width: 100%;
  }
}

/*////////// ARTIST FILTER SECTION //////////*/
#artist-filter-wrapper {
}

#artist-filter-wrapper .content {
}

#artist-filter-wrapper .section-heading {
  left: 0;
  transform: translateX(0);
  margin-bottom: 3.2rem;
}

#artist-filter-wrapper .filter-wrapper {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px;
}

#artist-filter-wrapper .sidebar-filter {
  padding: 20px;
  border-radius: 19px;
  border: 1px solid #efefef;
}

#artist-filter-wrapper h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-heading-2);
  margin-bottom: 1.4rem;
}

#artist-filter-wrapper
  :is(.region-filter, .audience-filter, .available-filter) {
  margin-bottom: 1.6rem;
}

#artist-filter-wrapper .region-filter select {
  display: block;
  border-radius: 10px;
  border: 1px solid #efefef;
  padding: 10px;
  width: 100%;
}

#artist-filter-wrapper label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-heading-2);
  margin-bottom: 12px;
}

#artist-filter-wrapper .sidebar-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

#artist-filter-wrapper .sidebar-filter li {
  padding: 8px 15px;
  border-radius: 60px;
  border: 1px solid #bababa33;
  background-color: #f5f5f5;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  color: var(--clr-heading-2);
}

#artist-filter-wrapper .sidebar-filter li.active {
  background-color: #656565;
  color: #ffffff;
}

#artist-filter-wrapper .available-filter .input-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

#artist-filter-wrapper .available-filter .input-group:first-of-type {
  margin-bottom: 10px;
}

#artist-filter-wrapper .available-filter .input-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-gray);
  margin-bottom: 0;
}

#artist-filter-wrapper .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2rem;
}

#artist-filter-wrapper .btn-group .button {
  font-size: 13px;
  border-radius: 50px;
  border: 1px solid #dfdfdf;
  text-align: center;
  padding: 10px 14px;
  height: 42px;
  font-weight: 500;
  display: inline-block;
  color: var(--clr-heading-2);
  cursor: pointer;
}

#artist-filter-wrapper .btn-group .button.active {
  background-color: var(--secondary-clr);
  color: #ffffff;
}

#artist-filter-wrapper .map-area {
  width: 100%;
}

#artist-filter-wrapper .artist-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

#artist-filter-wrapper .artist-card {
  border-radius: 19px;
  border: 1px solid #efefef;
  padding: 14px 14px 20px 14px;
  display: flex;
  flex-direction: column;
}

#artist-filter-wrapper .artist-pic {
  height: 190px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

#artist-filter-wrapper .artist-name {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 6px;
}

#artist-filter-wrapper .artist-country {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

#artist-filter-wrapper .artist-sessions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

#artist-filter-wrapper .artist-sessions li {
  border: 1px solid #bababa33;
  background-color: #efefef;
  padding: 5px 14px;
  border-radius: 60px;
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-gray);
  line-height: 1.6;
}

#artist-filter-wrapper .artist-desc {
  color: #35353599;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 1rem;
}

#artist-filter-wrapper .artist-list .btn {
  margin-top: auto;
  width: 100%;
  min-height: auto;
  font-size: 1rem;
  height: 44px;
}

#artist-filter-wrapper .btn-wrapper a {
  color: var(--clr-gray);
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 3rem;
}

@media (max-width: 1279px) {
  #artist-filter-wrapper .artist-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 991px) {
  #artist-filter-wrapper .filter-wrapper {
    grid-template-columns: 1fr;
  }
}

/*////////// COMMUNITY REACH SECTION //////////*/

#community-reach {
}

#community-reach .content {
}

#community-reach .header-wrapper {
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#community-reach .section-heading {
  max-width: 700px;
  text-align: left;
}

#community-reach .icon-group {
  display: flex;
  gap: 12px;
}

#community-reach .icon-group li {
  background-color: var(--bg);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 28px;
  color: #ffffff;
}

/*/////////////////// partners section //////////////////*/
#find-artist-main #clients-section {
}
#find-artist-main #clients-section .section-heading {
  margin-bottom: 25px;
  text-align: left;
}

/*////////// HOW IT WORKS SECTION //////////*/
#hik-section.hik-artist {
}

/*////////// FAQ SECTION //////////*/
#faq-section .img-wrap {
}

#faq-section .left-side {
  position: relative;
}

#faq-section .pic.pic-green {
  height: 400px;
  width: 70%;
  position: relative;
}

#faq-section .pic.pic-green img {
  border-radius: var(--radius-24);
}

#faq-section .pic.pic-train {
  position: absolute;
  top: 4.2rem;
  width: 70%;
  height: 437px;
  left: 14%;
  background-color: #ffffff;
  padding: 18px 18px 80px 18px;
  transform: rotate(-6.33deg);
  box-shadow: var(--shadow-1);
}

#faq-section .faq-list {
}

#faq-section .faq-item {
  border-bottom: 1px solid #bababa;
  padding-bottom: 20px;
  cursor: pointer;
}

#faq-section .faq-item:not(:last-child) {
  margin-bottom: 2rem;
}

#faq-section .faq-item h3.question {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--clr-heading-2);
  margin-bottom: 14px;

  & span.icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #968da6;
    color: #968da6;
    font-size: 14px;
    transition: 0.6s linear;
  }
}

#faq-section .faq-item .answer {
  font-size: 16px;
  line-height: 1.5;
  color: var(--clr-gray-600);
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}

#faq-section .faq-item.active .answer {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
}

#faq-section .faq-item.active .icon {
  transform: rotate(180deg);
  background-color: var(--secondary-clr);
}
#faq-section .faq-item.active .icon i {
  color: #ffffff;
}

@media (max-width: 991px) {
  #faq-section .left-side {
    margin-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  #faq-section .pic.pic-green,
  #faq-section .pic.pic-train {
    width: 90%;
    height: 300px;
  }
}
