:root {
  --themecolor: #DDFE00;
  --redcolor: #FF5151;
  --blackcolor: #000;
  --lightblack: #191D20;
  --lightgrey: #95958F;
  --textcolor: ;
  --bluecolor: #2496ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
}

img {
  padding: 0px;
  margin: 0px;
  max-width: 100%;
}

a,
button {
  transition: 0.4s all;
}

button,
button:focus {
  outline: none !important;
  border: none;
}

textarea,
input[type="text"],
input[type="text"]:focus,
select,
input[type="email"],
input[type="email"]:focus,
input[type="number"],
input[type="number"]:focus,
input[type="password"],
input[type="password"]:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
}

/* common classes */
.text-theme {
  color: var(--themecolor);
}

a.text-theme:hover {
  color: var(--themecolor);
  opacity: 85%;
}

.bg-theme {
  background-color: var(--themecolor);
}

.text-light-grey {
  color: var(--lightgrey);
}

.text-balck {
  color: var(--blackcolor);
}

.bg-black {
  background-color: var(--blackcolor);
}

.bg-none {
  background: transparent;
  background-color: transparent;
}

.form-control:focus,
.btn:focus {
  box-shadow: none;
}

.f-20 {
  font-size: 20px;
}

.f-24 {
  font-size: 24px;
}

.f-20 {
  font-size: 20px;
}

.f-18 {
  font-size: 18px;
}

.f-15 {
  font-size: 15px;
}

.f-14 {
  font-size: 14px;
}

.f-13 {
  font-size: 13px;
}

