/*!************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./styles/landingpages/template-style.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');


:root {
   --nst-primary-color: #F14B94;
   --nst-text-color: #383737;
   --nst-white-color: #FFFFFF;
   --nst-title-color: #141414;
   --nst-gradient-primary: #F14B94;
   --nst-gradient-secondary: #7D37BB;
   --nst-gradient-yellow: #FBBC36;
   --nst-color: 241, 75, 148;
   --nst-sec-color: 125, 55, 187;
   --nst-yellow-color: 251, 188, 54;
   --transition: all 0.3s;
}

html {
   box-sizing: border-box;
}

*,
*:before,
*:after {
   box-sizing: inherit;
   font-family: 'Manrope', sans-serif;
   outline: none;
}

body {
   margin: 0;
   font-size: 16px;
   color: #383737;
   background-color: #fff;
   font-family: 'Manrope', sans-serif;
   font-weight: 400;
   line-height: 1.4;
   letter-spacing: 0px;
   font-style: normal;
}

a,
a:hover,
a:focus,
button,
button:hover {
   color: var(--nst-primary-color);
   cursor: pointer;
   text-decoration: none;
   transition: all 0.3s;
}

svg,
svg path {
   transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'Manrope', sans-serif;
}

img {
   max-width: 100%;
}

.d-none {
   display: none !important;
}

ul,
p {
   padding: 0;
   margin: 0;
   list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   margin: 0;
   padding: 0;
   text-transform: capitalize;
   line-height: 1.4;
}

iframe {
   width: 100%;
   border: none;
}

.row-reverse {
   flex-direction: row-reverse;
}

/*=============================
Font Family Css Style
=============================*/


