@import url('https://fonts.googleapis.com/css2?family=Abel&family=Bebas+Neue&display=swap');

body {
    margin: 0!important;
    padding: 0!important;
    box-sizing: border-box!important;
    font-family: "Bebas Neue", sans-serif!important;
    letter-spacing: 0.5px!important;
    color: #000!important;
    max-width: 1010px!important;
    margin: 0 auto!important;
    background-color: #333333 !important;
    position: relative!important;
}

p,
.btn,
button {
    font-family: "Abel", sans-serif;
}

p {
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    color: #000;
}

a {
    text-decoration: none;
    line-height: initial;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 950px;
    }
}


.header {
    border-bottom: 1px solid #fff;
    position: sticky;
    top: 0;
    max-width: 1010px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 999;
}

.header_top {
    padding: 20px 0;
    position: relative;
    background: #fff;
    transition: all 0.1s linear;
}

.header.sticky .header_top {
    padding: 10px 0;
    background: #fffffff2;
}

.header_top .logo {
    text-align: center;
}

.header_top .logo a img {
    max-width: 250px;
    transition: all 0.1s linear;
}

.header.sticky .header_top .logo a img {
    max-width: 170px;
}

.header_right {
    position: absolute;
    right: 0;
    top: 23px;
    transition: all 0.1s linear;
}

.header.sticky .header_right {
    top: 7px;
}

.header_right .login a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    color: #fff;
    background: #ec008c;
    width: 100%;
    padding: 3px 11px 2px;
    line-height: initial;
    transition: all 0.2s linear;
}

.header_right .login a:hover {
    background: #ec008c;
    opacity: 0.9;
}

.header_right .login a i {
    font-size: 10px;
    margin-top: -3px;
}

.social_icon ul {
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
    margin-top: 8px;
    margin-right: 20px;
    transition: all 0.1s linear;
}

.header.sticky .social_icon ul {
    margin-top: 2px;
}

.social_icon ul li {
    list-style: none;
}

.social_icon ul li a {
    font-size: 21px;
    color: #5d5d5d;
    transition: all 0.2s linear;
}

.social_icon ul li a:hover {
    color: #ec008c;
}

.header_bottom {
    background: #ec008c;
}

.navbar {
    padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    position: relative;
    color: #fff;
    font-size: 17px;
    padding: 0;
    text-transform: uppercase;
    padding: 12px 13px;
    transition: all 0.2s linear;
}

.navbar-expand-lg .navbar-collapse {
    margin-top: 2px;
}

.navbar-expand-lg .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: #000;
    opacity: 0;
    transition: all 0.3s linear;
}

.navbar-expand-lg .navbar-nav .nav-link:hover::before {
    opacity: 1;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000005c;
    z-index: 9;
    display: none;
}