.f-12 {
  font-size: 12px;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-500 {
  font-weight: 500;
}

.fw-400 {
  font-weight: normal;
}

.btn-theme {
  display: inline-block;
  background-color: var(--themecolor);
  color: var(--blackcolor);
  text-align: center;
}

.btn-theme:hover {
  color: var(--blackcolor);
  background-color: rgb(221 254 0 / 89%);
}

.bg-red {
  background-color: var(--redcolor) !important;
}

.pt-100,
.py-100 {
  padding-top: 100px;
}

.pb-100,
.py-100 {
  padding-bottom: 100px;
}

.pt-90,
.py-90 {
  padding-top: 90px;
}

.pb-90,
.py-90 {
  padding-bottom: 90px;
}

.pt-80,
.py-80 {
  padding-top: 80px;
}

.pb-80,
.py-80 {
  padding-bottom: 80px;
}

.pt-70,
.py-70 {
  padding-top: 70px;
}

.pb-70,
.py-70 {
  padding-bottom: 70px;
}

.pt-60,
.py-60 {
  padding-top: 60px;
}

.pb-60,
.py-60 {
  padding-bottom: 60px;
}

h2 {
  font-size: 48px;
}


/*login===================*/
.auth-page {
  background-image: url(../images/login.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}

.auth-page .auth-box {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.logo-login {
  margin-bottom: 42px;
}

.auth-page h2 {
  font-size: 58px;
  font-weight: 700;
}

.auth-page .form-box {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.auth-page label {
  font-size: 16px;
  color: var(--lightgrey);
  margin-bottom: 10px;
}

.auth-input-field {
  margin-bottom: 27px;
}

.auth-input {
  position: relative;
}

.auth-input .icon {
  position: absolute;
  left: 20px;
  height: 18px;
  bottom: 23px;
  width: 15px;
  object-fit: contain;
}

.auth-page .form-control {
  background-color: var(--lightblack);
  min-height: 62px;
  border-color: var(--lightblack);
  padding-left: 48px;
  color: var(--lightgrey);
  font-weight: 400;
  font-size: 16px;
  border-radius: 6px;
  transition: 0s all;
}

.auth-page .form-control:-webkit-autofill,
.auth-page .form-control:-webkit-autofill:hover,
.auth-page .form-control:-webkit-autofill:focus,
.auth-page .form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--lightblack) inset !important;
  color: var(--lightgrey);
}

.auth-page .form-control:focus {
  background-color: #22282c;
}

.auth-page .form-control {
  -webkit-text-fill-color: var(--lightgrey);
}

.auth-page .forgotpassword-modal .form-control:-webkit-autofill,
.auth-page .forgotpassword-modal .form-control:-webkit-autofill:hover,
.auth-page .forgotpassword-modal .form-control:-webkit-autofill:focus,
.auth-page .forgotpassword-modal .form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #000 inset !important;
  color: var(--lightgrey);
}

.auth-page .forgotpassword-modal .form-control:focus {
  background-color: #000;
}

.auth-page .forgotpassword-modal .form-control {
  -webkit-text-fill-color: var(--lightgrey);
}

.cross-auth {
  position: absolute;
  top: 50px;
  width: 53px;
  right: 54px;
}

.cross-auth:hover {
  filter: invert(0.2);
}

.signup-box {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.choose-user label {
  background-color: var(--lightblack);
  width: 100%;
  color: #fff;
  border: 1px solid var(--lightblack);
  height: 62px;
  transition: 0.5s all;
  padding-left: 25px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}

.choose-user label:after {
  border-radius: 50%;
  position: absolute;
  width: 28px;
  height: 28px;
  right: 16.2px;
  top: 15px;
  border: 1px solid #aaa;
  content: '';
}

.choose-user label span {
  color: #fff;
  font-size: 18px;
  line-height: 60px;
}

.choose-user input[type="radio"]:checked+label {
  border-color: var(--themecolor);
}

.choose-user .ticked {
  position: absolute;
  right: 16px;
  height: 29px;
  display: none;
  top: 15px;
  z-index: 1;
}

.choose-user input[type="radio"] {
  opacity: 0;
}

.choose-user input[type="radio"]:checked+label .ticked {
  display: block;
}

.image-uplaod {
  position: relative;
  width: 105px;
  height: 105px;
  border-radius: 10px;
}

.image-uplaod input[type="file"] {
  position: absolute;
  right: -9.5px;
  cursor: pointer;
  height: 30px;
  top: -9.5px;
  width: 30px;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.image-uplaod .image-selected {
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 10px;
}

.image-uplaod .upload-icon {
  position: absolute;
  right: -9.5px;
  cursor: pointer;
  top: -9.5px;
}

.auth-btn {
  height: 62px;
  border-radius: 6px;
  text-transform: uppercase;
}

/*============Outer pages=========*/
/*===============Header*/
.header-field .navbar-brand img {
  height: 70px;
}

.header-top {
  color: #fff;
  padding: 12px 0;
}

.header-top a {
  display: inline-block;
  line-height: 17px;
  color: #fff;
}

.header-top img {
  width: 15px;
  height: 15px;
}

.header-top span {
  font-size: 12px;
}

.header-field .navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  width: 20px;
  margin: 0 auto;
  height: 2px;
  bottom: 0;
  right: 0;
  left: 0;
  background: var(--themecolor);
  visibility: visible;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all .3s ease-in-out 0s;
  -moz-transition: all .3s ease-in-out 0s;
  -ms-transition: all .3s ease-in-out 0s;
  -o-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}

.header-field .navbar-nav .nav-item:hover>.nav-link:before,
.header-field .navbar-nav .nav-item.active .nav-link:before,
.header-field .navbar-nav .active.nav-link:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.header-field {
  background-color: transparent;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1020;
  top: 42.7px;
  width: 100%;
}

.header-field .navbar-nav .nav-link {
  font-size: 16px;
  line-height: 24px;
  padding-left: 16px;
  padding-right: 16px;
  text-transform: uppercase;
  position: relative;
}

.header-field .navbar-nav .nav-item:last-child .nav-link:after {
  display: none;
}

.header-field .navbar-nav .nav-link:after {
  content: '';
  height: 10px;
  top: 15px;
  width: 1px;
  position: absolute;
  right: 0;
  background-color: var(--lightgrey);
}

.header-field .register-btn {
  border: 1px solid var(--themecolor);
  display: inline-block;
  font-size: 15px;
  border-width: 2px 1px 2px 1px;
  line-height: 22px;
  color: var(--themecolor);
  text-transform: uppercase;
  border-radius: 5px;
  padding: 14px 25px
}

.header-field .navbar-toggler {
  border: none;
}

/*============Index page*/
.home-banner {
  background-image: url(../images/index-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 1280px;
  position: relative;
}

.home-banner-text {
  max-width: 740px;
  padding-top: 260px;
}

.home-banner-text .red-badge {
  background: var(--redcolor);
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
  line-height: 29px;
  padding: 10px 34px 8px 26px;
  border-radius: 24px 50px 0px 24px;
}

.home-banner-text h1 {
  font-size: 65px;
  font-weight: 700;
  line-height: 98px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
}

.home-banner-text h1 span {
  color: var(--themecolor);
  display: block;
  font-weight: 300;
}

.home-banner-text p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.05em;
  max-width: 630px;
}

.yellow-arrow-btn {
  padding: 26px 32px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 18px;
  border-radius: 10px;
}

.yellow-arrow-btn:hover img {
  margin-left: 13px !important;
}

.yellow-arrow-btn img {
  transition: 0.4s all;
}

.upper-box {
  overflow: hidden;
  position: absolute;
  top: -200px;
  width: 100%;
  padding-top: 60px;
  padding-right: 14px;
  padding-left: 14px;
  right: 0px;
  left: 0px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 4px 15px 50px 0px rgb(0 0 0 / 9%);
  background-image: url(../images/waves-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
  overflow: hidden;
}

.banner-white-box {
  height: 268px;
}

.banner-white-box p {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 18px;
  color: var(--lightgrey);
}

.banner-white-box h3 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 48px;
  letter-spacing: 0em;
  position: relative;
  margin-bottom: 34px;
}

.banner-white-box h3:after {
  width: 16px;
  height: 16px;
  background: var(--bluecolor);
  content: '';
  position: absolute;
  bottom: -30px;
  border-radius: 50%;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}

.roundbadge {
  background: rgba(255, 255, 255, 1);
  box-shadow: 5px 4px 50px 0px rgb(0 0 0 / 10%);
  border-radius: 50%;
  margin-top: 140px;
  width: 95px;
  margin-bottom: 80px;
  height: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.roundbadge:before {
  content: url(../images/line-badge.png);
  top: -105px;
  position: absolute;
}

.songbadge {
  top: 15.5px;
}

.title-box {
  text-align: center;
  margin-bottom: 100px;
}

.title-box img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  height: 49px;
  margin-bottom: 28px;
}

.title-box h2 {
  font-size: 48px;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  text-transform: uppercase;
  line-height: 62px;
  letter-spacing: 0em;
  text-align: center;
  padding: 0px 10px 0px 10px;
  position: relative;
  margin-bottom: 8px;
}

.title-box h2:after {
  background-color: var(--redcolor);
  left: -90px;
  z-index: -1;
  position: absolute;
  top: 45%;
  height: 1px;
  width: calc(100% + 180px);
  content: '';
}

.title-box p {
  font-size: 26px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--lightgrey);
  line-height: 41px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 0px;
}

.title-box span {
  display: block !important;
  z-index: 2;
  position: relative;
}

.bg-black .title-box h2 {
  color: #fff;
  background-color: var(--blackcolor);
}

.index-para p {
  font-size: 18px;
  letter-spacing: 1.8px;
}

/*.send-music-section .title-box{
  margin-bottom: 100px;
} */
.arrow-btn {
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  padding: 5px 0px 8px 0px;
  text-align: left;
  border-bottom: 1px solid #000;
}

.arrow-btn .icon-right {
  height: 14.3px;
  position: relative;
  top: -2.6px;
  transition: 0.2s all;
  margin-left: 3px;
}

.arrow-btn:hover {
  color: #000;
}

.arrow-btn:hover .icon-right {
  margin-left: 5px;
}

/*number featuress*/
.feature-number-box {
  border-radius: 10px;
  background: linear-gradient(180deg, #000000 0%, #0C0B09 55.41%);
  color: #fff;
  padding: 14px 29px;
}

.number-text {
  font-size: 89px;
  position: absolute;
  top: -33px;
  line-height: 95px;
  z-index: -1;
  margin-bottom: 0px;
  left: -33px;
  font-weight: 700;
  -webkit-text-stroke: 1px var(--lightgrey);
  color: #000;
}

.feature-number-outer {
  position: relative;
  margin-left: 90px;
  margin-bottom: 52px;
  z-index: 1;
  transition: 0.3s all;
}

.feature-number-box h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 4px;
}

.feature-number-outer:hover .number-text,
.feature-number-outer.yellowhover .number-text {
  -webkit-text-stroke: 1px var(--themecolor);
}

.feature-number-outer:hover .feature-number-box,
.feature-number-outer.yellowhover .feature-number-box,
.feature-number-outer:hover p.text-light-grey,
.yellowhover.feature-number-outer p.text-light-grey {
  background: #DDFE00;
  color: #000;
}

.feature-number-outer:last-of-type {
  margin-bottom: 0px;
}

.bg-black .arrow-btn,
.bg-black .arrow-btn:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.bg-black .arrow-btn .icon-right {
  filter: invert(1);
}

/*video-section*/
.video-section {
  backdrop-filter: brightness(0);
  background-image: url(../images/bg-video.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.video-text p {
  font-size: 26px;
  font-weight: 300;
  line-height: 31px;
}

.video-text h2 {
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
}

.right-video .video-palceholder {
  width: 100%;
  object-fit: cover;
  height: 371px;
  border: 1px solid #000;
  border-radius: 15px 0px 0px 15px;
}

.video-play-icon {
  cursor: pointer;
  position: absolute;
  top: 34%;
  text-align: center;
  right: 0px;
  margin: 0 auto;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-text img {
  display: inline-block;
  height: 103px;
  margin-bottom: 29px;
}

/*success stoey*/
.story-badge {
  position: relative;
  text-align: center;
}

.success-story-box {
  position: relative;
  margin-bottom: 60px;
}

.story-badge {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-image: url(../images/round-badge1.png);
  position: absolute;
  text-align: center;
  right: 0px;
  left: 0px;
  line-height: 40px;
  height: 46px;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 0px;
  letter-spacing: 0em;
  top: -26px;
  color: #000;
}

.success-story-box img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: 350px;
}

.story-content {
  margin-top: -17px;
}

.video-content h3 {
  font-size: 24px;
  padding-left: 10px;
  color: var(--themecolor);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 10px;
}

.video-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  line-height: 24px;
  margin-bottom: 6px;
}

.story-content h3 {
  font-size: 24px;
  padding-left: 10px;
  color: var(--themecolor);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 10px;
}

.story-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  line-height: 24px;
  margin-bottom: 6px;
}

.story-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 0px;
  letter-spacing: 0.33px;
  color: var(--lightgrey);
  text-transform: capitalize;
}