@font-face {
   font-family: 'Manrope';
   src: url(webpack:///mini-css-extract-plugin//_next/static/media/Manrope-VariableFont_wght.3787d9a8.ttf) format('truetype');
}

/*=============================
    ScrollBar Style
=============================*/

*::-webkit-scrollbar {
   width: 8px;
   height: 8px;
}

*::-webkit-scrollbar-track {
   background-color: #f5f7f9;
   border-radius: 6px;
}

*::-webkit-scrollbar-thumb {
   background-color: var(--nst-primary-color);
   border-radius: 6px;
}

/*=============================
 Loader Style
=============================*/

.app_preloader {
   height: 100%;
   width: 100%;
   position: fixed;
   margin-top: 0px;
   top: 0px;
   z-index: 1111111111;
   background: rgba(15, 14, 14, 0.90);
}

.app_preloader.loaderout {
   display: none;
}

.app_preloader .app_loader_container {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 70px;
   height: 70px;
}

.app_preloader .app_loader_icon {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 70px;
   text-align: center;
}

.app_preloader .loader {
   width: 16px;
   height: 16px;
   border-radius: 50%;
   display: block;
   margin: 15px auto;
   position: relative;
   background: #FFF;
   box-sizing: border-box;
   animation: shadowExpandX 2s linear infinite alternate;
}

@keyframes shadowExpandX {
   0% {
      box-shadow: 0 0, 0 0;
      color: rgba(255, 255, 255, 0.2);
   }

   100% {
      box-shadow: -24px 0, 24px 0;
      color: rgba(255, 255, 255, 0.8);
   }
}

/*=============================
 Button Style
=============================*/

.nst_btn {
   background: linear-gradient(0deg, #7D37BB 0.64%, #F14B94 50.38%, #FBBC36 100.13%);
   min-width: 160px;
   height: 50px;
   border-radius: 5px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   color: var(--nst-white-color);
   padding: 0 10px;
   transition: var(--transition);
   font-size: 15px;
   font-weight: 700;
   line-height: 50px;
   letter-spacing: 0em;
   position: relative;
   border: 0;
   z-index: 1;
   transition: all cubic-bezier(.4, 0, .2, 1) .4s;
   overflow: hidden;
   text-decoration: none;
}

.nst_btn:after {
   content: "";
   position: absolute;
   left: 0;
   right: 0;
   background: rgba(255, 255, 255, 0.7);
   top: 0;
   height: 100%;
   width: 0%;
   transition: none;
   border-radius: 5px;
}

.nst_btn:hover::after {
   width: 100%;
   opacity: 0;
   transition: all 0.8s ease-out 0s;
}

.nst_btn:hover {
   box-shadow: none;
   background-color: #34555F;
}

.nst_btn:focus {
   box-shadow: none
}

.nst_btn:hover,
.nst_btn:focus {
   color: var(--nst-white-color);
}

.nst_btn:focus {
   box-shadow: none;
}

/*Gradiant With Transparent Bg Button Style*/

.nst_btn.grdnt_transp_bg_btn::after {
   content: "";
   position: absolute;
   inset: 0;
   border-radius: 6px;
   padding: 1px;
   background: linear-gradient(0deg, #7D37BB 0.64%, #F14B94 50.38%, #FBBC36 100.13%);
   -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
   -webkit-mask-composite: xor;
   mask-composite: exclude;
   transition: 0.5s all;
   z-index: -1;
   width: 100%;
}

.nst_btn.grdnt_transp_bg_btn {
   z-index: 999;
   color: #F14B94;
   border-radius: 5px;
   background: #FFF;
   box-shadow: 0px -3px 0px 0px #7D37BB inset;
}

.nst_btn.grdnt_transp_bg_btn:hover {
   background: linear-gradient(0deg, #7D37BB 0.64%, #F14B94 50.38%, #FBBC36 100.13%);
   color: #fff;
}

.nst_btn.grdnt_transp_bg_btn:hover .nst_btn_icon svg path {
   fill: #fff;
}


.link_icon {
   display: flex;
   align-items: center;
   gap: 10px;
   flex-wrap: wrap;
   font-style: normal;
   font-weight: 700;
   font-size: 14px;
   line-height: 1.4;
   color: #F14B94;
}

.nst_tm_container {
   /* max-width: 1660px; */
   margin: 0 auto;
}


/*=============================
 Common Heading Style
=============================*/

.nst_tm_sec_heading {
   position: relative;
   width: 100%;
   text-align: center;
   margin-bottom: 40px;
}

.nst_tm_sec_heading .section_pre_title {
   font-style: normal;
   font-weight: 800;
   font-size: 16px;
   line-height: 1.4;
   color: #F14B94;
   letter-spacing: 0.4em;
   text-transform: uppercase;
   margin-bottom: 5px;
   display: inline-block;
}

.nst_tm_sec_heading .section_title {
   font-style: normal;
   font-weight: 400;
   font-size: 46px;
   line-height: 1.4;
   color: #0F0E0E;
}

.nst_tm_sec_heading .section_title_pera {
   max-width: 546px;
   margin: 0 auto;
}

.nst_tm_sec_heading .section_title_pera p {
   font-style: normal;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.6;
   color: #383737;
   text-align: center;
}

/*=============================
 Section Header Style
=============================*/

.nst_tm_section_header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   margin-bottom: 50px;
}

.heading_details span {
   font-style: normal;
   font-weight: 800;
   font-size: 16px;
   line-height: 1.4;
   text-transform: uppercase;
   color: #F14B94;
   letter-spacing: 0.4em;
}

/* Our Models */

.heading_details h4 {
   font-style: normal;
   font-weight: 400;
   font-size: 46px;
   line-height: 1.4;
   color: #0F0E0E;
}

.heading_details .heading_pera p {
   font-style: normal;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.4;
   color: #383737;
}

.heading_details {
   position: relative;
   text-align: left;
}

.heading_details .heading_pera {
   max-width: 450px;
}

.nst_tm_artist_list_wrapper .hd_light_bg {
   font-style: normal;
   font-weight: 800;
   font-size: 100px;
   line-height: 1.4;
   text-transform: capitalize;
   background: linear-gradient(0deg, #7D37BB 0.64%, #F14B94 50.38%, #FBBC36 100.13%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   text-fill-color: transparent;
   opacity: 0.06;
}

.nst_tm_section_header .heading_details_right {
   text-align: right;
}

/*Flip Headre Style*/


.nst_tm_section_header.flip_header {
   flex-flow: row-reverse;
}

.nst_tm_section_header.flip_header .heading_details_right {
   text-align: left;
}

.nst_tm_section_header.flip_header .heading_details {
   text-align: right;
}

.nst_tm_section_header.flip_header .heading_details .heading_pera p {
   text-align: right;
}

.nst_tm_section_header.flip_header .heading_details .heading_pera {
   max-width: 430px;
   text-align: left;
}

/*=============================
 Header Style
=============================*/

.nst_tm_header_nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 25px 0;
}

.nst_tm_hdr_logo img {
   max-width: 165px;
   -o-object-fit: contain;
      object-fit: contain;
}

.nst_tm_header_nav ul {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 50px;
}

.nst_tm_header_nav ul li a {
   font-style: normal;
   font-weight: 500;
   font-size: 15px;
   line-height: 1.4;
   color: #383737;
   transition: 0.3s all;
}

.nst_tm_header_nav ul li a:hover {
   color: var(--nst-primary-color) !important;
}

.nst_tm_header_nav ul li a.active {
   color: var(--nst-primary-color) !important;
}

.nst_tm_header_nav ul .submenu_list a.active .menu-arrow {
   border-top: 4.8px solid var(--nst-primary-color) !important;
}

.nst_tm_header_nav .sub_menu_item.active {
   color: var(--nst-primary-color) !important;
}

.nst_tm_btn_list {
   display: flex;
   align-items: center;
   gap: 10px;
}

.nst_tm_btn_list .link_icon {
   text-transform: capitalize;
   margin-right: 30px;
}

.nst_tm_btn_list .nst_btn {
   min-width: 150px;
}

/*Sub Menu Style*/
.nst_tm_header_nav ul .submenu_list {
   position: relative;
}

.nst_tm_header_nav ul .submenu_list .submenu_wrapper {
   gap: 10px;
   padding: 15px 0;
   position: absolute;
   top: 40px;
   transition: all .2s ease;
   /* visibility: hidden; */
   z-index: 1000;
   flex-direction: column;
   align-items: flex-start;
   min-width: 180px;
   background-color: #fff;
   border-radius: 10px;
   padding: 15px 20px;
   box-shadow: 0 0 15px 0 rgba(125, 55, 187, .15);
   opacity: 0;
   visibility: hidden;
}


.nst_tm_header_nav ul .submenu_list .submenu_wrapper .sub_menu_item:hover {
   color: var(--nst-primary-color);
}

.nst_tm_header_nav ul .submenu_list .submenu_wrapper .sub_menu_item.active {
   color: var(--nst-primary-color);
}

.nst_tm_header_nav ul .submenu_list a {
   position: relative;
}

.nst_tm_header_nav ul .submenu_list.sb_menu_open .submenu_wrapper {
   margin-top: 0;
   opacity: 1;
   visibility: visible;
}

.nst_tm_header_nav ul .submenu_list .menu-arrow {
   width: 0px;
   height: 0px;
   border-left: 4.8px solid transparent;
   border-right: 4.8px solid transparent;
   border-top: 4.8px solid #0F0E0E;
   position: absolute;
   top: 50%;
   right: -18px;
}

.nst_tm_header_nav ul .submenu_list a:hover .menu-arrow {
   border-top: 4.8px solid var(--nst-primary-color);
}


/*=============================
 Banner Style
=============================*/

.nst_tm_banner_wrapper {
   position: relative;
   width: 96%;
   padding: 80px 0 80px 0;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
   margin: 0 auto;
   border-radius: 10px;
}

.nst_tm_banner_wrapper .nst_tm_banner_inner {
   position: relative;
   width: 100%;
   /* padding: 50px 75px 10px 75px;
    background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%); */
   border-radius: 15px;
}

.nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>span {
   font-style: normal;
   font-weight: 800;
   font-size: 16px;
   line-height: 1.4;
   letter-spacing: 0.4em;
   text-transform: uppercase;
   color: #F14B94;
   margin-bottom: 5px;
}

.nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>h2 {
   font-style: normal;
   font-weight: 400;
   font-size: 60px;
   line-height: 1.2;
   color: #0F0E0E;
   max-width: 598px;
   margin-bottom: 20px;
}

.nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>p {
   font-style: normal;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.7;
   color: #383737;
   max-width: 645px;
   margin-bottom: 25px;
}

.nst_tm_banner_wrapper .nst_tm_bnt_wrapper {
   display: flex;
   align-items: center;
   gap: 15px;
   flex-wrap: wrap;
}

.nst_tm_banner_wrapper .swiper-button-next,
.nst_tm_banner_wrapper .swiper-button-prev {
   display: none;
}

.nst_tm_banner_media_content {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding: 6px 0;
   gap: 5px;
   background: #FFFFFF;
   border-radius: 5px;
   width: 185px;
   position: absolute;
   bottom: 8%;
   right: -10%;
   z-index: 999;
   visibility: hidden;
   opacity: 0;
}

.nst_tm_banner_media_content h6 {
   font-style: normal;
   font-weight: 700;
   font-size: 18px;
   line-height: 1.4;
   color: #0F0E0E;
}

.nst_tm_banner_media_content p {
   font-style: normal;
   font-weight: 700;
   font-size: 15px;
   line-height: 1.4;
   color: #F14B94;
}

.nst_tm_banner_media {
   position: relative;
   border-radius: 10px;
   width: 100%;
   margin: 0;
   background: 0 0;
   display: block;
   /* overflow: hidden; */
   word-break: break-all;
   box-shadow: initial;
   padding-top: 130%;
}

.nst_tm_banner_media img {
   border-radius: 10px;
   position: absolute !important;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   margin: auto;
   z-index: 0;
   min-height: 100%;
   width: auto;
   min-width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   vertical-align: bottom;
   border: 0;
   font-style: italic;
   height: auto;
   max-width: 100%;
   max-height: 100%;
   -o-object-position: top;
   object-position: top;
}

.nst_tm_banner_wrapper .nst_btn {
   min-width: 183px;
}


/*Swiper Slider Style*/

.nst_tm_banner_wrapper .banner-slider .swiper-slide {
   width: 380px;
   opacity: 1;
}

.nst_tm_banner_wrapper .swiper.banner-slider {
   width: 840px;
   transform: scale(1.1);
   transform-origin: right top;
}

.nst_tm_banner_wrapper .swiper-pagination {
   display: none;
}


.banner-slider .swiper-slide.swiper-slide-fully-visible {
   opacity: 1;
}

.swiper-slide-fully-visible.swiper-slide-active .nst_tm_banner_media:before {
   position: absolute;
   content: '';
   bottom: -12px;
   left: 50%;
   background: linear-gradient(90deg, #7D37BB 0%, #F14B94 50%, #FBBC36 100%);
   box-shadow: 0px 16px 40px rgba(125, 55, 187, 0.3);
   border-radius: 10px;
   height: 50px;
   width: 80%;
   transform: translate(-50%, 0);
   z-index: -1;
}

.swiper-slide-fully-visible.swiper-slide-active .nst_tm_banner_media img {
   position: relative;
   z-index: 99;
}

.swiper-slide-fully-visible.swiper-slide-active .nst_tm_banner_media_content {
   visibility: visible;
   opacity: 1;
}


/*=============================
    About Style
=============================*/

.nst_tm_about_wrapper {
   position: relative;
   width: 100%;
   padding: 60px 0 50px 0;
}

.nst_tm_about_wrapper .nst_tm_about_details {
   position: relative;
   padding-right: 300px;
}

.nst_tm_about_wrapper .nst_tm_about_details.own_website .m_hd {
   font-size: 18px;
}

.nst_tm_about_wrapper .nst_tm_sec_heading {
   text-align: left;
   margin-bottom: 15px;
}

.nst_tm_about_wrapper .nst_tm_sec_heading .section_title_pera {
   max-width: 546px;
   margin: 0 auto 0 0;
}

.nst_tm_about_wrapper .nst_tm_sec_heading .section_title_pera p {
   text-align: left;
}

.nst_tm_about_wrapper .nst_tm_sec_heading .section_title {
   margin-bottom: 10px;
}

.nst_tm_about_wrapper .about_list_details_wrapper {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   margin-bottom: 15px;
}

.nst_tm_about_wrapper .about_list_details_wrapper .icon_cart {
   width: 50px;
   height: 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 10px;
}

.nst_tm_about_wrapper .about_list_details_wrapper h6 {
   font-style: normal;
   font-weight: 500;
   font-size: 24px;
   line-height: 1.4;
   color: #0F0E0E;
   margin-bottom: 5px;
}

.nst_tm_about_wrapper .about_list_details_wrapper p {
   font-style: normal;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.5;
   color: #383737;
}

.nst_tm_about_wrapper .nst_tm_bnt_wrapper {
   margin-left: 15px;
}

.about_list_details_wrapper .about_list_details_body {
   width: calc(100% - 60px);
}

.about_img_wrapper img {
   min-height: 540px;
   max-height: 540px;
   max-width: 100%;
   min-width: 100%;
   -o-object-fit: contain;
      object-fit: contain;
}

/*Partner Section Style*/

.partner_container {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   margin-top: 30px;
}

.partner_container .partner_img_wrapper {
   padding: 20px;
}

/*=============================
    Testimonials Style
=============================*/
.nst_tm_testimonial_wrapper {
   position: relative;
   width: 100%;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
   padding: 70px 0;
}

.nst_tm_testimonial_wrapper .nst_tm_testimonial_card {
   background: #FFFFFF;
   box-shadow: 0px 15px 20px rgba(125, 55, 187, 0.05);
   border-radius: 10px;
   padding: 40px;
}

.nst_tm_testimonial_card .quit_icon {
   width: 36px;
   height: 30px;
   margin-bottom: 25px;
}

.nst_tm_testimonial_wrapper .nst_tm_testimonial_card>p {
   font-style: normal;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.4;
   color: #383737;
   margin-bottom: 25px;
   max-width: 434px;
   min-height: 65px;
}

.nst_tm_testimonial_wrapper .nst_tm_testimonial_card .testimonial_client_details {
   display: flex;
   align-items: center;
   gap: 15px;
}

.nst_tm_testimonial_wrapper .nst_tm_testimonial_card .testimonial_client_details .user_thumb img {
   width: 50px;
   height: 50px;
   -o-object-fit: cover;
      object-fit: cover;
   -o-object-position: top;
      object-position: top;
   border-radius: 100%;
}

.nst_tm_testimonial_wrapper .nst_tm_testimonial_card .user_details h5 {
   font-style: normal;
   font-weight: 700;
   font-size: 16px;
   line-height: 1.4;
   color: #0F0E0E;
   margin-bottom: 2px;
}

.nst_tm_testimonial_wrapper .nst_tm_testimonial_card .user_details p {
   font-style: normal;
   font-weight: 700;
   font-size: 14px;
   line-height: 1.4;
   color: #F14B94;
}


/*=============================
    Artist List Section Style
=============================*/


.nst_tm_artist_list_wrapper {
   position: relative;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
   width: 100%;
   padding: 60px 0 70px 0;
   overflow: hidden;
}

.nst_tm_artist_list_wrapper .nst_tm_container {
   max-width: 100%;
}

.nst_tm_artist_list_wrapper .nst_tm_section_header {
   max-width: 1660px;
   margin: 0 auto 35px auto;
}


/*=============================
    Service Style
=============================*/
.nst_tm_service_wrapper {
   position: relative;
   width: 100%;
   padding: 70px 0;
}

.nst_tm_service_wrapper .nst_tm_service_data {
   position: relative;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
   border-radius: 10px;
   padding: 10px;
   transition: 0.5s all;
}

.nst_tm_service_wrapper .nst_tm_service_data:hover {
   transform: translateY(-10px);
}

.nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details {
   position: relative;
   padding: 20px 20px;
}

.nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details h6 {
   font-style: normal;
   font-weight: 400;
   font-size: 24px;
   line-height: 1.4;
   color: #0F0E0E;
   margin-bottom: 10px;
}

.nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details p {
   font-style: normal;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.4;
   color: #383737;
   margin-bottom: 10px;
}

.nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details .read_m {
   font-style: normal;
   font-weight: 700;
   font-size: 15px;
   line-height: 1.4;
   color: #F14B94;
}

.nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details .read_m span {
   margin-left: 5px;
}

.nst_tm_service_wrapper .nst_tm_service_thumb {
   width: 100%;
   margin: 0;
   position: relative;
   background: 0 0;
   display: block;
   overflow: hidden;
   word-break: break-all;
   box-shadow: initial;
   padding-top: 53%;
   border: 1px solid #F0DEFF;
   border-radius: 10px;
}

.nst_tm_service_wrapper .nst_tm_service_thumb img {
   border-radius: 10px;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   margin: auto;
   z-index: 0;
   min-height: 100%;
   width: auto;
   min-width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   vertical-align: bottom;
   border: 0;
   font-style: italic;
   height: auto;
   max-width: 100%;
   max-height: 100%;
   -o-object-position: top;
   object-position: top;
}

/*=============================
 Community Banner Style
=============================*/
.nst_tm_community_banner_wrapper {
   position: relative;
   width: 96%;
   overflow: hidden;
   /* background-image: url(../images/Template-Assets/community_banner.jpg); */
   background-repeat: no-repeat;
   background-size: cover;
   padding: 90px 0 90px 0;
   margin: 80px auto 0 auto;
   border-radius: 15px;
}

.nst_tm_community_banner_wrapper .nst_tm_community_banner_inner {
   text-align: center;
}

.nst_tm_community_banner_wrapper .nst_tm_community_banner_inner .bnr_pre_title {
   font-style: normal;
   font-weight: 800;
   font-size: 16px;
   line-height: 1.4;
   text-transform: uppercase;
   color: #FFFFFF;
   letter-spacing: 0.4em;
   display: block;
   margin-bottom: 10px;
}

.nst_tm_community_banner_wrapper .nst_tm_community_banner_inner .banner_hd {
   font-style: normal;
   font-weight: 400;
   font-size: 46px;
   line-height: 1.4;
   background: linear-gradient(91.59deg, #FBBC36 0%, #F14B94 50%, #7D37BB 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   text-fill-color: transparent;
   max-width: 576px;
   text-align: center;
   margin: 0 auto;
   margin-bottom: 10px;
}

.nst_tm_community_banner_wrapper .nst_tm_community_banner_inner p {
   font-style: normal;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.6;
   color: rgb(255 255 255 / 70%);
   max-width: 625px;
   margin: 0 auto;
   text-align: center;
   margin-bottom: 10px;
}

.nst_tm_community_banner_wrapper .nst_tm_bnt_wrapper {
   margin-top: 30px;
   text-align: center;
}

.nst_tm_community_banner_wrapper .nst_btn {
   min-width: 183px;
}

/*=============================
 Footer Style
=============================*/

.nst_tm_footer_wrapper {
   position: relative;
   width: 100%;
   overflow: hidden;
   /* background-image: url(../images/Template-Assets/footer_bg.jpg); */
   background-repeat: no-repeat;
   background-size: cover;
   padding: 70px 0 35px 0;
}

.nst_tm_footer_wrapper .nst_tm_footer_inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 30px;
   padding-bottom: 40px;
   border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.nst_tm_footer_wrapper .nst_tm_ftr_nav ul {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 35px;
}

.nst_tm_footer_wrapper .nst_tm_ftr_nav ul li a {
   font-style: normal;
   font-weight: 400;
   font-size: 15px;
   line-height: 1.4;
   color: rgb(255 255 255 / 70%);
}

.nst_tm_footer_wrapper .nst_tm_ftr_nav ul li a:hover {
   color: var(--nst-primary-color);
}

.nst_tm_ftr_social_nav ul {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 35px;
}

.nst_tm_footer_wrapper .nst_tm_footer_btn {
   position: relative;
   text-align: center;
}

.nst_tm_ftr_logo a {
   display: flex;
}

.nst_tm_ftr_logo img {
   width: 160px;
   height: 60px;
   -o-object-fit: contain;
      object-fit: contain;
}


.nst_tm_ftr_social_nav ul li>a {
   display: flex;
   align-items: center;
   justify-content: center;
}

.nst_tm_ftr_social_nav ul li>a svg {
   width: 20px;
   height: 20px;
}

.nst_tm_ftr_social_nav ul li>a:hover svg path {
   fill: var(--nst-primary-color);
}

.copyright_text {
   font-style: normal;
   font-weight: 400;
   font-size: 15px;
   line-height: 1.4;
   color: rgb(255 255 255 / 70%);
}

/*=============================
    Artist Section Style
=============================*/

.nst_tm_artist_card {
   border-radius: 10px;
   width: 100%;
   margin: 0;
   position: relative;
   background: 0 0;
   display: block;
   overflow: hidden;
   word-break: break-all;
   box-shadow: initial;
   padding-top: 130%;
}

.nst_tm_artist_list_wrapper a.nst_btn {
   min-width: 228px;
}

.nst_tm_artist_card:before {
   position: absolute;
   content: '';
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: 10px;
   background: linear-gradient(180deg, rgba(15, 14, 14, 0) 0%, #0F0E0E 100%);
   transition: 0.5s all;
   visibility: hidden;
   opacity: 0;
   z-index: 9;
}

.nst_tm_artist_card:hover:before {
   visibility: visible;
   opacity: 1;
}

.nst_tm_artist_card>img {
   border-radius: 10px;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   margin: auto;
   z-index: 0;
   min-height: 100%;
   width: auto;
   min-width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   vertical-align: bottom;
   border: 0;
   font-style: italic;
   height: auto;
   max-width: 100%;
   max-height: 100%;
   -o-object-position: top;
   object-position: top;
}

.nst_tm_artist_info {
   position: absolute;
   bottom: 0;
   left: 0;
   width: calc(100% - 30px);
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   /* height: 100%; */
   transition: 0.3s all;
   border-radius: 10px;
   visibility: hidden;
   opacity: 0;
   z-index: 99;
   padding: 15px 15px;
}

.nst_tm_artist_card:hover .nst_tm_artist_info {
   visibility: visible;
   opacity: 1;
}

.nst_tm_artist_info .artist_details h5 {
   font-style: normal;
   font-weight: 700;
   font-size: 18px;
   line-height: 1.4;
   color: #FFFFFF;
   margin-bottom: 2px;
   display: flex;
   align-items: center;
   gap: 5px;
   width: calc(100% - 30px);
}

.nst_tm_artist_info .artist_details p {
   font-style: normal;
   font-weight: 700;
   font-size: 15px;
   line-height: 1.4;
   color: #F14B94;
}

.nst_tm_artist_info .arrow_btn {
   width: 40px;
   height: 40px;
   background: linear-gradient(0deg, #7D37BB 0.64%, #F14B94 50.38%, #FBBC36 100.13%);
   box-shadow: inset 0px -3px 0px rgba(0, 0, 0, 0.08);
   border-radius: 5px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
}

.nst_tm_artist_info .artist_details {
   padding: 0;
   width: calc(100% - 50px);
}

.nst_tm_artist_info span.arrow_btn {
   margin: 0;
}

.nst_tm_artist_info .artist_details h5 .verify-icon {
   width: 16px;
   height: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-left: 0;
   min-width: 16px;
}

.nst_tm_artist_info .artist_details h5 .verify-icon img {
   width: 16px;
   height: 16px;
}

.artist-list-slider .swiper-button-prev,
.artist-list-slider .swiper-button-next {
   transform: scale(0.6) translate(5px, -50%) !important;
   color: #fff !important;
}

.artist-list-slider .swiper-button-prev {
   display: none;
}

.nst_tm_photographer_wrapper .artist-list-slider .swiper-button-prev {
   display: block !important;
}

.nst_tm_photographer_wrapper .artist-list-slider .swiper-button-next {
   display: none !important;
}

.artist-list-slider .swiper-slide:nth-child(even) {
   margin-top: 15px !important;
}

.nst_tm_artist_list_wrapper .artist-list-slider {
   margin-left: 125px;
   position: relative;
}

.nst_tm_artist_list_wrapper.nst_tm_photographer_wrapper .artist-list-slider {
   margin-left: 0;
   margin-right: 125px;
}

/*Photographer List Section Style*/

section.nst_tm_artist_list_wrapper.nst_tm_photographer_wrapper {
   background: #fff;
}


/*Swipper Commom Style*/

.swiper-wrapper {
   margin-bottom: 75px;
}

.swiper-pagination-bullet {
   background: rgb(241 75 148 / 40%) !important;
   border-radius: 100px !important;
   width: 12px !important;
   height: 4px !important;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
   background: #F14B94 !important;
   width: 20px !important;
}


.nst_tm_toggle_btn {
   display: none;
}


.nst_tm_banner_wrapper,
.nst_tm_about_wrapper,
.nst_tm_artist_list_wrapper,
section.nst_tm_artist_list_wrapper.nst_tm_mackeup_artist_wrapper,
.nst_tm_community_banner_wrapper,
.nst_tm_testimonial_wrapper,
.nst_tm_footer_wrapper {
   overflow: hidden;
}

.sidebar_top {
   display: none;
}


/*Breadcrumb Section Style*/

.nst_tm_bread_wrapper {
   position: relative;
   overflow: hidden;
   width: 96%;
   padding: 70px 0;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
   margin: 0 auto;
   border-radius: 10px;
}

.nst_tm_bread_wrapper .nst_tm_bread_inner {
   text-align: center;
}

.nst_tm_bread_wrapper .nst_tm_bread_pre_hd {
   display: block;
   font-style: normal;
   font-weight: 800;
   font-size: 16px;
   line-height: 1.4;
   letter-spacing: 0.4em;
   text-transform: uppercase;
   color: #F14B94;
   margin-bottom: 10px;
}

.nst_tm_bread_wrapper .nst_tm_bread_title {
   font-style: normal;
   font-weight: 400;
   font-size: 52px;
   line-height: 1.1;
   color: #0F0E0E;
   max-width: 420px;
   margin: 0 auto;
   text-align: center;
}

/*Service Page Style*/

/* .inner_content .nst_tm_container{
  max-width: 1170px;
  margin: 0 auto;
} */

.service_list {
   /* max-width: 1170px;
   margin: 0 auto; */
}

.nst_tm_about_wrapper.service_list .nst_tm_about_details {
   padding-right: 0 !important;
}

.service_list .about_img_wrapper img {
   min-height: 445px;
   max-height: 445px;
   transform: scale(1.1);
}

.nst_tm_about_wrapper.service_list .nst_tm_sec_heading .section_title_pera {
   max-width: 515px;
}

/*Membership Page Style*/

.nst_tm_about_wrapper.membership_features_list .nst_tm_about_details {
   padding-right: 0 !important;
}

.membership_features_list .about_img_wrapper img {
   min-height: auto;
   max-height: 100%;
}

.membership_features_list .about_img_wrapper>img {
   border-radius: 10px;
}

.membership_features_list .membership_features_list_card {
   margin: 15px 0;
}


/* Image Shap Style*/
.media_shap {
   position: relative;
   z-index: 3;
}

.media_shap::before,
.media_shap::after {
   position: absolute;
   content: '';
   left: 50%;
   background: linear-gradient(62.79deg, #7D37BB 0%, #F14B94 50%, #FBBC36 100%);
   box-shadow: 0px 16px 40px rgba(125, 55, 187, 0.3);
   border-radius: 10px;
   width: 90%;
   height: 50px;
   z-index: -1;
}

.media_shap::before {
   top: -10px;
   transform: translate(-50%, 0);
}

.media_shap::after {
   bottom: -10px;
   transform: translate(-50%, 0);
}

/*Bollete Note Style*/

.bollet_grid {
   display: flex;
   align-items: flex-start;
   gap: 15px;
   margin-bottom: 20px;
   flex-wrap: wrap;
}

.bollet_grid .nst_tm_bollet_points_info_wrapper {
   width: 48%;
   flex: 0 0 48%;
}

.bollet_grid .nst_tm_bollet_points_info_wrapper.points_info_wrapper_full {
   width: 100%;
   flex: 0 0 100%;
}

.nst_tm_bollet_points_info_wrapper .m_hd.mb2 {
   font-style: normal;
   font-weight: 500;
   font-size: 24px;
   line-height: 1.4;
   color: #0F0E0E;
   margin-bottom: 10px;
}

.nst_tm_bollet_points_info_wrapper ul li {
   display: flex;
   align-items: flex-start;
   justify-content: center;
   gap: 10px;
   flex-wrap: wrap;
   margin-bottom: 15px;
}

.nst_tm_bollet_points_info_wrapper ul li:last-child {
   margin-bottom: 0;
}

.nst_tm_bollet_points_info_wrapper ul li p {
   font-style: normal;
   font-weight: 500;
   font-size: 15px;
   line-height: 1.4;
   color: #383737;
   width: calc(100% - 26px);
}


.nst_tm_bollet_points_info_wrapper ul li .ollet_points_check {
   width: 16px;
   height: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 4px;
}

.bollet_grid.full_w {
   flex-direction: column;
}

.bollet_grid.full_w .nst_tm_bollet_points_info_wrapper {
   width: 100%;
   flex: 0 0 100%;
}

/*Faq Page Style*/

.nst_tm_faq_wrapper {
   position: relative;
   overflow: hidden;
   padding: 50px 0;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
}


.nst_tm_faq_wrapper .accordion-item {
   background-color: #fff;
   border: 1px solid #E2E8F0;
   color: #383737;
   border-radius: 5px !important;
   margin-bottom: 20px;
}

.nst_tm_faq_wrapper .accordion-button:focus {
   border-color: #E2E8F0;
   box-shadow: none;
}

.nst_tm_faq_wrapper .accordion-item:not(:first-of-type) {
   border: 1px solid #E2E8F0;
}

.nst_tm_faq_wrapper .accordion-button {
   background-color: #fff !important;
   border: none;
   border-radius: 5px !important;
   padding: 15px 15px 15px 15px;
   font-style: normal;
   font-weight: 600;
   font-size: 18px;
   line-height: 1.4;
   color: #383737;
   display: flex;
   align-items: center;
   gap: 10px;
}

.nst_tm_faq_wrapper .accordion-button .faq-icon {
   width: 30px;
   height: 30px;
}

.nst_tm_faq_wrapper .accordion-body {
   background-color: #fff;
   border-radius: 5px;
   padding: 0 5px 25px 45px;
   margin: 0px 10px 10px 10px;
   font-style: normal;
   font-weight: 500;
   font-size: 16px;
   line-height: 1.5;
   color: #383737;
   text-align: left;
}

.nst_tm_faq_wrapper .accordion-button:not(.collapsed) {
   color: var(--nst-primary-color);
   background-color: #e7f1ff;
   box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
   box-shadow: none;
}

/* button.accordion-button{
  border-bottom: 1px solid #E2E8F0;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
button.accordion-button.collapsed{
  border-bottom: 1px solid #0000;
} */

.nst_tm_faq_wrapper .accordion-button::after {
   /* background-image: url(../images/Template-Assets/right-arrow.png); */
   background-size: contain;
   width: 10px;
   height: 10px;
}

.nst_tm_faq_wrapper .accordion-button:not(.collapsed)::after {
   /* background-image: url(../images/Template-Assets/down-arrow.png); */
   transform: rotate(0deg) translate(0, 5px);
}

/*Contact Page Style*/

.nst_tm_contact_wrapper {
   position: relative;
   overflow: hidden;
   padding: 80px 0;
}

.nst_tm_from_heading {
   margin-bottom: 15px;
}

.nst_tm_contact_wrapper .nst_tm_contact_form .nst_tm_from_heading h3 {
   font-style: normal;
   font-weight: 400;
   font-size: 28px;
   line-height: 1.4;
   color: #0F0E0E;
   margin-bottom: 10px;
}

.nst_tm_contact_wrapper .nst_tm_contact_form .nst_tm_from_heading p {
   font-style: normal;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.4;
   color: #383737;
}

.nst_tm_contact_wrapper .nst_tm_contact_form .nst_tm_from_heading {
   position: relative;
   margin-bottom: 30px;
}

.nst_tm_contact_wrapper .nst_tm_map_wrapper iframe {
   border-radius: 10px;
   height: 700px;
}

.nst_tm_input_wrapper {
   position: relative;
   margin-bottom: 25px;
}

.nst_tm_input_wrapper label {
   margin-bottom: 12px;
   text-align: left;
   font-style: normal;
   font-weight: 700;
   font-size: 15px;
   line-height: 1.4;
   letter-spacing: 0.01em;
   color: #383737;
}

.nst_tm_input_wrapper .nst_tm_input {
   width: 100%;
   line-height: 64px;
   padding: 0 25px;
   transition: all .3s;
   height: 64px;
   text-align: left;
   font-size: 16px;
   font-weight: 500;
   letter-spacing: 0em;
   color: #959595;
   border: 1px solid #E2E8F0;
   border-radius: 6px;
   background: #FFFFFF;
}

.nst_tm_input_wrapper .nst_tm_input:focus,
.nst_tm_input_wrapper textarea:focus {
   border: 1px solid var(--nst-primary-color);
}

.nst_tm_input_wrapper .nst_tm_input::-moz-placeholder {
   color: #95959599;
   font-size: 16px;
   font-weight: 500;
   letter-spacing: 0em;
}

.nst_tm_input_wrapper .nst_tm_input::placeholder {
   color: #95959599;
   font-size: 16px;
   font-weight: 500;
   letter-spacing: 0em;
}

.nst_tm_input_wrapper textarea {
   width: 100%;
   background: #FFFFFF;
   border: 1px solid #E2E8F0;
   border-radius: 6px;
   padding: 20px 25px;
   font-style: normal;
   font-weight: 500;
   font-size: 16px;
   line-height: 1.4;
   color: #959595;
   height: 120px;
}

.nst_tm_input_wrapper textarea::-moz-placeholder {
   color: #95959599;
}

.nst_tm_input_wrapper textarea::placeholder {
   color: #95959599;
}


/*Our Models Section Style*/

.nst_tm_our_model_wrapper {
   position: relative;
   overflow: hidden;
   padding: 70px 0;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
}

/*Our Models Section Style*/

.nst_tm_our_model_list_inner {
   background: #FFFFFF;
   border: 1px solid #E2E8F0;
   padding: 5px;
   border-radius: 5px;
   margin-bottom: 20px;
}

.premium_user {
   position: relative;
}

.premium_user::after {
   content: "";
   position: absolute;
   inset: 0;
   border-radius: 6px;
   padding: 2px;
   background: linear-gradient(0deg, #7d37bb .64%, #f14b94 50.38%, #fbbc36 100.13%);
   -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
   -webkit-mask-composite: xor;
   mask-composite: exclude;
   transition: all .5s;
   z-index: 1;
   width: 100%;
   visibility: hidden;
   opacity: 1;
   visibility: visible;
   display: none;
}

.premium_user {
   border: 2px solid #f14b94;
}


/*Banner Slider*/
.nst_tm_banner_media.premium_user {
   border-radius: 12px;
}

.nst_tm_banner_wrapper .banner-slider .swiper-slide-prev>.nst_tm_banner_media.premium_user {
   border: 2px solid transparent;
}

.nst_tm_banner_wrapper .banner-slider .swiper-slide-next>.nst_tm_banner_media.premium_user {
   border: 2px solid transparent;
}

/*Artist Slider*/
.nst_tm_artist_list_wrapper .nst_tm_artist_card.premium_user {
   border-radius: 12px;
}

.nst_tm_artist_list_wrapper .nst_tm_artist_card>img.premium_user {
   border: 2px solid #f14b94;
}

.nst_tm_artist_list_wrapper .nst_tm_artist_card>img {
   transform: scale(0.95);
}

.nst_tm_artist_list_wrapper .nst_tm_artist_card:before {
   transform: scale(0.96);
}

.nst_tm_artist_list_wrapper .nst_tm_artist_info {
   transform: scale(0.96);
}

.nst_tm_artist_list_wrapper .nst_tm_artist_info .artist_details h5 {
   font-size: 15px;
}

.nst_tm_our_model_list_inner .our_model_img_wrapper {
   width: 100%;
   margin: 0;
   position: relative;
   background: 0 0;
   display: block;
   overflow: hidden;
   word-break: break-all;
   box-shadow: initial;
   border-radius: 5px;
   padding-top: 125%;
}

.nst_tm_our_model_list_inner .our_model_img_wrapper>img {
   border-radius: 5px;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   margin: auto;
   z-index: 0;
   min-height: 100%;
   width: auto;
   min-width: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   vertical-align: bottom;
   border: 0;
   font-style: italic;
   height: auto;
   max-width: 100%;
   max-height: 100%;
   -o-object-position: top;
   object-position: top;
}

.nst_tm_our_model_list_inner .our_model_details_wrapper {
   text-align: center;
   padding: 10px;
}

.nst_tm_our_model_list_inner .our_model_details_wrapper .user_name {
   font-style: normal;
   font-weight: 700;
   font-size: 18px;
   line-height: 1.4;
   color: #0F0E0E;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 5px;
   margin-bottom: 5px;
}

.nst_tm_our_model_list_inner .our_model_details_wrapper .follow_details {
   font-style: normal;
   font-weight: 700;
   font-size: 15px;
   line-height: 1.4;
   color: #F14B94;
}

.nst_tm_our_model_wrapper .filter_wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   margin-bottom: 25px;
}


/*=============================
Select 2 Style
=============================*/

.nst_select {
   position: relative;
   width: 100%;
}

.nst_select label {
   margin-bottom: 12px;
   text-align: left;
   color: #383737;
   font-size: 15px;
   font-style: normal;
   font-weight: 700;
   line-height: 1.4;
   letter-spacing: 0.15px;
}



/* .nst_select .select {
  min-width: 200px;
} */

.nst_select .nst_custom_select {
   width: 100%;
   height: 50px;
   border-radius: 5px;
   line-height: 50px;
   background-color: var(--nst-white-color);
   border: 1px solid #F1F3F8;
   opacity: 1;
   font-size: 14px;
   font-weight: 500;
   letter-spacing: 0px;
   color: #9e9e9e;
   transition: all .3s;
}

.nst_select .select .select2-container {
   width: 100% !important;
}

.nst_select .select2-container--default .select2-selection--single .select2-selection__rendered {
   line-height: 44px;
}

.nst_select .select2-container--default .select2-selection--single {
   height: 44px;
}

.nst_select .select2-container--default .select2-selection--single .select2-selection__arrow {
   top: 20px;
}

.nst_widget_header .select2-container {
   z-index: 2 !important;
}

.select2-container--default .select2-selection--single {
   background-color: var(--nst-white-color);
   border: 1px solid #E2E8F0;
   height: 50px;
   border-radius: 6px;
   z-index: 1;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
   line-height: 50px;
   padding-left: 25px;
   font-size: 15px;
   font-weight: 500;
   letter-spacing: 0.02em;
   text-align: left;
   color: #95959580;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
   height: 26px;
   position: absolute;
   top: 24px;
   right: 15px;
   width: 20px;
   background-repeat: no-repeat;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
   border-color: #fff transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
   border-color: transparent transparent #fff transparent;
}

.select2-dropdown {
   background-color: var(--nst-white-color);
   border: 1px solid #E2E8F0;
   border-radius: 5px;
   filter: drop-shadow(0px 5px 25px rgba(0, 0, 0, 0.03));
   padding: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
   border: 1px solid #E2E8F0;
   border-radius: 5px;
   display: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
   background-color: #0000;
   color: #383737;
}

.select2-search--dropdown {
   padding: 0 !important;
}

.select2-results__option {
   font-size: 14px;
   color: #383737;
   font-weight: 500;
   padding: 6px 15px;
   border-bottom: 1px solid transparent;
   border-radius: 6px;
}

.select2-container--default .select2-results>.select2-results__options {
   max-height: 260px;
   overflow-y: auto;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
   width: 4px;
   height: 4px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
   background: rgb(246 246 248);
   color: #383737;
}

.select2-container--default .select2-results__option[aria-selected=true]:hover {
   background-color: rgb(246 246 248);
   color: #383737;
}

strong.select2-results__group {
   margin-left: 10px;
   margin-top: 10px;
   margin-bottom: 10px;
}

.nst_select .nst_select_lable {
   color: #383737;
   font-size: 15px;
   font-style: normal;
   font-weight: 600;
   line-height: normal;
   letter-spacing: 0.15px;
   margin-bottom: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
   /* background-image: url(../images/Template-Assets/select-arrow.svg); */
}


/*Sedcard page (about) Style */


.nst_sc_about {
   position: relative;
   width: 100%;
   overflow: hidden;
   padding: 70px 0 100px 0;
}

.nst_sc_about .sc_tmp_main_title {
   font-style: normal;
   font-weight: 700;
   font-size: 14px;
   line-height: 1.4;
   color: #F14B94;
   padding: 8px 15px;
   gap: 10px;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
   border-radius: 4px;
   display: inline-block;
   margin-bottom: 10px;
}

.nst_sc_about .sc_tmp_accnt_adr {
   font-style: normal;
   font-weight: 700;
   font-size: 16px;
   line-height: 1.4;
   color: #959595;
   margin-bottom: 5px;
   text-transform: lowercase;
}

.nst_sc_about .sc_tmp_user_name {
   font-style: normal;
   font-weight: 700;
   font-size: 34px;
   line-height: 1.4;
   color: #0F0E0E;
   display: flex;
   align-items: center;
   justify-content: flex-start;
   gap: 10px;
}

.nst_sc_about .sc_tmp_user_name .verify_account_icn {
   width: 20px;
   height: 20px;
   min-width: 20px;
}

.nst_sc_about .sc_tmp_accnt_dsgn_name {
   font-style: normal;
   font-weight: 700;
   font-size: 16px;
   line-height: 1.4;
   color: #F14B94;
   margin-bottom: 10px;
}

.nst_sc_about .sc_tmp_full_bio {
   font-family: 'Manrope';
   font-style: normal;
   font-weight: 500;
   font-size: 16px;
   line-height: 28px;
   color: #383737;
   margin-bottom: 20px;
   max-width: 480px;
}

.nst_sc_about .sc_tmp_follower {
   font-style: normal;
   font-weight: 500;
   font-size: 18px;
   line-height: 1.4;
   color: #383737;
   margin-bottom: 10px;
}


.nst_sc_about .sc_tmp_pay_info {
   display: flex;
   align-items: center;
   justify-content: flex-start;
   gap: 10px;
   margin-bottom: 15px;
   flex-wrap: wrap;
}

.nst_sc_about .sc_tmp_pay_info .sc_tmp_pay_inner {
   display: flex;
   align-items: center;
   gap: 10px;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
   border-radius: 6px;
   padding: 7px 30px 7px 20px;
   justify-content: flex-start;
}


.nst_sc_about .sc_tmp_pay_info .sc_tmp_pay_inner .sc_tmp_icon {
   width: 20px;
   height: 20px;
}

.nst_sc_about .sc_tmp_pay_info .sc_tmp_pay_inner .sc_tmp_icon img {
   width: 20px;
   height: 20px;
   -o-object-fit: cover;
      object-fit: cover;
}

.nst_sc_about .sc_tmp_pay_info .sc_tmp_pay_inner h6 {
   font-style: normal;
   font-weight: 600;
   font-size: 26px;
   line-height: 1.4;
   color: #0F0E0E;
}

.nst_sc_about .sc_tmp_users_details_wrapper {
   display: flex;
   align-items: center;
   gap: 15px;
   margin-bottom: 20px;
   flex-wrap: wrap;
}

.nst_sc_about .sc_tmp_users_details_wrapper .sc_tmp_users_details_list_card {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 8px;
   flex-wrap: wrap;
}

.nst_sc_about .sc_tmp_users_details_wrapper .sc_tmp_users_details_list_card .sc_tmp_details_heading h6 {
   font-style: normal;
   font-weight: 500;
   font-size: 15px;
   line-height: 1.4;
   color: #959595;
}

.nst_sc_about .sc_tmp_users_details_wrapper .sc_tmp_users_details_list_card .sc_tmp_details_heading h6,
.sc_tmp_users_details_list_card .sc_tmp_details_ans p {
   font-style: normal;
   font-weight: 500;
   font-size: 15px;
   line-height: 1.4;
   color: #959595;
}

.nst_sc_about .sc_tmp_users_details_wrapper .sc_tmp_users_details_list_card .sc_tmp_details_ans p {
   color: #383737 !important;
}

.nst_sc_about .sc_tmp_fun_facts {
   margin-bottom: 20px;
   display: flex;
   align-items: center;
   gap: 10px;
   flex-wrap: wrap;
}

.nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card {
   display: flex;
   align-items: center;
   justify-content: flex-start;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
   border-radius: 6px;
   padding: 10px;
   gap: 10px;
   min-width: 230px;
}

.nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card .sc_tmp_fun_fact_card_icn {
   width: 50px;
   height: 50px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card .sc_tmp_fun_fact_card_icn img {
   width: 45px;
   height: 45px;
   -o-object-fit: contain;
      object-fit: contain;
}

.nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card .sc_tmp_fun_fact_card_info h4 {
   font-style: normal;
   font-weight: 500;
   font-size: 30px;
   line-height: 30px;
   color: #0F0E0E;
   margin-bottom: 5px;
}

.nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card .sc_tmp_fun_fact_card_info p {
   font-style: normal;
   font-weight: 600;
   font-size: 14px;
   line-height: 1.4;
   color: #383737;
}

.nst_sc_about .sc_tmp_action_list {
   width: 100%;
   display: flex;
   align-items: center;
   gap: 15px;
   flex-wrap: wrap;
}

.nst_sc_about .nst_sc_about_details {
   position: relative;
   padding-left: 14px;
}


/*SedCard Cover IMage Media Style*/

.nst_sc_about_media_wrapper {
   position: relative;
}

.nst_sc_about_media_wrapper .post_grid_pad5 {
   padding: 5px;
}

.sc_media_thumb_wrapper {
   position: relative;
   width: 100%;
   border-radius: 5px;
   z-index: 1;
}

.sc_media_thumb_wrapper .sc_media_thumb_view_link {
   margin: 0;
   position: relative;
   background: 0 0;
   display: block;
   overflow: hidden;
   word-break: break-all;
   box-shadow: initial;
   border-radius: 10px;
}

.sedcard_cover_media_main .sc_cover_full_img .sc_media_thumb_view_link {
   padding-top: 136%;
}

.sedcard_cover_media_main .sc_media_thumb_view_link {
   padding-top: 124%;
}

.sedcard_cover_media_main .sc_media_thumb_wrapper .sc_media_thumb {
   border-radius: 10px;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   margin: auto;
   z-index: 0;
   min-height: 100%;
   width: auto;
   min-width: 100%;
   -o-object-fit: cover;
      object-fit: cover;
   vertical-align: bottom;
   border: 0;
   font-style: italic;
   height: auto;
   max-width: 100%;
   -o-object-position: top;
      object-position: top;
}

.sc_media_thumb_wrapper.sc_media_cv_2 {
   padding-bottom: 10px;
}

.sc_cover_full_img {
   height: 100%;
   display: flex;
   align-items: center;
}

.sc_media_thumb_wrapper.sc_media_cv_3 {
   left: -20%;
}

.sc_media_thumb_wrapper.sc_media_cv_3 .sc_media_thumb_view_link {
   outline: 5px solid #fff;
}

.star_stamp_wrapper {
   position: absolute;
   bottom: -25%;
   right: -8%;
   width: 45%;
   height: 45%;
}

.sc_media_thumb_wrapper.sc_media_cv_1:before {
   background: linear-gradient(90deg, #7D37BB 0%, #F14B94 50%, #FBBC36 100%);
   box-shadow: 0px 16px 40px rgba(125, 55, 187, 0.3);
   border-radius: 10px;
   position: absolute;
   top: 7.2%;
   content: '';
   width: 88%;
   height: 95%;
   left: 0;
}

/**/
.nst_tm_tm_policy_wrapper {
   position: relative;
   padding: 50px 0;
}

.nst_tm_tm_policy_wrapper .nst_tm_m_hd {
   font-style: normal;
   font-weight: 500;
   font-size: 30px;
   line-height: 1.4;
   color: #0F0E0E;
   margin-bottom: 10px;
}

h2.nst_tm_m_hd.nst_tm_m_hd_medium {
   font-size: 21px;
}

.nst_tm_tm_policy_wrapper p {
   font-style: normal;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.6;
   color: #383737;
   text-align: center;
   text-align: left;
   margin-bottom: 10px;
}

.nst_tm_tm_policy_wrapper .list_wrapper ul.list {
   padding-left: 18px;
   margin-bottom: 10px;
}

.nst_tm_tm_policy_wrapper .list_wrapper ul.list li {
   list-style: auto;
   font-style: normal;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.6;
   color: #383737;
   text-align: center;
   text-align: left;
   margin-bottom: 5px;
}

/*Html Bg Images*/

/* .nst_tm_community_banner_wrapper {
   background-image: url(../images/Template-Assets/community_banner.jpg);
}
.nst_tm_footer_wrapper {
   background-image: url(../images/Template-Assets/footer_bg.jpg);
}

.nst_tm_faq_wrapper .accordion-button::after{
  background-image: url(../images/Template-Assets/right-arrow.png);
}

.nst_tm_faq_wrapper .accordion-button:not(.collapsed)::after {
  background-image: url(../images/Template-Assets/down-arrow.png);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
   background-image: url(../images/Template-Assets/select-arrow.svg);
} */

/*React Bg Images*/

.nst_tm_community_banner_wrapper {
   background-image: url('/assets/images/Template-Assets/community_banner.jpg');
}

.nst_tm_footer_wrapper {
   background-image: url('/assets/images/Template-Assets/footer_bg.jpg');
}

.nst_tm_faq_wrapper .accordion-button::after {
   background-image: url('/assets/images/Template-Assets/right-arrow.png');
}

.nst_tm_faq_wrapper .accordion-button:not(.collapsed)::after {
   background-image: url('/assets/images/Template-Assets/down-arrow.png');
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
   background-image: url('/assets/images/Template-Assets/select-arrow.svg');
}

.error {
   font-style: normal;
   font-weight: 500;
   font-size: 16px;
   line-height: 1.4;
   color: #ff0000;
   margin-bottom: 15px;
}


.nst_tm_banner_wrapper .swiper-slide-prev,
.nst_tm_banner_wrapper .swiper-slide-next {
   opacity: 0.30;
}

/* .nst_tm_banner_wrapper .banner-slider .swiper-slide {
   width: 480px; 
} */


/*Banner Slider Style*/

.nst_tm_banner_wrapper .banner-slider .swiper-slide {
   opacity: 0;
   /* transition: 0.9s all !important; */
}

.nst_tm_banner_wrapper .banner-slider .swiper-slide.swiper-slide-visible {
   opacity: 0.7;
   /* transition: 0.9s all !important; */
}

.nst_tm_banner_wrapper .banner-slider .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible {
   opacity: 1;
   z-index: 999999 !important;
   transition: 0.3s all !important;
}

.nst_tm_banner_wrapper .banner-slider .swiper-slide-prev>div {
   z-index: 999999 !important;
}


/*=============================
    Price & Plan Section Style
=============================*/

.nst_tm_price_plan_wrapper {
   position: relative;
   width: 100%;
   padding: 70px 0 20px 0;
}

.nst_tm_price_plan_wrapper .nst_tm_container>.row {
   justify-content: center;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data {
   padding: 35px 40px 40px 40px;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
   border-radius: 10px;
   position: relative;
   border: 2px solid #f14b9491;
   margin-bottom: 25px;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_bollet_points_info_wrapper {
   position: relative;
   padding-top: 25px;
   margin-bottom: 35px;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_bollet_points_info_wrapper ul li p {
   font-size: 16px;
   width: calc(100% - 40px);
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_bollet_points_info_wrapper ul li .ollet_points_check {
   width: 18px;
   height: 18px;
   align-items: flex-start;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_bollet_points_info_wrapper ul li .ollet_points_check img {
   width: 18px;
   height: 18px;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_bollet_points_info_wrapper ul li {
   margin-bottom: 15px;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_price_box {
   position: relative;
   text-align: left;
   margin-bottom: 15px;
   border-bottom: 1px solid #f795bf4f;
   padding-bottom: 25px;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_price_box .title {
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 1.4;
   color: #0F0E0E;
   margin-bottom: 5px;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_price_box .price {
   font-style: normal;
   font-weight: 800;
   font-size: 36px;
   line-height: 1.4;
   color: #f14b94;
   margin-bottom: 5px;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_price_box p {
   font-style: normal;
   font-weight: 500;
   font-size: 16px;
   line-height: 1.4;
   color: #383737;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data.premium_plan {
   background: linear-gradient(0deg, #7D37BB 0.64%, #F14B94 50.38%, #FBBC36 100.13%) !important;
   border: 1px solid #fab937 !important;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data.premium_plan .nst_tm_price_box .title {
   color: #fff;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data.premium_plan .nst_tm_price_box .price {
   color: #fff;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data.premium_plan .nst_tm_price_box p {
   color: #fff;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data.premium_plan .nst_tm_bollet_points_info_wrapper ul li p {
   color: #fff;
}

.nst_tm_price_plan_wrapper .nst_tm_price_plan_data.premium_plan .nst_tm_price_box {
   border-bottom: 1px solid #ffffff30;
}



/*=============================
    Language Selector Dropdown  Style
=============================*/

.nst_language_selector_wrapper {
   position: relative;
   width: 90px;
}

.nst_language_selector_wrapper .nst_language_selector_header {
   width: 100%;
   height: 36px;
   display: flex;
   align-items: center;
   position: relative;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
   border-radius: 5px;
   padding: 10px;
   cursor: pointer;
}

.nst_language_selector_wrapper .nst_language_selector_header .nst_lang_cn_flag {
   width: 32px;
   height: 26px;
   margin-right: 6px;
   border-radius: 4px;
}

.nst_language_selector_wrapper .nst_language_selector_header .nst_lang_cn_flag img {
   -o-object-fit: cover;
      object-fit: cover;
   border-radius: 4px;
}

.nst_language_selector_wrapper .nst_language_selector_header p {
   font-style: normal;
   font-weight: 700;
   font-size: 14px;
   line-height: 1.4;
   color: #F14B94;
   -webkit-user-select: none;
      -moz-user-select: none;
           user-select: none;
}


.nst_language_selector_wrapper .nst_lang_list_wrapper {
   position: absolute;
   top: 45px;
   width: 85px;
   right: 0;
   transition: all .4s ease;
   display: block;
   opacity: 0;
   visibility: hidden;
   border-radius: 5px;
   background: #FFF;
   box-shadow: 0px 0px 15px 0px rgba(125, 55, 187, 0.15);
   padding: 10px;
}

.nst_language_selector_wrapper .nst_lang_list_wrapper.show-dropdown {
   opacity: 1;
   visibility: visible;
}

.nst_language_selector_wrapper .nst_lang_list_wrapper .nst_lang_list_content {
   display: flex;
   align-items: center;
   position: relative;
   border-radius: 5px;
   cursor: pointer;
   margin-bottom: 10px;
}

.nst_language_selector_wrapper .nst_lang_list_wrapper .nst_lang_list_content:last-child {
   margin-bottom: 0;
}

.nst_language_selector_wrapper .nst_lang_list_wrapper .nst_lang_list_content .nst_lang_cn_icon {
   width: 32px;
   height: 22px;
   margin-right: 5px;
}

.nst_language_selector_wrapper .nst_lang_list_wrapper .nst_lang_list_content img {
   /* width: 36px;
   height: 26px; */
   -o-object-fit: cover;
      object-fit: cover;
   border-radius: 4px;
}

.nst_language_selector_wrapper .nst_lang_list_wrapper .nst_lang_list_content p {
   font-style: normal;
   font-weight: 700;
   font-size: 14px;
   line-height: 1.4;
   color: #F14B94;
   margin-left: 4px;
}

.nst_language_selector_wrapper .nst_language_selector_header .nst_lg_arrow svg path {
   fill: var(--nst-primary-color);
}

.nst_language_selector_wrapper .nst_language_selector_header .nst_lg_arrow {
   margin: 0 0 0 4px;
}

.nst_language_selector_wrapper .nst_language_selector_header .nst_lang_cn_flag img {
   min-width: 32px;
   max-width: 32px;
   min-height: 22px;
   max-height: 22px;
   border-radius: 4px;
}

.nst_language_selector_wrapper .nst_lang_list_wrapper .nst_lang_list_content img {
   min-width: 32px;
   max-width: 32px;
   min-height: 22px;
   max-height: 22px;
}

/*Tooltip Style For Language Switcher*/

.nst_lang_list_content:hover .tooltip_icon {
   opacity: 1;
   visibility: visible;
}

.nst_lang_list_content .tooltip_icon:after {
   position: absolute;
   content: '';
   background-color: #141414;
   bottom: 50%;
   left: 100%;
   width: 5px;
   height: 5px;
   transform: translate(-50%, 50%) rotate(45deg);
}

.nst_lang_list_content .tooltip_icon {
   position: absolute;
   background-color: var(--nst-title-color);
   color: var(--nst-white-color);
   line-height: 18px;
   border-radius: 3px;
   margin-bottom: 8px;
   opacity: 0;
   visibility: hidden;
   transition: var(--transition);
   white-space: normal;
   text-align: center;
   font-size: 12px;
   padding: 2px 10px;
   top: 1px;
   bottom: auto;
   min-width: -moz-max-content;
   min-width: max-content;
   left: -85px;
}





/*Extra */

.nst_language_selector_wrapper .nst_lang_list_wrapper {
   z-index: 99;
}

.verify_account_icn {
   width: 16px;
   height: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   min-width: 16px;
}

.middle_container_main.nst_sdcard_temp_container {
   overflow: hidden;
}

.nst_common_model.nst_view_media_model .nst_media_list_wrapper {
   text-align: center;
}

/*=============================
 Common Input Style
=============================*/

.nst_main_input {
   position: relative;
}

.nst_main_input label {
   margin-bottom: 12px;
   text-align: left;
   color: #383737;
   font-size: 15px;
   font-style: normal;
   font-weight: 700;
   line-height: 1.4;
   letter-spacing: 0.15px;
}

.nst_main_input .nst_custom_input {
   width: 100%;
   line-height: 64px;
   padding: 0 25px;
   transition: all .3s;
   height: 64px;
   text-align: left;
   font-size: 16px;
   font-weight: 500;
   letter-spacing: 0em;
   color: #959595;
   border: 1px solid #E2E8F0;
   border-radius: 6px;
}

/* .nst_common_model .nst_main_input .nst_custom_input {
   line-height: 54px;
   height: 54px;
   background: #F2F2FD;
} */

.nst_main_input .nst_custom_input:focus {
   border: 1px solid var(--nst-primary-color);
}

.nst_main_input .nst_custom_input::-moz-placeholder {
   color: #95959599;
   font-size: 16px;
   font-weight: 500;
   letter-spacing: 0em;
}

.nst_main_input .nst_custom_input::placeholder {
   color: #95959599;
   font-size: 16px;
   font-weight: 500;
   letter-spacing: 0em;
}

.nst_main_input textarea.form-control {
   width: 100%;
   line-height: 1.4;
   padding: 12px 20px;
   transition: all .3s;
   border-radius: 6px;
   text-align: left;
   font-size: 16px;
   font-weight: 500;
   letter-spacing: 0em;
   background: #ffffff;
   min-height: 150px;
   color: #70708E;
   border: 1px solid #E2E8F0;
}

.nst_main_input textarea.form-control::-moz-placeholder {
   color: rgb(149 149 149 / 60%);
   font-size: 16px;
   font-weight: 400;
   letter-spacing: 0em;
}

.nst_main_input textarea.form-control::placeholder {
   color: rgb(149 149 149 / 60%);
   font-size: 16px;
   font-weight: 400;
   letter-spacing: 0em;
}

.nst_main_input textarea.form-control:focus {
   box-shadow: none;
   border: 1px solid var(--nst-primary-color);
}

.nst_main_input textarea {
   width: 100%;
   background: #FFFFFF;
   border: 1px solid #E2E8F0;
   border-radius: 6px;
   padding: 20px 25px;
   font-style: normal;
   font-weight: 500;
   font-size: 16px;
   line-height: 1.4;
   color: #959595;
   height: 135px;
}

.nst_main_input textarea::-moz-placeholder {
   color: #95959599;
   font-size: 16px;
   font-weight: 500;
   letter-spacing: 0em;
}

.nst_main_input textarea::placeholder {
   color: #95959599;
   font-size: 16px;
   font-weight: 500;
   letter-spacing: 0em;
}


/*=============================
 Common Model Style
=============================*/

.nst_common_model {
   z-index: 999999999;
   background: rgba(15, 14, 14, 0.5);
   backdrop-filter: blur(7.5px);
}

.nst_common_model .modal-dialog {
   max-width: 500px;
   margin: 0 auto;
}

.nst_common_model .modal-content {
   box-shadow: 0px 20px 90px 10px rgb(80 52 255 / 3%);
   padding: 34px 38px;
   border-radius: 10px;
   background-color: var(--nst-white-color);
   border: 1px solid var(--nst-white-color);
}

.nst_common_model .modal-header {
   padding-top: 0;
   padding-bottom: 0;
   padding-left: 0;
   border: 0;
}

.nst_common_model button.btn-close {
   padding: 0;
   opacity: 1;
   position: absolute;
   top: 25px;
   right: 25px;
   width: 24px;
   height: 24px;
   background-color: var(--nst-primary-color);
   border-radius: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   background-repeat: no-repeat;
   background-size: auto;
}

.nst_common_model button.btn-close img {
   margin-bottom: 0.5px;
   display: none;
}

.nst_common_model .modal-body {
   padding: 20px 0 0 0;
}


.nst_common_model .nst_model_btn_list {
   margin-top: 15px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 15px;
}

.nst_common_model .nst_model_btn_list .pxt_btn {
   height: 34px;
   font-size: 14px;
   font-weight: 600;
   line-height: 34px;
   letter-spacing: 0em;
   text-align: center;
   min-width: 80px;
}

.nst_common_model .modal-header h5,
.nst_common_model .modal-title {
   font-size: 24px;
   font-weight: 700;
   line-height: 1.4;
   letter-spacing: 0em;
   text-align: left;
   color: #0F0E0E;
}

.model-subheading {
   font-size: 18px;
   font-weight: 700;
   line-height: 1.4;
   letter-spacing: 0em;
   text-align: left;
   color: var(--nst-title-color);
   margin-bottom: 15px;
}

.nst_common_model .nst_btn {
   min-width: 154px;
}

/*Purchase Plan Model Style*/

.nst_common_model.nst_tm_plan_purchase_model .nst_main_input .nst_custom_input {
   line-height: 50px;
   height: 50px;
}

.nst_common_model.nst_tm_plan_purchase_model .modal-content {
   padding: 30px !important;
}

.nst_common_model.nst_tm_plan_purchase_model .nst_custom_select.ant-select {
   height: 50px !important;
}

.nst_common_model.nst_tm_plan_purchase_model .nst_custom_select .ant-select-selector {
   font-size: 16px;
   color: #959595;
}



/*Thankyou Page Style*/

.nst_thankyou_message_content {
   width: 100%;
   text-align: center;
   background: linear-gradient(326.55deg, rgba(125, 55, 187, 0.06) 0%, rgba(241, 75, 148, 0.06) 50%, rgba(251, 188, 54, 0.06) 100%);
   min-height: 160px;
   border-radius: 10px;
   padding: 30px 30px 40px 30px;
   max-width: 750px;
   margin: 100px auto 30px auto;
}

.nst_thankyou_message_content .content_icon span svg {
   width: 70px;
   height: 70px;
   fill: #8F8F99;
}

.nst_thankyou_message_content .content_icon span {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 70px;
   height: 70px;
}

.nst_thankyou_message_content .content_icon {
   width: 70px;
   height: 70px;
   margin: 0 auto 5px auto;
}

.nst_thankyou_message_content h6 {
   font-style: normal;
   font-weight: 600;
   font-size: 24px;
   line-height: 1.4;
   text-align: center;
   color: #0F0E0E;
   max-width: 500px;
   margin: 0 auto 10px auto;
}

.nst_thankyou_message_content p {
   font-style: normal;
   font-weight: 600;
   font-size: 16px;
   line-height: 1.4;
   color: #959595;
   max-width: 600px;
   margin: 0 auto 20px auto;
}

.nst_thankyou_message_content .nst_btn {
   text-transform: capitalize;
}

/**/

.nst_select_datepicker.Cc_date_picker .ant-picker-outlined {
   border: 1px solid #E2E8F0 !important;
   height: 50px !important;
}

.nst_select_datepicker.Cc_date_picker .ant-picker-outlined:focus-within {
   border-color: #E2E8F0 !important;
}

.ant-picker-dropdown {
   z-index: 999999999 !important;
}

.nst_select_datepicker.Cc_date_picker .ant-picker-input>input {
   text-align: left;
   font-size: 16px;
   font-weight: 500;
   letter-spacing: 0em;
   color: #959595;
}

.ant-select-dropdown {
   z-index: 9999999995 !important;
}


/*Local Switcher Style*/
.sideber_open li.LocaleSwitcher_list {
   width: 100%;
}

.sideber_open .LocaleSwitcher_list .nst_language_selector_wrapper {
   width: 100% !important;
}

.sideber_open .LocaleSwitcher_list .nst_language_selector_wrapper .nst_language_selector_header .nst_lg_arrow {
   right: 10px;
}
/*!************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./app/[locale]/page.module.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************/
.page_main__d9_kd {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 6rem;
  min-height: 100vh;
}

.page_description__voeGj {
  display: inherit;
  justify-content: inherit;
  align-items: inherit;
  font-size: 0.85rem;
  max-width: var(--max-width);
  width: 100%;
  z-index: 2;
  font-family: var(--font-mono);
}

.page_description__voeGj a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.page_description__voeGj p {
  position: relative;
  margin: 0;
  padding: 1rem;
  background-color: rgba(var(--callout-rgb), 0.5);
  border: 1px solid rgba(var(--callout-border-rgb), 0.3);
  border-radius: var(--border-radius);
}

.page_code__Plm3B {
  font-weight: 700;
  font-family: var(--font-mono);
}

.page_grid__g6Npk {
  display: grid;
  grid-template-columns: repeat(4, minmax(25%, auto));
  max-width: 100%;
  width: var(--max-width);
}

.page_card__Gl9ZG {
  padding: 1rem 1.2rem;
  border-radius: var(--border-radius);
  background: rgba(var(--card-rgb), 0);
  border: 1px solid rgba(var(--card-border-rgb), 0);
  transition: background 200ms, border 200ms;
}

.page_card__Gl9ZG span {
  display: inline-block;
  transition: transform 200ms;
}

.page_card__Gl9ZG h2 {
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.page_card__Gl9ZG p {
  margin: 0;
  opacity: 0.6;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 30ch;
  text-wrap: balance;
}

.page_center__QzAou {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 4rem 0;
}

.page_center__QzAou::before {
  background: var(--secondary-glow);
  border-radius: 50%;
  width: 480px;
  height: 360px;
  margin-left: -400px;
}

.page_center__QzAou::after {
  background: var(--primary-glow);
  width: 240px;
  height: 180px;
  z-index: -1;
}

.page_center__QzAou::before,
.page_center__QzAou::after {
  content: "";
  left: 50%;
  position: absolute;
  filter: blur(45px);
  transform: translateZ(0);
}

.page_logo__1hJen {
  position: relative;
}
/* Enable hover only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .page_card__Gl9ZG:hover {
    background: rgba(var(--card-rgb), 0.1);
    border: 1px solid rgba(var(--card-border-rgb), 0.15);
  }

  .page_card__Gl9ZG:hover span {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion) {
  .page_card__Gl9ZG:hover span {
    transform: none;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .page_content__15ajy {
    padding: 4rem;
  }

  .page_grid__g6Npk {
    grid-template-columns: 1fr;
    margin-bottom: 120px;
    max-width: 320px;
    text-align: center;
  }

  .page_card__Gl9ZG {
    padding: 1rem 2.5rem;
  }

  .page_card__Gl9ZG h2 {
    margin-bottom: 0.5rem;
  }

  .page_center__QzAou {
    padding: 8rem 0 6rem;
  }

  .page_center__QzAou::before {
    transform: none;
    height: 300px;
  }

  .page_description__voeGj {
    font-size: 0.8rem;
  }

  .page_description__voeGj a {
    padding: 1rem;
  }

  .page_description__voeGj p,
  .page_description__voeGj div {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
  }

  .page_description__voeGj p {
    align-items: center;
    inset: 0 0 auto;
    padding: 2rem 1rem 1.4rem;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(var(--callout-border-rgb), 0.25);
    background: linear-gradient(
      to bottom,
      rgba(var(--background-start-rgb), 1),
      rgba(var(--callout-rgb), 0.5)
    );
    background-clip: padding-box;
    backdrop-filter: blur(24px);
  }

  .page_description__voeGj div {
    align-items: flex-end;
    pointer-events: none;
    inset: auto 0 0;
    padding: 2rem;
    height: 200px;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgb(var(--background-end-rgb)) 40%
    );
    z-index: 1;
  }
}

/* Tablet and Smaller Desktop */
@media (min-width: 701px) and (max-width: 1120px) {
  .page_grid__g6Npk {
    grid-template-columns: repeat(2, 50%);
  }
}

@media (prefers-color-scheme: dark) {
  .page_vercelLogo__iZz5r {
    filter: invert(1);
  }

  .page_logo__1hJen {
    filter: invert(1) drop-shadow(0 0 0.3rem #ffffff70);
  }
}

@keyframes page_rotate__SEdbO {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./styles/landingpages/reactLib.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
.nst_tm_testimonial_wrapper swiper-slide {
    margin-bottom: 50px !important;
}

/*Model Slider Style*/
.nst_tm_artist_list_wrapper swiper-container swiper-slide:nth-child(even){
    margin-top: 15px !important;
}

/*Faq Sections*/

.nst_tm_faq_wrapper .MuiPaper-root {
    margin-bottom: 20px;
    box-shadow: none;
    border: 1px solid #E2E8F0;
    border-radius: 5px;
}
.nst_tm_faq_wrapper .MuiAccordion-root::before {
    display: none;
}

.nst_tm_faq_wrapper .MuiAccordion-root .accordion-button{
    padding: 4px 4px 4px 4px;
}

.nst_tm_faq_wrapper .MuiAccordion-root .accordion-body {
    padding: 0 5px 10px 45px;
}

.nst_tm_faq_wrapper .accordion-header{
    width: 100%;
}

/* .nst_tm_faq_wrapper [aria-expanded="true"] {
    background-color: yellow;
  } */

  .nst_tm_faq_wrapper [aria-expanded="true"]  .accordion-button::after{
    background-image: url('/assets/images/Template-Assets/down-arrow.png');
  }

  .MuiAccordionSummary-content.Mui-expanded{
    margin: 20px 0 10px 0 !important;
  }
/*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./styles/landingpages/swiper-bundle.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************/
/**
 * Swiper 8.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 4, 2022
 */

 @font-face {
    font-family: 'swiper-icons';
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
    font-weight: 400;
    font-style: normal;
  }
  :root {
    --swiper-theme-color: #007aff;
  }
  .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
  }
  .swiper-vertical > .swiper-wrapper {
    flex-direction: column;
  }
  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
  }
  .swiper-android .swiper-slide,
  .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
  }
  .swiper-pointer-events {
    touch-action: pan-y;
  }
  .swiper-pointer-events.swiper-vertical {
    touch-action: pan-x;
  }
  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
  }
  .swiper-slide-invisible-blank {
    visibility: hidden;
  }
  /* Auto Height */
  .swiper-autoheight,
  .swiper-autoheight .swiper-slide {
    height: auto;
  }
  .swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
  }
  .swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  /* 3D Effects */
  .swiper-3d,
  .swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
  }
  .swiper-3d .swiper-wrapper,
  .swiper-3d .swiper-slide,
  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom,
  .swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  /* CSS Mode */
  .swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
  }
  .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
  }
  .swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  .swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory;
  }
  .swiper-vertical.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory;
  }
  .swiper-centered > .swiper-wrapper::before {
    content: '';
    flex-shrink: 0;
    order: 9999;
  }
  .swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
  }
  .swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
  }
  .swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
  }
  .swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
  }
  .swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
  }
  .swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
  }
  .swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
  .swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
  .swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
  :root {
    --swiper-navigation-size: 44px;
    /*
    --swiper-navigation-color: var(--swiper-theme-color);
    */
  }
  .swiper-button-prev,
  .swiper-button-next {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
  }
  .swiper-button-prev.swiper-button-disabled,
  .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
  }
  .swiper-button-prev:after,
  .swiper-rtl .swiper-button-next:after {
    content: 'prev';
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
  }
  .swiper-button-next:after,
  .swiper-rtl .swiper-button-prev:after {
    content: 'next';
  }
  .swiper-button-lock {
    display: none;
  }
  :root {
    /*
    --swiper-pagination-color: var(--swiper-theme-color);
    --swiper-pagination-bullet-size: 8px;
    --swiper-pagination-bullet-width: 8px;
    --swiper-pagination-bullet-height: 8px;
    --swiper-pagination-bullet-inactive-color: #000;
    --swiper-pagination-bullet-inactive-opacity: 0.2;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-vertical-gap: 6px;
    */
  }
  .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }
  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
  }
  /* Common Styles */
  .swiper-pagination-fraction,
  .swiper-pagination-custom,
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px;
    left: 0;
    width: 100%;
  }
  /* Bullets */
  .swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  }
  button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
            -moz-appearance: none;
         appearance: none;
  }
  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }
  .swiper-pagination-bullet:only-child {
    display: none !important;
  }
  .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
  }
  .swiper-vertical > .swiper-pagination-bullets,
  .swiper-pagination-vertical.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
  }
  .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
  }
  .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
  .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 200ms transform, 200ms top;
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms left;
  }
  .swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms right;
  }
  /* Progress */
  .swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
  }
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > .swiper-pagination-progressbar,
  .swiper-pagination-progressbar.swiper-pagination-horizontal,
  .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
  .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
  }
  .swiper-vertical > .swiper-pagination-progressbar,
  .swiper-pagination-progressbar.swiper-pagination-vertical,
  .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
  .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
  }
  .swiper-pagination-lock {
    display: none;
  }
  /* Scrollbar */
  .swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
  }
  .swiper-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
  }
  .swiper-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
  }
  .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
  }
  .swiper-scrollbar-cursor-drag {
    cursor: move;
  }
  .swiper-scrollbar-lock {
    display: none;
  }
  .swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .swiper-zoom-container > img,
  .swiper-zoom-container > svg,
  .swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .swiper-slide-zoomed {
    cursor: move;
  }
  /* Preloader */
  :root {
    /*
    --swiper-preloader-color: var(--swiper-theme-color);
    */
  }
  .swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
  }
  .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
  .swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
  }
  .swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
  }
  @keyframes swiper-preloader-spin {
    100% {
      transform: rotate(360deg);
    }
  }
  /* a11y */
  .swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }
  .swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
  }
  .swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
  }
  .swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
  }
  .swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
  }
  .swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-fade .swiper-slide-active,
  .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-cube {
    overflow: visible;
  }
  .swiper-cube .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
  }
  .swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-cube .swiper-slide-active,
  .swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-cube .swiper-slide-active,
  .swiper-cube .swiper-slide-next,
  .swiper-cube .swiper-slide-prev,
  .swiper-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube .swiper-slide-shadow-top,
  .swiper-cube .swiper-slide-shadow-bottom,
  .swiper-cube .swiper-slide-shadow-left,
  .swiper-cube .swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
  .swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
  }
  .swiper-cube .swiper-cube-shadow:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px);
  }
  .swiper-flip {
    overflow: visible;
  }
  .swiper-flip .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
  }
  .swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none;
  }
  .swiper-flip .swiper-slide-active,
  .swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }
  .swiper-flip .swiper-slide-shadow-top,
  .swiper-flip .swiper-slide-shadow-bottom,
  .swiper-flip .swiper-slide-shadow-left,
  .swiper-flip .swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
  .swiper-creative .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
  .swiper-cards {
    overflow: visible;
  }
  .swiper-cards .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