.carousel-item img {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.carousel-item {
    height: 485px;
}

.carousel-caption {
    position: relative;
    z-index: 99;
    right: 0%;
    top: 0%;
    padding: 130px 0;
    left: 0%;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-caption h2 {
    font-size: 60px;
    line-height: 59px;
    padding: 14px 40px 10px;
    background: #00000091;
    margin-bottom: 30px;
    animation: caption-left 1s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
}

@keyframes caption-left {
    0% {
        transform: translate(-2000px, 0);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.carousel-indicators {
    z-index: 99;
}

.carousel-indicators [data-bs-target] {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    opacity: 0.6;
    background-color: #000;
    border: 0;
}

.carousel-indicators .active {
    opacity: 1;
    background: #fff;
    width: 13px;
    height: 13px;
}

.carousel-caption .btn {
    animation: caption-left 1.2s 1 cubic-bezier(0.985, 0.005, 0.265, 1);
}

.btn {
    text-transform: uppercase;
    font-size: 16px;
    background: #ec008c;
    border-color: #ec008c;
    color: #fff;
    border-radius: 0;
    padding: 12px 25px;
    transition: all 0.2s linear;
}

.btn:hover {
    background: #ec008c;
    border-color: #ec008c;
    opacity: 0.9;
    color: #fff;
}

.carousel-control-next,
.carousel-control-prev {
    width: 35px;
    z-index: 99;
    height: 100px;
    top: 50%;
    opacity: 1;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.services {
    padding: 30px 0;
    background: #ec008c;
}

.services .services_inner {
    text-align: center;
    padding: 15px 0;
    position: relative;
    display: block;
}

/* 
.services_inner:before {
    content: "";
    position: absolute;
    top: 0;
    right: -19px;
    width: 7px;
    height: 100%;
    background: #fff;
} */

.services_inner.last:before {
    display: none;
}

.services .services_inner img {
    height: 116px;
    margin-bottom: 30px;
}

.services .services_inner h4 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 0;
}

.cta {
    position: relative;
    overflow: hidden;
}

.cta.white::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000096;
}

.cta .cta_inner {
    position: relative;
    z-index: 9;
    padding: 120px 0;
    text-align: center;
}

.cta.black {
    background: #fff;
}

.cta.black .cta_inner {
    padding: 70px 0;
}

.cta video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.video .cta_inner {
    padding: 100px 0;
}

h2.section_heading {
    font-size: 50px;
    margin-bottom: 15px;
    color: #000;
}

.cta.white h2.section_heading {
    color: #fff;
}

.cta .cta_inner p {
    max-width: 690px;
    margin: 0 auto;
    color: #000;
    text-align: center;
    font-size: 18px;
}

.cta.white p {
    color: #fff;
}

.cta .cta_inner .btn {
    margin-top: 20px;
}

.artists {
    padding: 60px 0;
    background: #fff;
}


.artists .artist_inner {
    text-align: center;
}

.artists .artist_inner .img {
    position: relative;
}

.artists .artist_inner .share_icon span {
    position: relative;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artists .artist_inner .share_icon span i {
    color: #fff;
    position: relative;
    z-index: 9;
    animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

@keyframes avia_pop_small {
    0% {
        transform: rotate(-175deg) scale(0.2);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}


.artists .artist_inner .share_icon span::before {
    content: "";
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.artists .artist_inner .share_icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    opacity: 0;
    transition: all 0.2s linear;
}

.artists .artist_inner .img:hover .share_icon {
    opacity: 0.7;
}

.artists .artist_inner img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.artists .artist_inner h5 {
    font-size: 24px;
    color: #ec008c;
    margin-bottom: 0;
    letter-spacing: 0;
}

.artists .artist_inner p {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    color: #ec008c;
    margin: 0;
}

.artists .artist_inner .content {
    opacity: 1;
    transition: all 0.2s linear;
    margin-top: 15px;
}

.artists .artist_inner .content:hover {
    opacity: 0.7;
}

body .swiper-button-prev,
body .swiper-button-next {
    left: 0;
    right: auto;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    top: 38%;
    color: #fff;
}

body .swiper-button-next {
    right: 0;
    left: inherit;
}

body .swiper-button-next:after,
body .swiper-button-prev:after {
    font-size: 25px;
}

body .swiper-button-next:after,
body .swiper-button-prev:after {
    font-size: 15px;
}

body .swiper-button-prev,
body .swiper-button-next {
    width: 50px;
    height: 50px;
    top: 49%;
}

.artists .artist_inner h5 {
    font-size: 22px;
}

.artists .artist_inner p {
    font-size: 16px;
}

.carousel-indicators .active,
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
}

.artists {
    padding: 30px 0 45px;
}

.artists .artist_inner {
    margin-top: 15px;
    height: calc(100% - 15px);
}

.footer {
    background: #ec008c;
    padding: 25px 0 15px;
}

.footer .footer_inner {
    text-align: center;
}

.footer .footer_inner p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    text-align:center!important;
}

.footer .footer_inner .social_icon ul {
    justify-content: center;
    margin-right: 0;
    gap: 30px;
}

.footer .footer_inner .social_icon ul a {
    color: #fff;
    font-size: 18px;
}






.filter {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.filter-wrapper {
    position: relative;
    width: fit-content;
    width: 29%;
    font-family: "Abel", sans-serif;
}

.filter-wrapper select {
    width: 100%;
    padding: 10px 14px;
    padding-right: 40px;
    border: 1px solid #ccc;
    border-radius: 0px;
    font-size: 15px;
    background-color: #f8f8f8;
    color: #333;
    appearance: none;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.filter-wrapper select:focus {
    border: 1px solid #ccc;
    box-shadow: unset;
}

.filter-wrapper select:hover {
    cursor: pointer;
    border-color: #999;
}

.filter-wrapper {
    position: relative;
}

.filter-wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: #555;
}

.filter .reset_btn,
.filter .home_reset_btn,
.filter .reset_btn1,
.filter .reset_btn2,
.filter .reset_btn3,
.filter .reset_btn4 {
    background: #000;
    color: #fff;
    border: none;
    height: unset;
    font-size: 16px;
    padding: 0px 20px;
    text-transform: uppercase;
    width: 12%;
}

.artists.music_artist .artist_inner {
    display: inline-block;
    margin-top: 40px;
    height: calc(100% - 40px);
}

.artists.music_artist .filter {
    margin-bottom: 0px;
}

.artists.music_artist .row {
    --bs-gutter-x: 60px;
}

.pagination_row {
    margin-top: 40px;
}

.pagination {
    gap: 6px;
    margin-bottom: 0;
}

.pagination .page-item.avtive .page-link {
    color: #000;
}

.pagination .page-link {
    border-radius: 50% !important;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border: 0;
    background: #f8f8f8;
    color: #969696;
    align-items: center;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
}

.pagination .page-item.avtive .page-link:hover {
    color: #000;
    background: #f8f8f8;
}

.pagination .page-link:hover {
    background: #969696;
    color: #fff;
}

.page p {
    text-align:left !important;
    font-size: 13px;
    margin: 0;
}


.inner_banner {
    position: relative;
}

.inner_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 75%;
    mix-blend-mode: multiply;
}

.inner_banner h2 {
    position: relative;
    font-size: 60px;
    line-height: 68px;
    padding: 200px 0px 20px;
    color: #ec008c;
    margin-bottom: 0px;
}

.team h2.section_heading {
    color: #ec008c;
}

.label,
.things,
.news,
.team {
    padding: 50px 0;
    background: #fff;
}

/* .things,
.news,
.team {
    padding: 20px 0 50px;
} */


.label .label_inner,
.things .things_inner,
.news .news_inner,
.team .team_inner {
    display: flex;
    align-items: center;
    margin-top: 0px;
    height: 100%;
}

.things .strech_img .things_inner,
.news .strech_img .news_inner {
    display: flex;
    align-items: start;
    gap: 15px;
    flex-direction: column;
}

.things .things_inner,
.news .news_inner,
.team .team_inner {
    margin-top: 30px;
    height: calc(100% - 30px);
}


.label .label_inner .img,
.things .things_inner .img,
.news .news_inner .img {
    position: relative;
    width: 24%;
}



.things .strech_img .things_inner .img,
.news .strech_img .news_inner .img {
    position: relative;
    width: 100%;
}

.team .team_inner .img {
    position: relative;
    width: 18%;
}

.label .label_inner .img img,
.things .things_inner .img img,
.news .news_inner .img img,
.team .team_inner .img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.things .things_inner .img img,
.news .news_inner .img img,.label .label_inner .img img {
    object-fit: contain;
}
.things .strech_img .things_inner .img img,
.news .strech_img .news_inner .img img {
    width: 100%;
    aspect-ratio: unset;
    height: auto;
}

.label .label_inner .share_icon span,
.things .things_inner .share_icon span,
.news .news_inner .share_icon span,
.team .team_inner .share_icon span {
    position: relative;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.label .label_inner .share_icon span i,
.things .things_inner .share_icon span i,
.news .news_inner .share_icon span i,
.team .team_inner .share_icon span i {
    color: #fff;
    position: relative;
    z-index: 9;
    animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

@keyframes avia_pop_small {
    0% {
        transform: rotate(-175deg) scale(0.2);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}


.label .label_inner .share_icon span::before,
.things .things_inner .share_icon span::before,
.news .news_inner .share_icon span::before,
.team .team_inner .share_icon span::before {
    content: "";
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.label .label_inner .share_icon,
.things .things_inner .share_icon,
.news .news_inner .share_icon,
.team .team_inner .share_icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    opacity: 0;
    transition: all 0.2s linear;
}

.label .label_inner .img:hover .share_icon,
.things .things_inner .img:hover .share_icon,
.news .news_inner .img:hover .share_icon,
.team .team_inner .img:hover .share_icon {
    opacity: 0.7;
}


.label .label_inner h5,
.things .things_inner h5,
.news .news_inner h5,
.team .team_inner h5 {
    font-size: 24px;
    color: #ec008c;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.team .team_inner h5 {
    margin-bottom: 3px;
}

.label .label_inner p,
.things .things_inner p,
.news .news_inner p,
.team .team_inner p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.things .things_inner p,
.news .news_inner p,
.team .team_inner p {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 0px;
}

.label .label_inner .content,
.things .things_inner .content,
.news .news_inner .content {
    opacity: 1;
    transition: all 0.2s linear;
    margin-top: 0px;
    width: 76%;
    padding-left: 60px;
}


.team .team_inner .content {
    width: 82%;
}

.team .team_inner .content p.profile {
    font-size: 16px;
    margin-bottom: 13px;
    font-weight: 600;
}

.things .things_inner .content,
.news .news_inner .content,
.team .team_inner .content {
    padding-left: 20px;
}

.things .strech_img .things_inner .content,
.news .strech_img .news_inner .content {
    padding-left: 0px;
}


.label .label_inner .content:hover h5,
.label .label_inner .content:hover p,
.things .things_inner .content:hover h5,
.things .things_inner .content:hover p,
.news .news_inner .content:hover h5,
.news .news_inner .content:hover p,
.team .team_inner .content:hover h5,
.team .team_inner .content:hover p {
    opacity: 0.7;
}

.label .label_inner .social_icon ul li a {
    color: #ec008c;
    font-size: 20px;
}

.label .label_inner .social_icon ul li a:hover {
    color: #5d5d5d;
}

.label .label_inner .social_icon ul {
    padding: 7px 0;
    border-bottom: 1px solid #00000033;
    border-top: 1px solid #00000033;
    width: fit-content;
}

.filter.two .filter-wrapper {
    width: 43%;
}


.sidebar {
    border: 2px solid #ec008c;
    margin-top: 30px;
    padding-bottom: 15px;
}

.sidebar h4 {
    background: #ec008c;
    color: #fff;
    padding: 10px 10px;
    font-size: 24px;
}

.things .sidebar .things_inner,
.news .sidebar .news_inner {
    margin-top: 15px;
    height: calc(100% - 15px);
    padding: 0 15px;
}

.things .sidebar .things_inner h5,
.news .sidebar .news_inner h5 {
    font-size: 16px;
    color: #ec008c;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.things .sidebar .things_inner .content,
.news .sidebar .news_inner .content {
    padding-left: 8px;
}

.things .sidebar .things_inner .share_icon span,
.news .sidebar .news_inner .share_icon span {
    width: 40px;
    height: 40px;
}

.things .sidebar .things_inner .share_icon span::before,
.news .sidebar .news_inner .share_icon span::before {
    width: 40px;
    height: 40px;
}


.about {
    background: #fff;
    padding: 50px 0;
}

.about .about_left {
    padding: 20px 0;
}

.about .about_left h3 {
    color: #ec008c;
    font-size: 30px;
}

.about .about_left p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.about .about_left p:last-child {
    margin-bottom: 0px;
}

.about .about_right {
    height: 100%;
}

.about .about_right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.about_discription {
    background: #fff;
    padding: 50px 0;
}

.about_discription h2.section_heading {
    color: #ec008c;
}

.about_discription p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.about_discription a {
    color: #ec008c;
}

.about_discription p:last-child {
    margin-bottom: 0px;
}

.faq {
    background: #fff;
    padding: 50px 0;
}

.faq h2.section_heading {
    color: #ec008c;
}

.faq h3 {
    color: #ec008c;
    font-size: 30px;
}

.faq p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.faq p a {
    color: #ec008c;
}

.faq ul {
    margin-bottom: 0px;
}

.faq ul li:last-child p {
    margin-bottom: 0px;
}




.contact {
    padding: 50px 0;
    background: #fff;
}

.contact .contact_inner h3 {
    color: #ec008c;
    font-size: 30px;
    margin-bottom: 20px;
}

.contact .input_box {
    margin-bottom: 20px;
}

.contact .input_box label,
.contact .checkbox span,
.contact .checkbox label {
    font-size: 16px;
    margin-bottom: 7px;
    text-transform: uppercase;
    font-family: "Abel", sans-serif;

}

.contact .checkbox {
    margin-bottom: 20px;
}

.contact .checkbox span {
    margin-right: 10px;
    display: inline;
}

.contact .checkbox label {
    text-transform: capitalize;
    margin: 0;
    display: inline;
}

.contact .input_box input,
.contact .input_box textarea {
    width: 100%;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    padding: 10px 20px;
    display: block;
}

.contact .input_box input:focus,
.contact .input_box input:focus-visible,
.contact .input_box textarea:focus,
.contact .input_box textarea:focus-visible {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    outline: none;
}



.artist_wrapper,
.client_wrapper,
.provider_wrapper {
    padding: 50px 0;
    background: #fff;
}

.artist_wrapper .artist_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.artist_wrapper .artist_top h3,
.client_wrapper .client_top h3,
.provider_wrapper .provider_top h3 {
    font-size: 30px;
    color: #ec008c;
    margin-bottom: 0;
    letter-spacing: 0;
}

.artist_wrapper .artist_top p,
.client_wrapper .client_top p,
.provider_wrapper .provider_top p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.artist_wrapper .artist_left img,
.client_wrapper .client_left img,
.provider_wrapper .provider_left img {
    margin-top: 10px;
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    border: 5px solid #ec008c;
}

.artist_wrapper .social_icon ul,
.client_wrapper .social_icon ul,
.provider_wrapper .social_icon ul {
    padding-top: 20px;
    border-top: 4px dotted gray;
    width: fit-content;
}

.artist_wrapper .social_icon ul a,
.client_wrapper .social_icon ul a,
.provider_wrapper .social_icon ul a {
    color: #ec008c;
    transition: all 0.2s linear;

}

.artist_wrapper .social_icon ul a:hover,
.client_wrapper .social_icon ul a:hover,
.provider_wrapper .social_icon ul a:hover {
    color: #000;
}

.artist_right,
.client_right,
.provider_right {
    margin-top: 7px;
}

.small_heading {
    font-size: 30px;
    color: #ec008c;
}

.artist_right h3,
.client_right h3,
.provider_right h3 {
    margin-bottom: 0;
}

.artist_right p,
.client_right p,
.provider_right p {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
}

.artist_right .link,
.client_right .link,
.provider_right .link {
    font-size: 18px;
    color: #000;
    font-family: "Abel", sans-serif;
    text-transform: none;
    margin-bottom: 20px;
    font-weight: bold;

    display: inline-block;
}

.discription {
    background: #fff;
    padding: 50px 0;
}

.discription h2.section_heading {
    color: #ec008c;
}

.discription h3 {
    color: #ec008c;
    font-size: 30px;
}


.discription p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.discription a {
    color: #ec008c;
}

.discription p:last-child {
    margin-bottom: 0px;
}

.featured.artists {
    padding: 50px 0;
}

.featured .section_heading {
    font-size: 30px;
    color: #ec008c;
}

.featured .section_heading {
    font-size: 30px;
    color: #ec008c;
}

.featured.artists .artist_inner p {
    font-weight: 600;
    text-transform: capitalize;
}

.bg {
    background: #ec008c;
}

.iframe_thumb {
    position: relative;
}

.iframe_thumb .playbutton {
    width: 160px;
    height: 160px;
    margin: auto;
    position: absolute;
    opacity: .6;
    display: block;
    z-index: 99;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 0;
}

.music_iframe {
    display: none;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}

.artist_cta {
    background: #ec008c;
    padding: 40px 0;
}

.artist_cta h3 {
    color: #fff;
}

.artist_cta ul {
    padding-left: 18px;
    margin: 0;
}

.artist_cta ul li::marker {
    color: #fff;
}

.artist_cta p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}


.about_album {
    padding: 50px 0;
    background: #fff
}


.about_album .track_list ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.about_album .track_list ul li {
    list-style: none;
}

.about_album .track_list ul li p {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    margin: 0;
    line-height: 21px;
}


.label_link .img {
    position: relative;
}

.label_link .share_icon span {
    position: relative;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.label_link .share_icon span i {
    color: #fff;
    position: relative;
    z-index: 9;
    animation: avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

.label_link .share_icon span::before {
    content: "";
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.label_link .share_icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    opacity: 0;
    transition: all 0.2s linear;
}

.label_link .img:hover .share_icon {
    opacity: 0.7;
}





.news-single-main {
    background: #fff;
    padding: 50px 0;
}

.news_wrapper {
    padding-right: 20px;
}

.news_img {
    margin-bottom: 20px;
}

.news_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news_wrapper .title h3 {
    font-size: 30px;
    color: #ec008c;
    margin-bottom: 0;
    letter-spacing: 0;
}
.news_wrapper .details {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 5px;
}
.news_wrapper .details .detail_info{
    display: flex;
    align-items: center;
    gap: 10px;
}
.news_wrapper .details .detail_info i{
    font-size: 15px;
}
.news_wrapper .details .detail_info p{
    font-style: normal;
    font-size: 15px;
}
.news-single-main .small_heading {
    font-size: 24px;
}

.news-single-main .artist_right {
    border: 2px solid #ec008c;
    margin-top: 0;
    padding: 15px;
    padding-bottom: 0;
}

.news_wrapper .title p {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    margin: 0;
}

.news_wrapper .content {
    margin-top: 30px;
}

.news_wrapper .content p {
    font-size: 16px;
    font-weight: 400;
}

.news_wrapper .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 740px;
    cursor: pointer;
    margin-top: 40px;
}

.news_wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.news_wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.news_wrapper .play-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.news_wrapper .play-button::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid #333;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.news_wrapper .video-wrapper.playing .play-button {
    display: none;
}

.tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}


.tags .btn.tag_btn {
    background: #f5f5f5;
    text-transform: capitalize;
    color: #000;
    border: 2px solid #e1e1e1;
    padding: 5px 15px;
}

.tags .btn.tag_btn:hover {
    background: #e1e1e1;
    border: 2px solid #e1e1e1;
}



.author {
    background: #fff;
    padding: 50px 0;
}

.author .author_left {
    height: 100%;
}

.author .author_left img {
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.author .social_icon ul a {
    color: #ec008c;
    transition: all 0.2s linear;
}

.author .social_icon ul a:hover {
    color: #000;
}

.author .author_right p {
    font-size: 14px;
    font-weight: 400;
}

.more_by_author {
  padding: 0px 0 50px;
    background: #f5f5f5;
}
.more_by_author .things{
    background: transparent;
}
.more_by_author .things {
    padding: 0;
}
.more_by_author .things .things_inner .img img{
    aspect-ratio: unset;
}

.bg_grey {
    background: #f5f5f5;
}


.team_single_wrapper {
    padding: 50px 0;
    background: #fff;
}

.team_single .team_single_img img {
    width: 300px;
    margin-bottom: 20px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 5px solid #ec008c;
    margin-top: 5px;
}

.team_single .content p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.team_single h5 {
    font-size: 20px;
    color: #ec008c;
}

.team_right {
    margin-top: 5px;
    margin-left: 35px;
}

.team_right h3.small_heading {
    background: #ec008c;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    padding: 4px 0;
    padding: 5px 0 1px 0;
}

.team_right .boxes {
    margin: 0 30px;
    background: #fff;
    margin-top: 20px;
    box-shadow: 2px 2px 20px #80808042;
}

.team_right .boxes h4 {
    text-transform: capitalize;
    font-size: 20px;
    background: #ec008c;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    padding: 4px 0;
    padding: 5px 0 4px 0;
}

.team_right .boxes img {
    aspect-ratio: 1/1;
    width: 70%;
    border: 1px solid #ec008c;

    display: block;

    margin: 0 auto;
    margin-top: 10px;
}

.team_right .boxes a span {
    text-transform: uppercase;
    font-size: 16px;
    color: #ec008c;
    text-align: center;
    margin-bottom: 0;
    padding: 6px 10px;
    display: block;
}

.team_right .boxes a:hover span {
    color: #000;
}


.testimonial_slider .testimonial_inner {
    padding: 15px;
    padding-bottom: 0px;
}

.testimonial_slider .testimonial_inner .stars {
    display: flex;
    align-items: center;
    grid-area: 3px;
    margin-bottom: 10px;
}

.testimonial_slider .testimonial_inner .stars i {
    font-size: 13px;
    color:#ff9b00;
}

.testimonial_slider .testimonial_inner  p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}