.zoomed-story.success-story-box .story-badge {
  height: 54px;
  font-size: 22px;
  line-height: 49px;
}

.zoomed-story.success-story-box img {
  height: 690px;
}

.zoomed-story.success-story-box .story-content h3 {
  font-size: 50px;
  line-height: 75px;
}

.zoomed-story.success-story-box .story-content h4 {
  font-size: 20px;
  line-height: 29px;
}

.zoomed-story.success-story-box .story-content p {
  font-size: 20px;
  line-height: 29px;
}

.zoomed-story.success-story-box .story-content {
  margin-top: -37px;
}

/*footer*/

.footer-section {
  background-color: #000;
}

.footer-section h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.footer-section a {
  color: var(--lightgrey);
  font-size: 16px;
  font-weight: 300;
  line-height: 52px;
  opacity: 0.6;
}

.social-links li {
  margin-right: 16px;
}

.lower-footer {
  font-size: 15px;
  border-top: 1px solid #303030;
  text-transform: uppercase;
  padding: 10px 4px;
}

.social-links img {
  width: 24px;
}

/* membership--------------new */
.membership-box {
  background: linear-gradient(180deg, #000000 0%, #0C0B09 55.41%);
  padding: 18px 10px 5px 10px;
  color: var(--lightgrey);
  border-radius: 8px;
  font-size: 18px;
  margin-top: 60px;
}

.membership-box h4.text-theme {
  font-size: 30px;
  text-transform: uppercase;
}

.membership-box ul img {
  width: 12px !important;
  display: inline-block !important;
  margin-right: 8px;
}

.membership-box ul li {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 10px;
}

/* .membership-box ul{
  height: 190px;
} */
.purchase-btn {
  color: var(--themecolor) !important;
  font-size: 15px;
  border-width: 1px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 30px;
  width: 100%;
  max-width: 185px;
  margin: 0 auto 10px auto;
  display: block;
  border-style: solid;
  border-color: var(--themecolor);
  border-image: initial;
  border-radius: 10px;
  padding: 10px 20px;
}

.purchase-btn img {
  width: 23px !important;
  position: relative;
  height: auto;
  top: 0px;
  transition: all 0.4s ease 0s;
}

.purchase-btn:hover {
  background-color: var(--themecolor);
  color: #000 !important;
}

.purchase-btn:hover img {
  filter: brightness(0);
}

.offer-line {
  text-align: center;
  background: var(--bluecolor);
  color: #fff;
  padding: 7px 0px 6px 0px;
  line-height: 16px;
  font-weight: 300;
  font-size: 16px;
}

.membership-price {
  font-size: 35px;
  color: #fff;
  font-weight: 600;
}

/* .membership-price span{
  font-size:30px;
  font-weight: 400;
} */
.membership-box hr {
  background: #95958f66;
}

.pro-box:before {
  width: 130px;
  height: 35px;
  background-size: contain;
  content: '';
  background-repeat: no-repeat;
  background-image: url(../images/bestdeal.png);
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* .membership-box.pro-box ul{
  height: 230px;
} */
.membership-box.pro-box {
  background: var(--themecolor);
  color: #000;
}

.membership-box.pro-box .text-white,
.membership-box.pro-box .membership-price,
.membership-box.pro-box .text-theme {
  color: #000 !important;
}

.membership-box.pro-box .purchase-btn {
  /* margin-bottom:30px; */
  background: var(--bluecolor);
  color: #fff !important;
}

.membership-box.pro-box ul img {
  filter: brightness(1) invert(1);

}

.membership-box.pro-box .purchase-btn img {
  filter: brightness(0) invert(1);
}

.membership-slider .owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 70px);
  font-size: 70px !important;
  color: #fff !important;
}