/*!*****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./styles/landingpages/template-responsive.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************/
@media (min-width: 1750px) {
    .nst_tm_container {
        max-width: 1660px;
    }
    .inner_content .nst_tm_container {
        max-width: 1170px;
        margin: 0 auto;
    }
}

@media (max-width: 1850px) {
    .nst_tm_banner_wrapper .swiper.banner-slider {
        width: 100%;
        transform: scale(1);
        transform-origin: right top;
    }

    .nst_tm_banner_wrapper .banner-slider .swiper-slide {
        width: calc(100% - 53.8%);
        /* opacity: 0.95; */
    }
}

@media (min-width: 1580px) and (max-width: 1750px) {
    .nst_tm_container {
        max-width: 1500px;
    }
    .inner_content .nst_tm_container {
        max-width: 1170px;
    }

    .nst_tm_artist_list_wrapper .nst_tm_section_header {
        max-width: 1500px;
    }
}

@media (max-width: 1600px) {
    .nst_tm_banner_wrapper .banner-slider .swiper-slide {
        width: calc(100% - 53.2%);
    }
    .nst_tm_community_banner_wrapper {
        margin: 45px auto 0 auto;
    }
}

@media (max-width: 1550px) {
    .nst_tm_sec_heading .section_title {
        font-size: 35px;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>h2 {
        font-size: 45px;
    }

    .nst_tm_about_wrapper .nst_tm_about_details {
        padding-right: 100px;
    }

    .heading_details h4 {
        font-size: 35px;
    }

    .nst_tm_artist_list_wrapper .hd_light_bg {
        font-size: 75px;
    }

    .nst_tm_community_banner_wrapper .nst_tm_community_banner_inner .banner_hd {
        font-size: 35px;
    }

    /*Sedcard page (about) Style */

    .nst_sc_about .sc_tmp_user_name {
        font-size: 28px;
    }
    .nst_sc_about .sc_tmp_users_details_wrapper {
        margin-bottom: 10px;
    }

    /**/
    .nst_tm_artist_info .artist_details h5{
        font-size: 15px;
    }
    .nst_tm_artist_info .artist_details p{
        font-size: 14px;
    }
    .nst_tm_artist_info .arrow_btn {
        width: 30px;
        height: 30px;
    }
    .nst_tm_artist_info span.arrow_btn svg{
        width: 14px;
        height: 14px;
    }

}

@media (max-width: 1440px) {
    .nst_tm_artist_list_wrapper a.nst_btn {
        min-width: 200px;
    }
    .nst_tm_testimonial_wrapper {
        padding: 50px 0;
    }
    .nst_tm_service_wrapper {
        padding: 50px 0;
    }

    .nst_tm_community_banner_wrapper {
        margin: 30px auto 0 auto;
    }
    .nst_tm_banner_media_content {
        width: 115px;
        gap: 2px;
    }

    .nst_tm_banner_media_content h6 {
        font-size: 15px;
        font-weight: 600;
    }

    .nst_tm_banner_media_content p {
        font-size: 13px;
    }

    .nst_tm_banner_wrapper .banner-slider .swiper-slide {
        width: calc(100% - 50.5%);
    }

    .about_img_wrapper img {
        min-height: 100%;
        max-height: 100%;
    }


    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .nst_tm_banner_wrapper {
        padding: 60px 0 45px 0;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>span {
        margin-bottom: 10px;
        display: block;
    }

    .nst_tm_sec_heading .section_title {
        font-size: 32px;
    }
    .nst_tm_bread_wrapper .nst_tm_bread_title {
        font-size: 32px;
    }

    .heading_details h4 {
        font-size: 32px;
    }

    .nst_tm_community_banner_wrapper .nst_tm_community_banner_inner .banner_hd {
        font-size: 32px;
    }

    .nst_tm_artist_list_wrapper .hd_light_bg {
        font-size: 72px;
    }

    .nst_tm_about_wrapper .nst_tm_about_details {
        padding-right: 0;
    }

    .nst_tm_footer_wrapper {
        padding: 40px 0 20px 0;
    }

    .nst_tm_footer_wrapper .nst_tm_footer_inner {
        margin-bottom: 20px;
        padding-bottom: 30px;
    }

    .nst_tm_header_nav > ul {
        gap: 30px;
    }

    .nst_tm_header_nav {
        padding: 15px 0;
    }

    .nst_tm_hdr_logo img {
        width: 118px;
        height: 46px;
    }

    .nst_tm_header_wrapper .nst_tm_btn_list .nst_btn {
        min-width: 110px;
        height: 42px;
        line-height: 42px;
    }

    .nst_tm_header_wrapper .nst_tm_btn_list .link_icon {
        margin-right: 10px;
    }

    .nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details {
        padding: 10px;
    }

    .nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details h6 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details p {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details .read_m {
        font-size: 14px;
    }

    .nst_tm_service_wrapper .nst_tm_service_data {
        margin-top: 20px;
    }
    .nst_tm_service_wrapper .nst_tm_sec_heading {
        margin-bottom: 0;
    }

    /*Sedcard page (about) Style */

    .nst_sc_about .sc_tmp_user_name {
        font-size: 28px;
    }
    .nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card .sc_tmp_fun_fact_card_info h4 {
        font-size: 24px;
    }
    .nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card {
        min-width: 210px;
    }
    .nst_sc_about .sc_tmp_users_details_wrapper {
        gap: 5px;
    }

    /*Our Model Section Style */

    .nst_tm_our_model_wrapper{
        padding: 50px 0;
    }

}

@media (min-width: 1440px) {
    .nst_tm_price_plan_wrapper .nst_tm_container {
        max-width: 1200px;
     }
}

@media (min-width: 1440px) and (max-width: 1580px) {
    .nst_tm_container {
        max-width: 1360px;
    }
    .inner_content .nst_tm_container {
        max-width: 1170px;
    }

    .nst_tm_artist_list_wrapper .nst_tm_section_header {
        max-width: 1360px;
    }
    .nst_tm_artist_list_wrapper .swiper-wrapper {
        margin-bottom: 50px;
    }
}

@media (min-width: 1220px) and (max-width: 1440px) {
    .nst_tm_container {
        max-width: 88%;
    }

    .nst_tm_artist_list_wrapper .nst_tm_section_header {
        max-width: 88%;
    }
    .nst_tm_artist_list_wrapper .swiper-wrapper {
        margin-bottom: 50px;
    }
}


@media (max-width: 1219px) {
    .nst_tm_price_plan_wrapper .nst_tm_price_plan_data {
        padding: 20px;
    }
    .nst_tm_artist_list_wrapper .swiper-wrapper {
        margin-bottom: 45px;
    }
    .nst_tm_artist_list_wrapper .artist-list-slider {
        margin: 0 50px;
    }
    .nst_tm_artist_list_wrapper.nst_tm_photographer_wrapper .artist-list-slider {
        margin: 0 50px;
    }
    .nst_tm_artist_list_wrapper a.nst_btn {
        min-width: 180px;
    }
    .nst_tm_bread_wrapper{
        width: 100%;
        border-radius: 0;
        padding: 50px 0;
    }
    .nst_tm_banner_media_content {
        width: 85px;
        gap: 1px;
    }

    .nst_tm_banner_media_content h6 {
        font-size: 12px;
        font-weight: 700;
    }

    .nst_tm_banner_media_content p {
        font-size: 10px;
    }

    .nst_tm_banner_wrapper .banner-slider .swiper-slide {
        width: calc(100% - 49.5%);
    }

    .nst_tm_artist_list_wrapper .hd_light_bg {
        line-height: 1;
        margin-bottom: 10px;
    }

    /* .nst_tm_service_wrapper .nst_tm_service_thumb img {
        max-height: 150px;
        min-height: 150px;
    } */

    .nst_tm_sec_heading {
        margin-bottom: 25px;
    }

    .nst_tm_about_wrapper {
        padding: 60px 0 35px 0;
    }

   
    .partner_container .partner_img_wrapper {
        padding: 10px;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>h2 {
        font-size: 28px;
    }

    .nst_tm_sec_heading .section_title {
        font-size: 28px;
    }

    .heading_details h4 {
        font-size: 28px;
    }

    .nst_tm_community_banner_wrapper .nst_tm_community_banner_inner .banner_hd {
        font-size: 28px;
        text-align: center;
    }

    .nst_tm_community_banner_wrapper .nst_tm_community_banner_inner p {
        text-align: center;
    }

    .nst_tm_artist_list_wrapper .hd_light_bg {
        font-size: 56px;
    }

    .nst_tm_container {
        max-width: 90%;
    }

    .nst_tm_artist_list_wrapper .nst_tm_section_header {
        max-width: 90%;
    }

    .nst_tm_testimonial_wrapper .nst_tm_testimonial_card {
        padding: 20px;
    }

    .nst_tm_ftr_logo img {
        width: 120px;
        height: 45px;
    }

    .nst_tm_footer_wrapper {
        padding: 30px 0 20px 0;
    }

    .nst_tm_footer_wrapper .nst_tm_ftr_nav ul {
        gap: 20px;
    }

    .nst_tm_ftr_social_nav ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .nst_tm_about_details .nst_tm_sec_heading .section_title {
        font-size: 24px;
    }
    .nst_tm_bread_wrapper .nst_tm_bread_title {
        font-size: 24px;
        text-align: center;
    }
    .nst_tm_tm_policy_wrapper .nst_tm_m_hd {
        font-size: 24px;
    }
    .nst_tm_tm_policy_wrapper .nst_tm_m_hd.nst_tm_m_hd_medium {
        font-size: 18px;
    }
    .nst_tm_about_wrapper .about_list_details_wrapper h6 {
        font-size: 18px;
    }

    .nst_tm_about_wrapper .about_list_details_wrapper .icon_cart {
        width: 35px;
        height: 35px;
    }

    /* .nst_tm_hdr_menu{
        display: none;
    } */
    .nst_btn {
        min-width: 140px;
        height: 42px;
        font-size: 14px;
        font-weight: 600;
        line-height: 42px;
    }

    .nst_tm_header_nav > ul {
        gap: 20px;
    }

    .nst_tm_banner_wrapper {
        width: 100%;
    }

    .nst_tm_banner_wrapper .nst_btn {
        min-width: 140px;
    }

    /*Membership Page Style*/
    .nst_tm_bollet_points_info_wrapper .m_hd.mb2 {
        font-size: 20px;
    }
    .nst_tm_faq_wrapper .accordion-button {
        font-size: 16px;
    }
    .nst_tm_faq_wrapper .accordion-body {
        font-size: 15px;
        padding: 0 5px 15px 40px;
    }
    .nst_tm_header_wrapper .nst_tm_btn_list .nst_btn {
        height: 38px;
        line-height: 38px;
    }

    /*Contact Page Style*/
    .nst_tm_contact_wrapper {
        padding: 50px 0;
    }
    .nst_tm_contact_wrapper .nst_tm_contact_form .nst_tm_from_heading h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .nst_tm_contact_wrapper .nst_tm_contact_form .nst_tm_from_heading {
        margin-bottom: 15px;
    }

    /*Our Model Section Style */
    .nst_tm_our_model_list_inner .our_model_details_wrapper .user_name {
        font-size: 16px;
    }
    /* .nst_tm_our_model_list_inner .our_model_img_wrapper > img {
        max-height: 225px;
        min-height: 225px;
    } */
    .nst_sc_about {
        padding: 50px 0 50px 0;
    }

    /*Community Banner Style*/
    .nst_tm_community_banner_wrapper{
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    /*Service Page Style*/
    .service_list .about_img_wrapper img {
        min-height: 100%;
        max-height: 400px;
        transform: scale(1);
    }
    /*Price Plan Sections Style*/
    .nst_tm_price_plan_wrapper {
        padding: 50px 0 0px 0;
    }
    .nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_price_box .title{
        font-size: 20px;
    }
    .nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_price_box .price {
        font-size: 28px;
    }
    .nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_bollet_points_info_wrapper {
        padding-top: 15px;
        margin-bottom: 30px;
    }
    .nst_tm_price_plan_wrapper .nst_tm_price_plan_data .nst_tm_bollet_points_info_wrapper ul li p {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {

    
    .nst_tm_artist_card{
        padding-top: 110%;
    }
   
    .nst_tm_bread_wrapper {
        padding: 30px 0;
    }
    .nst_tm_banner_wrapper .nst_tm_container {
        max-width: 94%;
    }

    .nst_tm_banner_wrapper .banner-slider .swiper-slide {
        width: calc(100% - 51.6%);
    }

    .swiper-slide-fully-visible.swiper-slide-active .nst_tm_banner_media:before {
        box-shadow: none;
    }

    .nst_tm_banner_wrapper {
        padding: 40px 0 40px 0;
    }

    .nst_tm_section_header.flip_header .heading_details .heading_pera p {
        text-align: right;
    }

    .artist-list-slider .swiper-slide:nth-child(even) {
        margin-top: 0 !important;
    }
    .nst_tm_artist_list_wrapper swiper-container swiper-slide:nth-child(even){
        margin-top: 0 !important;
    }

    .nst_tm_artist_list_wrapper .artist-list-slider {
        margin-left: 0;
        margin: 0 35px;
    }
    .nst_tm_artist_list_wrapper.nst_tm_photographer_wrapper .artist-list-slider {
        margin: 0 35px;
    }

    .nst_tm_container {
        max-width: 98%;
    }
    .inner_content .nst_tm_container{
        max-width: 85%;
    }

    .nst_tm_footer_wrapper {
        padding: 15px 0 20px 0;
    }

    .nst_tm_footer_wrapper .nst_tm_footer_inner {
        margin-bottom: 15px;
        padding-bottom: 19px;
    }

    .nst_tm_ftr_logo img {
        width: 100px;
        height: 40px;
    }

    .nst_tm_ftr_social_nav ul {
        gap: 15px;
    }

    .nst_tm_ftr_social_nav ul li>a svg {
        width: 16px;
        height: 16px;
    }

    /*Membership Page Style*/
    .nst_tm_bollet_points_info_wrapper .m_hd.mb2 {
        font-size: 18px;
    }

    /*Our Model Section Style */

    .nst_tm_our_model_wrapper .filter_wrapper {
        flex-wrap: wrap;
    }
    .nst_tm_our_model_wrapper .filter_wrapper .nst_select {
        position: relative;
        width: 30%;
    }

    /*Sedcard page (about) Style */

    .nst_sc_about .sc_tmp_user_name {
        font-size: 24px;
    }
    .nst_sc_about .sc_tmp_accnt_dsgn_name {
        font-size: 15px;
    }
    .nst_sc_about .sc_tmp_follower {
        font-size: 16px;
    }
    .nst_sc_about .sc_tmp_accnt_adr {
        font-size: 15px;
    }
    .nst_sc_about .sc_tmp_full_bio {
        font-size: 15px;
        margin-bottom: 5px;
        max-width: 100%;
    }
    .nst_sc_about .sc_tmp_pay_info .sc_tmp_pay_inner h6 {
        font-size: 18px;
    }
    .nst_sc_about .sc_tmp_pay_info .sc_tmp_pay_inner .sc_tmp_icon img {
        width: 18px;
        height: 18px;
    }
    .nst_sc_about .sc_tmp_pay_info .sc_tmp_pay_inner .sc_tmp_icon {
        width: 18px;
        height: 18px;
    }
    .nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card {
        min-width: auto;
    }
    .nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card .sc_tmp_fun_fact_card_info h4 {
        font-size: 16px;
        margin-bottom: 0;
        line-height: 1.4;
    }
    .nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card .sc_tmp_fun_fact_card_icn {
        width: 30px;
        height: 30px;
    }
    .nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card .sc_tmp_fun_fact_card_icn img {
        width: 30px;
        height: 30px;
    }
    .nst_sc_about .sc_tmp_action_list .nst_btn {
        min-width: 110px;
        height: 45px;
        font-size: 14px;
        line-height: 45px;
        z-index: 1;
    }

    /*Our Models Section Style*/
    .nst_tm_our_model_list_inner .our_model_img_wrapper {
        padding-top: 100%;
    }
}

@media (max-width: 991px) {
    .nst_tm_banner_wrapper .banner-slider .swiper-slide {
        width: calc(100% - 65.6%);
    }

    /*Responsive Toggle Style */
    .nst_tm_header_nav>.nst_tm_hdr_logo {
        display: none;
    }

    .nst_tm_toggle_btn {
        display: block !important;
        margin-top: 5px;
    }

    .nst_tm_toggle_btn span {
        width: 30px;
        height: 4px;
        background-color: var(--nst-primary-color);
        margin-bottom: 5px;
        display: block;
        margin-left: auto;
        transition: all 0.3s ease-in-out;
    }

    .menu-open .nst_tm_toggle_btn>span:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: 24px -1px;
    }

    .menu-open .nst_tm_toggle_btn>span:nth-child(2) {
        transform: translateX(20px);
        visibility: hidden;
        opacity: 0;
    }

    .menu-open .nst_tm_toggle_btn>span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nst_tm_header_nav ul {
        gap: 20px;
        position: fixed;
        top: 0px;
        left: -210px;
        width: 210px;
        height: 100%;
        background-color: #fff;
        box-shadow: 1.5px 3.99px 27px 0px rgb(0 0 0 / 10%);
        transition: all 0.3s ease-in-out;
        padding: 20px;
        z-index: 9999;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nst_tm_header_nav ul.sideber_open {
        left: 0;
    }

    .sidebar_top {
        display: flex !important;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }

    .sidebar_top .nst_close_toggle .toggle-btn {
        background: linear-gradient(0deg, #7D37BB 0.64%, #F14B94 50.38%, #FBBC36 100.13%);
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        height: 20px;
        width: 20px;
    }

    .sidebar_top .nst_close_toggle .toggle-btn svg {
        fill: #fff;
    }

    /*Submenu Dropdown Style*/
    .nst_tm_header_nav ul .submenu_list.sb_menu_open .submenu_wrapper{
        display: flex;
    }
    .nst_tm_header_nav ul .submenu_list .submenu_wrapper {
        gap: 5px;
        padding: 10px 0 0 10px;
        position: relative;
        top: 0;
        min-width: 100%;
        box-shadow: none;
        width: 100%;
        display: none;
        height: -moz-max-content;
        height: max-content;
        left: 0;
    }
    .nst_tm_header_nav ul{
        gap: 10px;
    }

    /**/
    .nst_tm_about_wrapper .nst_tm_about_details {
        padding: 0 35px;
    }
    .inner_content .nst_tm_about_details{
        padding: 0;
    }
    

    /* .nst_tm_hdr_menu{
        display: none;
    } */
    .nst_tm_banner_content {
        text-align: center;
        margin-bottom: 30px;
        padding: 10px;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>h2 {
        margin: 0 auto 10px auto;
        max-width: 700px;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>p {
        margin: 0 auto 10px auto;

    }

    .nst_tm_banner_wrapper .nst_tm_bnt_wrapper {
        justify-content: center;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>span {

        margin-bottom: 10px;
        display: block;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>h2 {
        font-size: 32px;
    }

    .nst_tm_header_nav {
        padding: 15px 15px;
    }

    .nst_tm_community_banner_wrapper {
        margin: 0;
        border-radius: 0;
    }
      /*Our Model Section Style */
    /* .nst_tm_our_model_list_inner .our_model_img_wrapper > img {
        max-height: 190px;
        min-height: 190px;
    } */

    /*Service page Style */
    .nst_tm_about_wrapper.service_list .nst_tm_sec_heading .section_title_pera{
        max-width: 100%;
    }
    .service_list .about_img_wrapper img {
        min-height: auto;
        max-height: 100%;
        transform: scale(1);
        margin: 0 auto 0 0;
    }

    /*Sedcard page (about) Style */

    .nst_sc_about .sc_tmp_users_details_wrapper {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .nst_sc_about_media_wrapper {
        margin-bottom: 30px;    
    }
    .nst_sc_about .nst_sc_about_details {
        padding-left: 0;
    }
    .nst_sc_about .sedcard_cover_media_main {
        transform: scale(0.9);
    }
    .nst_tm_tm_policy_wrapper {
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .nst_tm_header_nav .nst_tm_hdr_right .nst_tm_btn_list .nst_language_selector_wrapper {
        display: none;
    }
    .sideber_open .LocaleSwitcher_list .nst_language_selector_wrapper .nst_lang_list_wrapper{
        width: 100% !important;
    }
    /*Thankyou Page Style*/
    .nst_thankyou_message_content .content_icon {
        width: 50px;
        height: 50px;
    }
    .nst_thankyou_message_content h6 {
        font-size: 20px;
    }
    .nst_thankyou_message_content p {
        font-size: 15px;
    }
    /*Model Style*/
    .nst_common_model .nst_btn {
        min-width: 100px;
    }
    .nst_common_model{
        background-color: #fff;
    }
    .nst_common_model .modal-header h5, .nst_common_model .modal-title {
        font-size: 20px;
    }
    .nst_common_model.nst_tm_plan_purchase_model .modal-dialog {
        margin: 0 auto;
        max-width: 100%;
        height: 100vh;
    }
    .nst_common_model.nst_tm_plan_purchase_model .modal-content {
        height: 100vh;
        border-radius: 0;
    }
    .nst_tm_price_plan_wrapper {
        padding: 30px 10px 0 10px;
    }
    .nst_tm_artist_list_wrapper .swiper-wrapper{
        margin-bottom: 15px;
    }
    .nst_tm_banner_wrapper .nst_tm_banner_inner>.row {
        flex-direction: column-reverse;
    }

    .nst_tm_banner_wrapper .banner-slider .swiper-slide {
        width: 40%;
    }

    .nst_tm_artist_list_wrapper a.nst_btn {
        min-width: 180px;
    }

    .swiper-wrapper {
        margin-bottom: 40px;
    }

    .nst_tm_artist_list_wrapper .heading_details {
        text-align: center;
    }

    .nst_tm_banner_wrapper {
        width: 100%;
        border-radius: 0;
    }

    .nst_tm_community_banner_wrapper {
        padding: 40px 10px;
        width: 100%;
    }

    .nst_tm_community_banner_wrapper .nst_tm_community_banner_inner .bnr_pre_title {
        font-size: 15px;
    }

    .nst_tm_community_banner_wrapper .nst_tm_community_banner_inner .banner_hd {
        font-size: 24px;
    }

    .nst_tm_community_banner_wrapper .nst_tm_community_banner_inner p {
        font-size: 15px;
    }

    .nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details h6 {
        font-size: 18px;
    }

    .nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details p {
        font-size: 14px;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>h2 {
        font-size: 28px;
    }

    .nst_tm_container {
        max-width: 94%;
    }

    .nst_tm_artist_list_wrapper .nst_tm_section_header {
        max-width: 94%;
    }

    .nst_tm_footer_wrapper .nst_tm_footer_inner {
        flex-direction: column;
        gap: 20px;
    }

    .nst_tm_artist_list_wrapper .hd_light_bg {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .nst_tm_section_header.flip_header {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .nst_tm_section_header.flip_header .heading_details {
        text-align: center;
    }

    .nst_tm_section_header.flip_header .heading_details .heading_pera p {
        text-align: center;
    }

    .nst_tm_section_header {
        align-items: center;
        justify-content: center;
        margin-bottom: 30px !important;
        flex-direction: column;
        gap: 20px;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>p {
        font-size: 15px;
        max-width: 500px;
    }

    .partner_img_wrapper img {
        max-width: 110px;
    }

    .partner_container .partner_img_wrapper {
        padding: 0;
    }

    .partner_container {
        flex-wrap: wrap;
    }
    /*Membership Page Style*/
    .bollet_grid .nst_tm_bollet_points_info_wrapper {
        width: 100%;
        flex: 0 0 100%;
    }

    /*Contact Page Style*/
    .nst_tm_contact_wrapper .nst_tm_contact_form {
        margin-bottom: 25px;
    }
    .nst_tm_input_wrapper .nst_tm_input{
        line-height: 50px;
        height: 50px;
    }
    .nst_tm_input_wrapper {
        margin-bottom: 15px;
    }
    .nst_tm_contact_wrapper {
        padding: 20px 0;
    }
    .nst_tm_contact_wrapper .nst_tm_map_wrapper iframe {
        height: 350px;
    }

    /*Our Model Section Style */
    .nst_tm_our_model_wrapper {
        padding: 35px 0 15px 0;
    }
    .nst_tm_our_model_list_inner .our_model_details_wrapper .user_name{
        font-size: 15px;
        margin-bottom: 2px;
    }
    .nst_tm_our_model_list_inner .our_model_details_wrapper .follow_details {
        font-size: 14px;
    }

    /*Sedcard page (about) Style */

    .nst_sc_about .sc_tmp_users_details_inner {
        width: 100%;
    }
    .nst_sc_about .sc_tmp_users_details_wrapper .sc_tmp_users_details_list_card .sc_tmp_details_heading {
        width: 115px;
    }
    .nst_sc_about .sc_tmp_users_details_wrapper .sc_tmp_users_details_list_card .sc_tmp_details_ans {
        width: calc(100% - 140px);
    }
    .nst_tm_service_wrapper .nst_tm_sec_heading .section_title_pera p,.nst_tm_testimonial_wrapper .nst_tm_sec_heading .section_title_pera p {
        text-align: center;
    }
    .nst_tm_testimonial_wrapper{
        padding: 40px 0 10px 0;
    }
    .nst_tm_contact_wrapper form{
        margin-bottom: 30px;
    }

    /*Language Switcher Style*/

    .nst_language_selector_wrapper .nst_language_selector_header .nst_lg_arrow{
        margin: 0 0 0 0;
        position: absolute;
        right: 4px;
    }
    .nst_language_selector_wrapper {
        width: 72px;
    }
    .nst_language_selector_wrapper .nst_language_selector_header p {
        font-size: 13px;
        margin-top: 4px;
    }
    .nst_language_selector_wrapper .nst_language_selector_header {
        padding: 2px 7px 5px 7px;
        height: 32px;
    }
    .nst_language_selector_wrapper .nst_lang_list_wrapper {
        padding: 5px 7px 9px 7px;
        top:38px;
    }
    .nst_language_selector_wrapper .nst_lang_list_wrapper .nst_lang_list_content .nst_lang_cn_icon {
        width: 26px;
        height: 20px;
    }
    .nst_language_selector_wrapper .nst_lang_list_wrapper .nst_lang_list_content img {
        min-width: auto;
        max-width: 100%;
        min-height: auto;
        max-height: 100%;
    }
    .nst_language_selector_wrapper .nst_lang_list_wrapper {
        width: 70px;
    }
    
    .nst_language_selector_wrapper .nst_lang_list_wrapper .nst_lang_list_content p {
        margin-top: 2px;
    }
    .nst_language_selector_wrapper .nst_lang_list_wrapper .nst_lang_list_content {
        margin-bottom: 5px;
    }
    .nst_language_selector_wrapper .nst_language_selector_header .nst_lang_cn_flag img {
        min-width: auto;
        max-width: 100%;
        min-height: auto;
        max-height: 100%;
    }
    .nst_language_selector_wrapper .nst_language_selector_header .nst_lang_cn_flag {
        width: 26px;
        height: 20px;
        min-width: 26px;
    }
    

}

@media (max-width: 575px) {
    /*Center Changes*/
    .nst_tm_about_wrapper .nst_tm_sec_heading{
        text-align: center;
    }
    .nst_tm_about_wrapper .nst_tm_sec_heading .section_title_pera p {
        text-align: center;
    }
    .nst_tm_about_wrapper .about_list_details_wrapper {
        align-items: center;
        flex-direction: column;
    }
    .about_list_details_wrapper .about_list_details_body,.nst_tm_about_wrapper .about_list_details_wrapper p {
        text-align: center;
    }
    .nst_tm_service_wrapper .nst_tm_service_data .nst_tm_service_details {
        text-align: center;
    }
    .nst_tm_testimonial_wrapper .nst_tm_testimonial_card>p {
        text-align: center;
        margin-top: 45px;
    }
    .nst_tm_testimonial_wrapper .nst_tm_testimonial_card .testimonial_client_details {
        justify-content: center;
    }
    .nst_tm_testimonial_card .quit_icon {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .nst_tm_faq_wrapper .MuiAccordion-root .accordion-button {
        text-align: center;
    }
    .nst_tm_faq_wrapper .MuiAccordion-root .accordion-body {
        text-align: center;
    }
    .nst_tm_contact_page .nst_tm_contact_content_body .nst_tm_from_heading{
        text-align: center;
    }
    .nst_tm_contact_page .nst_tm_contact_content_body .nst_tm_bnt_wrapper {
        text-align: center;
    }
    .nst_tm_membership_page.inner_content .nst_tm_bollet_points_info_wrapper ul li .ollet_points_check{
        display: none;
    }


    .nst_tm_sd_card_page.inner_content .sc_media_thumb_wrapper.sc_media_cv_1:before{
        left: 5px;
    }
    .nst_tm_sd_card_page.inner_content .nst_sc_about_media_wrapper {
        margin-bottom: 10px;
    }
    .nst_tm_contact_page.inner_content {
        padding: 15px;
    }
    .nst_tm_tm_policy_wrapper {
        padding: 20px 0;
    }
    .nst_tm_banner_wrapper .banner-slider .swiper-slide {
        width: 47%;
    }
    .copyright_text {
        font-size: 14px;
    }
    .nst_tm_footer_wrapper .nst_tm_ftr_nav ul {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nst_tm_footer_wrapper .nst_tm_ftr_nav ul li a {
        font-size: 14px;
        white-space: pre;
    }

    .nst_tm_about_wrapper .nst_tm_about_details {
        padding: 0 10px;
    }
    .inner_content .nst_tm_about_details{
        padding: 0;
    }

    .nst_tm_banner_wrapper {
        padding: 35px 0 5px 0;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>h2 {
        font-size: 28px;
    }

    .nst_tm_sec_heading .section_title {
        font-size: 24px;
    }

    .heading_details h4 {
        font-size: 24px;
    }

    .nst_tm_community_banner_wrapper .nst_tm_community_banner_inner .banner_hd {
        font-size: 24px;
    }

    .nst_tm_artist_list_wrapper .hd_light_bg {
        font-size: 30px;
        top: 20px;
    }

    .nst_tm_header_wrapper .nst_tm_btn_list .nst_btn {
        min-width: 75px;
        height: 30px;
        line-height: 30px;
    }

    .nst_tm_hdr_logo img {
        width: 100px;
        height: 40px;
    }

    .nst_tm_about_wrapper {
        padding: 40px 0 35px 0;
    }
    .nst_tm_about_wrapper.service_list{
        padding: 25px 10px 10px 10px;
    }
    .nst_tm_about_wrapper.membership_features_list{
        padding: 30px 0 0 0;
    }
    .nst_tm_service_wrapper {
        padding: 40px 0;
    }
    

    .nst_tm_about_wrapper .nst_tm_bnt_wrapper {
        text-align: center;
    }

    .nst_tm_sec_heading {
        margin-bottom: 25px;
    }

    .partner_container {
        gap: 8px;
    }
    .nst_tm_bread_wrapper .nst_tm_bread_pre_hd {
        font-size: 14px;
    }
    .inner_content .nst_tm_container {
        max-width: 95%;
    }

    /*Our Model Section Style */

    .nst_tm_our_model_wrapper .filter_wrapper .nst_select {
        width: 48%;
    }

    /*Sedcard page (about) Style */
    
    .nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card {
        width: 100%;
    }
    .nst_sc_about .sc_tmp_users_details_wrapper .sc_tmp_users_details_list_card .sc_tmp_details_ans {
        width: calc(100% - 160px);
    }
    .nst_sc_about .sc_tmp_users_details_wrapper .sc_tmp_users_details_list_card .sc_tmp_details_heading {
        width: 110px;
    }
    .nst_sc_about .sc_tmp_user_name {
        font-size: 20px;
    }
    .nst_sc_about .sc_tmp_full_bio {
        font-size: 14px;
    }
    .nst_sc_about .sc_tmp_follower {
        font-size: 15px;
    }
    .nst_sc_about .sc_tmp_users_details_wrapper .sc_tmp_users_details_list_card .sc_tmp_details_heading h6, 
    .sc_tmp_users_details_list_card .sc_tmp_details_ans p {
        font-size: 14px;
    }
    .nst_sc_about .sc_tmp_pay_info .sc_tmp_pay_inner h6 {
        font-size: 16px;
    }
    .nst_sc_about .sc_tmp_action_list .nst_btn {
        min-width: 75px;
        height: 35px;
        font-size: 12px;
        line-height: 35px;
        gap: 5px;
    }
    .nst_sc_about .sc_tmp_action_list .nst_btn .nst_btn_icon svg {
        width: 14px;
        height: 14px;
    }
    .nst_sc_about .sc_tmp_action_list {
        gap: 8px;
        justify-content: center;
    }
    .nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card .sc_tmp_fun_fact_card_icn img {
        width: 25px;
        height: 25px;
    }
    .nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card .sc_tmp_fun_fact_card_info h4 {
        font-size: 15px;
    }
    .nst_sc_about .sc_tmp_fun_facts .sc_tmp_fun_fact_card .sc_tmp_fun_fact_card_info p {
        font-size: 14px;
    }
    .nst_sc_about {
        padding: 40px 15px 40px 15px;
    }
    /*Contact Page Style*/
    .nst_tm_contact_wrapper .nst_tm_contact_form .nst_tm_from_heading p {
        font-size: 15px;
    }
    .nst_tm_contact_wrapper .nst_tm_contact_form .nst_tm_from_heading h3 {
        font-size: 20px;
    }

    /*Policy Page */

    .nst_tm_tm_policy_wrapper .nst_tm_m_hd {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .nst_tm_tm_policy_wrapper .nst_tm_m_hd.nst_tm_m_hd_medium{
        margin-bottom: 5px;
    }
    .nst_tm_tm_policy_wrapper p{
        margin-bottom: 5px;
        font-size: 15px;
    }
    .nst_tm_artist_list_wrapper {
        padding: 60px 0 40px 0;
    }
    /*Faq Section Style*/
    .nst_tm_faq_wrapper{
        padding: 20px 10px;
    }
    .nst_tm_faq_wrapper .MuiAccordion-root .accordion-body {
        padding: 0 5px 10px 0 !important;
    }
    .nst_tm_faq_wrapper .accordion-button .faq-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    .MuiAccordionSummary-content.Mui-expanded {
        margin: 10px 0 0 0 !important;
    }
    .nst_tm_faq_wrapper .accordion-body{
        margin-bottom: 0 !important;
    }

    /*Sedcard Template Pages*/
    .nst_tm_sd_card_page.inner_content .nst_sc_about {
        padding: 0 10px 30px 10px;
    }
    .nst_tm_sd_card_page.inner_content .nst_tm_our_model_wrapper .nst_tm_our_model_content_body{
        margin: 0 5px;
    }
    .nst_tm_sd_card_page.inner_content .nst_tm_our_model_list_inner .our_model_details_wrapper {
        text-align: center;
        padding: 10px 0;
    }
    .nst_lang_list_content:hover .tooltip_icon{
        opacity: 0;
        visibility: hidden;
     }
     .nst_sc_about .sc_tmp_user_name .verify_account_icn{
        width: 16px;
        height: 16px;
        min-width: 16px;
     }
}

@media (max-width: 480px) {

    /*Our Model Section Style */

    .nst_tm_our_model_wrapper .filter_wrapper .nst_select {
        width: 100%;
    }

    .nst_tm_banner_wrapper .banner-slider .swiper-slide {
        width: 52%;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>h2 {
        font-size: 24px;
    }

    .nst_tm_sec_heading .section_title {
        font-size: 20px;
    }

    .heading_details h4 {
        font-size: 20px;
    }

    .nst_tm_community_banner_wrapper .nst_tm_community_banner_inner .banner_hd {
        font-size: 20px;
    }

    .nst_tm_about_details .nst_tm_sec_heading .section_title {
        font-size: 20px;
    }
    .nst_tm_bread_wrapper .nst_tm_bread_title {
        font-size: 18px;
    }

    .nst_tm_about_wrapper .about_list_details_wrapper p {
        font-size: 15px;
    }

    .nst_tm_about_wrapper .about_list_details_wrapper h6 {
        font-size: 16px;
    }

    .nst_tm_sec_heading .section_title_pera p {
        font-size: 15px;
    }

    .nst_tm_sec_heading .section_pre_title {
        font-size: 15px;
    }

    .nst_tm_banner_wrapper .nst_tm_banner_inner .nst_tm_banner_content>span {
        font-size: 15px;
    }
    .nst_tm_header_wrapper .nst_tm_btn_list .nst_btn{
        height: 28px;
        line-height: 28px;
        font-size: 12px;
    }
     /*Membership Page Style*/
     .nst_tm_bollet_points_info_wrapper .m_hd.mb2 {
        font-size: 16px;
    }
    .nst_tm_faq_wrapper .accordion-button {
        font-size: 15px;
    }
}