.membership-slider .owl-nav .owl-prev.disabled,
.membership-slider .owl-nav .owl-next.disabled {
  color: #7d7d7d !important;
}

.membership-slider .owl-nav .owl-prev {
  left: 15px;
}

.membership-slider .owl-nav .owl-next {
  right: 15px;
}

.membership-slider .owl-item {
  width: 200px !important;
  margin-right: 40px !important;
}

/* membership end */


/**===8-6-2022 FAQ
======****/
.ptb_80,
.ptb_top_80 {
  padding-top: 80px;
}

.ptb_80,
.ptb_bottom_80 {
  padding-bottom: 80px;
}

.space_50,
.space_top_50 {
  padding-top: 50px;
}

.space_50,
.space_bottom_50 {
  padding-bottom: 50px;
}

.faq-section {
  background: #000;
}

.banner-pb {
  padding-bottom: 150px;
}

.heading-bold {
  font-weight: 700;
  line-height: 63px;
}

.question-content-header {
  background: #DDFE00;
  text-align: center;
  padding: 80px 80px;
  position: relative;
  top: -108px;
  left: 0;
  right: 0;
}

.search-input-design {
  background: #FFFFFF;
  box-shadow: 2px 13px 50px 3px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 17px 23px;
}

.search-input-design input {
  border: 0px;
  color: #95958F;
  font-weight: 300;
  font-size: 17px;
  padding: 0px;
  padding-left: 22px;
}

.search-input-design input::-webkit-input-placeholder {
  color: #95958F;
}

.search-input-design input:-ms-input-placeholder {
  color: #95958F;
}

.search-input-design input::placeholder {
  color: #95958F;
}

.search-input-design i.fas.fa-search {
  position: absolute;
  color: #95958F;
  top: 28px;
  font-size: 15px;
}

.tabs-content-row .nav-pills .nav-link.active {
  background: #DDFE00;
}

.tabs-content-row .nav-pills .nav-link.active:before {
  display: none;
}

.tabs-content-row .nav-pills .nav-link:before {
  left: 0px;
  top: 0;
  background: #95958F;
  opacity: 0.2;
  border-radius: 10px;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.tabs-content-row .nav-pills .nav-link {
  transition: all .3s;
  font-weight: 500;
  font-size: 18px;
  border-radius: 10px;
  line-height: 27px;
  text-transform: uppercase;
  color: #000000;
  position: relative;
  margin-bottom: 18px;
  padding: 18px 13px;
  text-align: center;
  display: inline-block;
}

/* .tabs-content-row .nav-pills .nav-link.active:after {
  content: "";
  color: #000;
  background: url(../images/arrow-right.png);
  width: 20px;
  top: 24px;
  height: 20px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
} */

.tabs-content-row .btn-link:not(.collapsed)::after {
  content: "\f00d";
}

.tabs-content-row .btn-link::after {
  position: absolute;
  right: 27px;
  font-family: 'fontawesome';
  flex-shrink: 0;
  font-size: 20px;
  margin-left: auto;
  content: "\f067";
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.tabs-content-row .card-header {
  background: transparent;
  border: 0px;
  padding: 0px;
}

.tabs-content-row .card {
  margin-bottom: 20px;
  padding-bottom: 17px;
  border: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, .125);
  border-radius: 0px;
}

.tabs-content-row .card-header h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 41px;
  text-transform: capitalize;
  color: #000000;
  padding: 0px;
  text-decoration: none !important;
}

.tabs-content-row .card-body {
  font-weight: 400;
  font-size: 22px;
  line-height: 35px;
  text-align: justify;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  color: #95958F;
  padding: 16px 0px;
  opacity: 0.7;
}

.arrow-right-down {
  padding-top: 260px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}


/**===contact need section
==========***/
.light-weight {
  font-weight: 400;
}

.top-ready-content {
  max-width: 600px;
  text-align: center;
  margin: auto;
}

.top-ready-content h2 {
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  position: relative;
  display: inline-block;
}

.border-bottom-line:before {
  content: "";
  border-bottom: 3px solid #000;
  border-radius: 10px;
  position: absolute;
  width: 120px;
  left: 0;
  right: 0;
  text-align: center;
  bottom: -9px;
  margin: 0 auto;
}

.inner-contact-section .info-list li,
.inner-contact-section .info-list li a {
  padding-bottom: 25px;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.05em;
  color: #000000;
}

.form-content-details {
  background: #FFFFFF;
  box-shadow: 4px 15px 50px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  padding: 50px 40px;
}

.input-common-dt {
  background: #eaeae9;
  border: 1px solid #eaeae9;
  border-radius: 5px;
  font-weight: 500;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #95958F;
  padding: 28px 25px;
}

.textarea-height {
  background: #eaeae9;
  border: 1px solid #eaeae9;
  border-radius: 5px;
  font-weight: 500;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #95958F;
  padding: 28px 25px;
}

.input-common-dt::-webkit-input-placeholder,
.textarea-height::-webkit-input-placeholder {
  color: #95958F;
}

.input-common-dt:-ms-input-placeholder,
.textarea-height:-ms-input-placeholder {
  color: #95958F;
}

.input-common-dt::placeholder,
.textarea-height::placeholder {
  color: #95958F;
}

.input-common-dt:focus {
  border: 1px solid #ddd;
}

.btn-common-size {
  background: #eaeae9;
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  color: #000000;
  padding: 23px 64px;
}

.yello-color {
  background: #DDFE00;
  border-radius: 10px;
}

.btn-common-size .fa {
  font-size: 25px;
  line-height: 6px;
}

.index-para p {
  text-align: justify;
}


/***====home slider
=====**/



.tab-menu {
  margin-top: 34px;
}

.tab-menu ul {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: linear-gradient(90deg, #FFFFFF -6.72%, #EFEFEF 49.53%, #FFFFFF 105.78%);
  padding: 20px 38px;
}

.tab-menu ul li a {
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
}

.tab-menu ul li a.active {
  text-decoration: none;
  font-weight: 500;
}

.tab-box {
  display: none;
}

.top-cicrle-nav .owl_1.owl-carousel.owl-theme.owl-loaded.owl-drag {
  line-height: 0;
  position: relative;
}

.top-cicrle-nav .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.inner-box-size .img-loop {
  width: 100px !important;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: -51px;
  left: 0;
  right: 0;
}

.inner-box-size {
  position: relative;
  background: #FFFFFF;
  box-shadow: 8px 8px 22px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 35px;
  padding: 20px 12px 18px;
  min-height: 190px;
  display: inline-block;
}

.tab-main-box {
  margin-top: 70px;
}

.inner-box-size h6 {
  padding-top: 43px;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
}

.inner-box-size p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  color: #95958F;
  opacity: 0.6;
}

.tab-main-box .item {
  padding: 0px 31px 0px 0px;
}

.top-cicrle-nav .owl-prev {
  width: 30px;
  height: 30px;
  left: -20px;
  position: absolute;
  top: 4px;
  border: 1px solid #95958F !important;
  border-radius: 50%;
}

.top-cicrle-nav .owl-next span,
.top-cicrle-nav .owl-prev span {
  font-size: 24px;
  line-height: 22px;
  color: #000;
}

.top-cicrle-nav .owl-next {
  position: absolute;
  right: -32px;
  width: 30px;
  height: 30px;
  top: 4px;
  border: 1px solid #000 !important;
  border-radius: 50%;
}

.top-cicrle-nav .owl-next.disabled,
.top-cicrle-nav .owl-prev.disabled {
  border: 1px solid #95958F;
}

.top-cicrle-nav .owl-next.disabled span,
.top-cicrle-nav .owl-prev.disabled span {
  color: #95958F;
}

.top-cicrle-nav .owl-next span {
  position: relative;
  top: -2px;
}

/***====feature page
=====***/
.feature-banner {
  height: 1070px;
}

.show-full-width {
  width: 100%;
}

.top-vertical {
  top: -284px;
  position: relative;
}

.equal-width-include {
  min-width: 314px;
}

.border-bottom-heading:before {
  content: "";
  border-bottom: 2px solid #000000;
  position: absolute;
  left: 0;
  width: 142px;
  bottom: -3px;
}

.l-height {
  line-height: 71.62px;
}


.top-vertical-img .rounded-img {
  border-radius: 100%;
  width: 80px;
  height: 80px;
  max-width: 80px;
  border: 1px solid #000;
  padding: 6px;
}

.top-vertical-img img.quote-arrow {
  max-width: 40px;
}

.inner-top-testimonilas p {
  font-weight: 400;
  font-size: 18px;
  line-height: 212%;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #000000;
  opacity: 0.6;
}

.inner-top-testimonilas h6 {
  font-weight: 500;
  font-size: 20px;
  line-height: 212%;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #000000;
}

.inner-top-testimonilas {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  margin: 30px;
  position: relative;
}

.inner-top-testimonilas:before {
  background: #95958F;
  opacity: 0.1;
  border-radius: 10px;
  content: "";
  width: 100%;
  height: 100%;
  right: -16px;
  bottom: -16px;
  position: absolute;
  z-index: -1;
}

.owl-item.active .inner-top-testimonilas:before {
  background: #DDFE00;
  opacity: 1;
}

.slider-testimonials .owl-dots .owl-dot span {
  outline: 1px solid #000;
  background: #fff;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 13px;
  outline-offset: 3px;
}

.slider-testimonials .owl-dots .owl-dot.active span {
  outline: 1px solid #000;
  background: #000;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 13px;
  outline-offset: 3px;
}

.slider-testimonials .owl-dots .owl-dot {
  margin-left: 10px;
  margin-right: 10px;
}

.slider-testimonials .owl-dots {
  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
}


/***====more artis
-=======***/
.more-user-botom {
  background: url(../images/more-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
}

.title-box-inner h2 {
  line-height: 137.5%;
  text-transform: capitalize;
  font-weight: 700;
  margin-top: 18px;
}

.more-user-botom .btn-theme {
  padding: 26px 32px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 18px;
  border-radius: 10px;
}

.more-user-botom .btn-theme:hover img {
  margin-left: 13px !important;
}

.more-user-botom .inner-box-size {
  padding-left: 24px;
  padding-right: 24px;
}

.more-user-botom .owl-dots .owl-dot span {
  outline: 1px solid #ddfe00;
  background: transparent;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 13px;
  outline-offset: 3px;
  transition: all .3s;
}

.more-user-botom .owl-dots .owl-dot.active span {
  outline: 1px solid #ddfe00;
  background: #ddfe00;
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 13px;
  outline-offset: 3px;
}

.more-user-botom .owl-dots .owl-dot {
  margin-left: 10px;
  margin-right: 10px;
}

.more-user-botom .owl-dots {
  margin: 0 auto;
  text-align: center;
  margin-top: 10px;
}

.more-user-botom .owl-carousel .owl-dots.disabled,
.more-user-botom .owl-carousel .owl-dots {
  display: block;
}

.more-user-botom .item {
  margin-left: 10px;
  margin-right: 10px;
}


/***======Easier Than
=====*****/
.easier_than {
  background: #DDFE00;
  padding: 80px 52px;
}

.easier_than h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 63px;
  text-transform: uppercase;
  color: #000000;
}

.easier_than p {
  font-weight: 400;
  font-size: 22px;
  line-height: 193%;
  text-align: justify;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: #000000;
  opacity: 0.6;
}

.send-easir-think:before {
  content: "";
  background: #000;
  position: absolute;
  height: 126px;
  width: 100%;
  bottom: 25px;
  z-index: -1;
}

/***=====Who are than
======***/
.who_are_banner .feature-banner {
  height: 1130px;
}

/***====Media
=========***/

@media(min-width: 1200px) {
  .gap-30 {
    margin-right: -30px;
    margin-left: -30px;
  }

  .gap-30>[class*="col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media(min-width:1440px) {
  .container {
    max-width: 1170px;
  }

  .gap-xl-40 {
    margin-right: -40px;
    margin-left: -40px;
  }

  .gap-xl-40>[class*="col-"] {
    padding-right: 40px;
    padding-left: 40px;
  }

  .col-lg-3.column-5 {
    max-width: 20% !important;
    flex: 0 0 20% !important;
    -ms-flex: 0 0 20% !important;
  }
}

@media(max-width:1200px) and (min-width:992px) {
  .arrow-right-down {
    position: absolute;
    right: 0;
    bottom: 164px;
  }

  .top-vertical {
    top: -181px;
  }
}

@media(max-width:1100px) {
  .tabs-content-row .card-header h5 {
    font-size: 20px;
    line-height: 34px;
  }

  .tabs-content-row .card-body {
    font-size: 19px;
    line-height: 27px;
  }
}

@media(max-width:992px) {
  .header-field .container {
    position: relative;
  }

  .header-field .register-btn {
    position: absolute;
    right: 60px;
  }

  .arrow-right-down {
    padding-top: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 0px !important;
  }

  .top-vertical {
    top: -122px;
    position: relative;
  }

  .feature-banner .home-banner-text h1,
  .home-banner-text h1 {
    font-size: 58px;
    line-height: 83px;
  }

  .feature-banner .home-banner-text {
    padding-bottom: 60px;
  }

  .mobile-view-dt {
    padding-bottom: 100px;
    flex-direction: column-reverse;
  }

  .starter_content-box h1 {
    font-size: 40px;
    line-height: 60.35px;
  }

  .starter_content-box .small-size-starter {
    font-size: 23px;
    line-height: 29px;
  }

  .starter_content-box h6 {
    font-size: 29px;
    line-height: 46px;
  }

  .header-field .navbar-nav .nav-link {
    display: inline-block;
  }

  .header-field .navbar-nav .nav-link:after {
    display: none;
  }

  .header-field .register-btn {
    top: 14px;
  }

  .easier_than h2 {
    font-size: 33px;
    line-height: 45px;
  }

  .easier_than {
    padding: 61px 30px;
  }

  .easier_than p {
    font-size: 20px;
    line-height: 146%;
  }

  .title-box h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .title-box {
    margin-bottom: 43px;
  }

  .revers-colums {
    flex-direction: column-reverse;
  }

  .home-banner {
    height: 1171px;
    background-position: top;
  }

  .header-field .navbar-collapse {
    background: #000;
  }

  .radio-listen-people .mobile-view-dt {
    padding-bottom: 0px;
  }
}

@media(max-width:992px) and (min-width:767px) {
  .feature-banner .arrow-right-down {
    align-items: flex-end;
    margin-bottom: 0px !important;
    position: absolute;
    right: 0px;
    bottom: 53px;
    justify-content: flex-end;
  }

  .feature-banner,
  .who_are_banner .feature-banner {
    height: 824px;
  }

  .home-banner-text {
    padding-top: 183px;
  }
}

@media(min-width:992px) {
  .music-nicrease .left-shadow-yellow {
    position: absolute;
    top: -180px;
  }

  .mobile-view-dt {
    height: 580px;
  }

  .station-view-mobie {
    height: 480px;
  }

  .inner-images-section {
    height: 500px;
  }

  .grid-column-footer {
    width: 100px;
    margin: 0 auto;
  }

  .grid-column-footer-artist {
    width: 150px;
    margin: 0 auto;
  }
}

@media(max-width:767px) {
  .auth-page h2 {
    font-size: 42px;
  }

  .auth-page .f-24 {
    font-size: 20px;
  }

  .cross-auth {
    width: 50px;
    top: 23px;
    right: 23px;
  }

  .signup-row {
    max-width: 450px;
    margin-right: auto;
    margin-left: auto;
  }

  .heading-bold {
    line-height: 48px;
  }

  h2 {
    font-size: 31px;
  }

  .top-ready-content h2 {
    line-height: 50px;
  }

  .top-ready-content {
    max-width: 460px;
  }

  .inner-box-size {
    width: 100%;
  }

  .tab-main-box .item {
    padding-left: 20px;
  }

  .music-nicrease {
    top: 0px;
  }

  .top-vertical {
    top: 55px;
    position: relative;
    margin-bottom: 130px;
  }

  .feature-banner .home-banner-text h1,
  .home-banner-text h1 {
    font-size: 35px;
    line-height: 48px;
  }

  .feature-banner .home-banner-text {
    padding-bottom: 60px;
  }

  .white-transparent-btn {
    padding: 8px 19px;
    font-size: 14px;
  }

  .title-box h2:after {
    left: -65px;
    right: 0;
    width: 326px;
  }

  .title-box h2 {
    font-size: 28px;
    line-height: 45px;
    max-width: 200px;
  }

  .starter_content-box {
    padding: 23px 10px;
  }

  .doller_section:before {
    font-size: 165px;
    line-height: 257px;
  }

  .doller_section h1 {
    font-size: 57px;
    line-height: 98.41px;
  }

  .doller_section h6 {
    font-size: 37px;
    line-height: 56px;
  }

  .doller_section .border-right-left {
    height: 67px;
  }

  .l-height {
    line-height: 45.62px;
  }

  .feature-banner,
  .who_are_banner .feature-banner {
    height: 820px;
  }

  .arrow-right-down {
    padding-top: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 0px !important;
  }

  .title-box-inner h2 br {
    display: none;
  }

  .inner-top-testimonilas {
    padding: 5px 17px 5px 0px;
    margin: 9px;
  }

  .upper-box {
    position: relative;
    top: 0;
  }

  .banner-white-box {
    height: auto;
  }

  .home-banner {
    height: 881px;
  }

  .video-text h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .lower-footer {
    flex-wrap: wrap;
  }

  .pb-90,
  .py-90,
  .pt-100,
  .py-100 {
    padding-bottom: 34px;
    padding-top: 34px;
  }

  .doller_section {
    height: 224px;
  }

  .radio-listen-people .mobile-view-dt {
    padding-bottom: 0px;
  }

  .header-top span {
    font-size: 11px;
  }

  .feature-number-outer {
    margin-left: 35px;
  }

  .index-para p {
    font-size: 15px;
    letter-spacing: 0px;
  }
}

@media(max-width:600px) {
  .monthly-switch-toggle {
    max-width: 276px;
  }

  .first-monthly a,
  .year-tab a {
    width: 130px;
    height: 75px;
  }

  .header-top span {
    display: none;
  }

  .yellow-arrow-btn {
    padding: 18px 17px;
    font-size: 15px;
    line-height: 15px;
  }

  .title-box p {
    font-size: 20px;
    line-height: 28px;
  }
}

@media(max-width:500px) {
  .monthly-switch-toggle {
    max-width: 276px;
  }

  .first-monthly a,
  .year-tab a {
    width: 130px;
    height: 75px;
  }

  /* .title-box h2:after {display: none;}*/
  .starter_content-box .column-monthly-wrap {
    flex-wrap: wrap;
    justify-content: inherit !important;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .starter_content-box .column-monthly-wrap .white-transparent-btn {
    margin-top: 24px;
  }

  .btn-size-common {
    padding: 11px 17px;
    font-size: 16px;
    line-height: 30px;
  }

  .equal-width-include {
    min-width: 219px;
  }

  .submission_blue h3 {
    font-size: 29px;
    line-height: 41px;
  }
}

@media(max-width:400px) {
  .header-field .register-btn {
    padding: 9px 14px;
  }

  .navbar-brand img {
    width: 78px;
  }

  .home-banner-text {
    padding-top: 165px;
  }

  div .title-box h2 {
    font-size: 26px;
    line-height: 40px;
  }
}

.card1 {
  width: 100% !important;
  background: none !important;
  color: white !important;
  border: 1px solid yellow !important;
}

.card1 img {
  height: 17rem;
  object-fit: cover;
}