@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 500;
  font-family: 'Montserrat';
}


/***** Font Files *****/

@font-face {
  font-family: 'big-noodle';
  src: url(../fonts/big_noodle_titling.ttf);
  font-weight: 400;
  font-style: normal
}
@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-Medium.ttf);
  font-weight: 400;
  font-style: normal
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'big-noodle';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'big-noodle';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'big-noodle';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'big-noodle';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'big-noodle';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */
header {
    background-color: #252525;
    padding: 20px 0px;
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 20px;
}
.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 40px 10px 25px;
    font-size: 14px;
    font-family: 'Montserrat';
}
.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #c39de9;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
header .row {
    align-items: center;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */

.nike-zoom-silder-number h3 {
    margin-bottom: 0;
    font-size: 52px;
    color: #a18bdd;
    position: relative;
}
.nike-zoom-silder-number h3::before {
    position: absolute;
    top: 16px;
    left: 55px;
    height: 1px;
    width: 75px;
    background-color: #fff;
    content: '';
}
a.btn-1 {
    background: linear-gradient(122deg, rgba(195, 157, 233, 1) 56%, rgba(161, 139, 221, 1) 71%);
    padding: 1px 9px;
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat';
    gap: 12px;
    display: inline-flex;
    align-items: center;
}


.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}
.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}
.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.carousel-control.right {
  right: 0px;
}
.carousel-control.left {
  left: 0px;
}
.carousel-indicators {}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}
section.main_slider {
    position: relative;
}

.banner_text {
    position: absolute;
    top: 23%;
    width: 32%;
}
.banner-slider {
    position: absolute;
    top: 90px;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: 999;
}
.ban-1 img {
    height: 642px;
    width: 100%;
    object-fit: contain;
    padding: 0 143px 0 0px;
}
.banner_text h1 {
    color: #9e8adb;
    font-size: 134px;
    line-height: 134px;
}
.banner_text h3 {
    font-size: 85px;
    color: #101010;
    line-height: 60px;
}
.banner_text p {
    font-size: 14px;
    color: #111110;
    font-weight: 500;
    width: 90%;
}
.nike-zoom-silder-number {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 77px;
    left: 0;
    width: 61.2%;
    background-color: #252525;
    padding: 10px 53px;
    clip-path: polygon(0 0, 91% 0, 100% 100%, 0% 100%);
    gap: 109px;
    z-index: 9999999;
}

.ban-1 .bann-2 img {
    height: 400px;
    width: 100%;
    object-fit: contain;
}
.slide_counter h2 {
    margin-bottom: 0;
}
.ban-1 .bann-2 {
    margin-left: 11%;
    position: absolute;
    top: 156px;
}
img.fluid-1 {
    height: 685px;
    width: 100%;
    position: relative;
    left: 0px;
}
.socila-icon ul {
    display: flex;
    justify-content: end;
}

.socila-icon {
    text-align: end;
    position: relative;
    z-index: 999999999;
    width: 100%;
}
.socila-icon ul li{
  padding: 0px 10px;
}
.socila-icon ul li i{
  font-size: 20px;
  border: 1px solid #797979;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #797979;
}
.socila-icon h5{
  font-size: 29px;
  color: #5e68c2;
  margin-right: 63px;
}
/*banner css end*/
/*about start*/
section.about {
    padding: 250px 0px 150px;
}

.abt-img {
    position: relative;
}

.abtimg2 {
    position: absolute;
    top: -95px;
    right: 0;
}
.abt-img::before {
    position: absolute;
    top: -139px;
    content: '';
    width: 100%;
    height: 746px;
    background-image: url(../images/abt-3.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    right: -69px;
}
.abt-txt {
    margin-left: 30px;
}
.abt-txtt h5 {
    font-size: 30px;
    margin-bottom: 0;
    color: #fff;
    margin-left: 66px;
}

.abt-txtt {
    background-color: #252525;
    padding: 30px;
    width: 54%;
    clip-path: polygon(19% 0, 100% 1%, 100% 100%, 0% 100%);
    bottom: 0;
    position: absolute;
    right: 34px;
    z-index: -1;
}
.abt-txt h3 {
    font-size: 85px;
    line-height: 60px;
    color: #101010;
}
.abt-txt p{
  font-size: 14px;
  line-height: 28px;
  color: #111110;
  margin-bottom: 30px;
}
/*about end*/
/*what-we do start*/
section.what-we {
    padding: 80px 0px 160px 0px;
    position: relative;
}
section.what-we::before {
    position: absolute;
    top: 38px;
    content: '';
    background: linear-gradient(122deg, rgba(195, 157, 233, 1) 22%, rgba(161, 139, 221, 1) 60%);
    width: 100%;
    height: 120px;
    z-index: -1;
}
.what-txt h3 {
    text-align: center;
    font-size: 85px;
    color: #fff;
    font-weight: 500;
}
.what-we-main {
    margin-top: 60px;
    position: relative;
}

.what-we-main .row {
    align-items: center;
}
.what-we-bot-txt h4 {
    font-size: 41px;
    line-height: 40px;
    color: #101010;
    padding: 20px 0px 0px 0px;
}
.what-we-bot-txt p{
  font-size: 14px;
  color: #101010;
  line-height: 27px;
  margin-bottom: 0;
}
.what-we-bot-txt a {
    margin-left: 100px;
    color: #101010;
    position: relative;
    top: 45px;
}
.what-we-main:before {
    content: '';
    position: absolute;
    top: 69px;
    left: 60px;
    width: 58%;
    height: 71%;
    z-index: -1;
    border-image: linear-gradient(#a78fdf, #a38cdd) 30;
border-width: 9px;
border-style: solid;
}
.what-we-bot-txt {
    background: #fff;
}
/*what-we do end*/

/*tranding start*/
div#amplitude-right {
    padding: 0px;
    /* overflow-y: scroll; */
    width: 100%;
    display: flex;
    flex-direction: column;
}
div#amplitude-right div.song {
    cursor: pointer;
    padding: 10px;
    /* background: transparent !important; */
    position: relative;
}
div#amplitude-right div.song img.bandcamp-grey {
    float: left;
    display: block;
    margin-top: 10px;
    width: 80px;
}
.player-design .line {
    display: block;
}
.tranding-txt h4 {
    font-size: 84px;
    line-height: 70px;
    color: #fff;
}
section.tranding {
    padding: 150px 0px;
    position: relative;
}
.tranding-img {
    position: absolute;
    left: -27px;
    top: 9px;
    width: 42%;
}
.tranding-img img {
    height: 666px;
    width: 100%;
    object-fit: cover;
}
section.tranding::before {
    position: absolute;
    left: 0;
    content: '';
    background: linear-gradient(122deg, rgba(195, 157, 233, 1) 22%, rgba(161, 139, 221, 1) 60%);
    width: 48%;
    height: 91%;
    top: -4px;
    clip-path: polygon(54% 0, 100% 55%, 50% 100%, 0 100%, 0 0);
}
.tranding-img::before {
    position: absolute;
    bottom: -33px;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
    background-image: url(../images/shape-1.png);
    width: 165px;
    height: 77px;
    right: 129px;
    z-index: -1;
}
.tranding-img::after {
    position: absolute;
    top: 37px;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
    background-image: url(../images/shape-2.png);
    width: 165px;
    height: 77px;
    right: 31px;
    z-index: -1;
}
div#amplitude-right .row {
    align-items: center;
}
section.tranding::after {
    position: absolute;
    top: 120px;
    height: 67%;
    right: 0;
    width: 100%;
    background-color: #252525;
    content: '';
    z-index: -1;
}
/*tranding end*/
/*achivement start*/
.achivement-txt h4 {
    font-size: 85px;
    line-height: 85px;
    color: #101010;
}
.achivement-txt p{
  font-size: 14px;
  color: #111110;
  line-height: 28px;
}

.achivement-txt {
    position: relative;
    width: 92%;
}

.achivement-txt::before {
    position: absolute;
    top: 89px;
    background-color: #00000026;
    width: 122vh;
    height: 1px;
    content: '';
}
section.achivement {
    padding-bottom: 80px;
}
section.achivement .row {
    align-items: center;
}
.achive-img .achive-img-3 {
    position: absolute;
    bottom: -50px;
    left: 32px;
}
.achive-img .achive-img-2 {
    position: absolute;
    bottom: 14px;
    left: -93px;
}
.achive-img {
    position: relative;
}
/*achivement end*/
/*footer start*/
ul.footer-link {
    display: flex;
    align-items: center;
}

ul.footer-link li {
    padding: 0px 30px;
}
footer {
    background-color: #1a1a1a;
    padding: 70px 0px 0px 20px;
    position: relative;
}
.quick-txt h5 {
    font-size: 34px;
    line-height: 30px;
    color: #fff;
}
.fotter-bx h5 {
    font-size: 48px;
    line-height: 48px;
    color: #fff;
}
.footer-bot p {
    font-size: 14px;
    color: #ffffff8a;
    padding-top: 61px;
    margin-bottom: 20px;
}

.fotter-bx p {
    font-size: 14px;
    width: 67%;
    color: #fff;
}

.fotter-bx input {
    width: 80%;
    padding: 13px;
    background-color: #000;
    color: #fff;
    border: none;
    outline: none;
}
.fotter-bx input::placeholder{
  color: #fff;
}
.fotter-bx button {
    background-color: #fff;
    border: none;
    font-size: 13px;
    color: #20313b;
    padding: 13px 29px;
}
.fotter-bx {
    background: linear-gradient(122deg, rgba(195, 157, 233, 1) 56%, rgba(161, 139, 221, 1) 71%);
    padding: 40px;
    position: absolute;
    top: -37px;
    left: 0px;
    width: 49%;
    height: 291px;
    padding-left: 6%;
}
.footer-bot {
    padding: 45px 0px 0px 0px;
}
ul.footer-link {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-top: 30px;
    position: relative;
}
ul.footer-link::before {
    position: absolute;
    top: -18px;
    content: '';
    width: 203vh;
    height: 1px;
    background-color: #fff;
    left: -37px;
}
ul.footer-link::after {
    position: absolute;
    bottom:-18px;
    content: '';
    width: 203vh;
    height: 1px;
    background-color: #fff;
    left: -37px;
}
ul.footer-link li a {
    color: #fff;
    font-size: 13px;
    font-family: 'Montserrat';
}
.foter-aerow i {
    font-size: 25px;
    color: #fff;
    background: linear-gradient(122deg, rgba(195, 157, 233, 1) 56%, rgba(161, 139, 221, 1) 71%);
    height: 58px;
    width: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foter-aerow {
    position: absolute;
    top: -40px;
    right: 73px;
}
/*footer end*/
section.testomonial {
  position: relative;
  padding: 150px 0px 200px;
}

section.testomonial.things:before {
  background-image: url(../images/tomato.png);
  width: 60px;
  height: 60px;
  right: 10%;
  bottom: 90%;
}

section.testomonial.things:after {
  left: 0;
  background-image: url(../images/leaf3.png);
  width: 48px;
  height: 50px;
  right: unset;
}

.testi-wrap {
  background-color: #fff;
  position: relative;
  padding: 50px 30px;
  z-index: 0;
  box-shadow: 0 0 10px #00000040;
  border-radius: 10px;
  border-bottom-left-radius: 0px;
}

.testi-wrap:before {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  left: 0;
  top: 0;
  border-top-left-radius: 10px;
  z-index: -1;
  /* border-bottom-left-radius: 10px; */
  background: linear-gradient(122deg, rgba(195, 157, 233, 1) 56%, rgba(161, 139, 221, 1) 71%);
}

.testi-wrap h6 {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "saudagar";
  letter-spacing: 2px;
  margin-bottom: 0;
  margin-top: 100px;
}

.testi-wrap h6 span {
  display: block;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}

.testi-wrap .row {
  align-items: center;
}

img.black-girl {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
  top: 9%;
  left: 21%;
  height: 190px;
  width: 190px;
  object-fit: cover;
}
.main-box:hover * {
    color: #fff;
}
.main-box:hover .pro-img {
    background: #000;
}
/*.main-box:hover .pro-img .samall-img img {
    background: #fff !important;
    filter: brightness(0) saturate(100%) invert(85%) sepia(19%) saturate(203%) hue-rotate(125deg) brightness(83%) contrast(82%);
}*/
img.testi-quote {
  position: absolute;
  left: 3%;
  top: 1%;
  width: auto;
  height: auto;
}

.testi-wrap b i {
  color: #726dbf;
  padding-left: 1px;
}

.testi-wrap b {
  display: flex;
  align-items: center;
  gap: 0;
  color: #726dbf;
  font-size: 12px;
}

section.testomonial .top-head p {
  text-align: center;
  width: 63%;
  margin: 0 auto;
  margin-bottom: 30px;
  color: #ffffffab;
}

.testi-slider .slick-slide {
   margin-left: 0; 
  margin: 20px;
}

.testi-slider .slick-prev,
.testi-slider .slick-next {
  top: 38%;
}

.testi-slider .slick-next {
  right: -4%;
}

.testi-slider .slick-prev {
  z-index: 99;
  left: -12%;
}

.testi-slider .slick-prev:before,
.testi-slider .slick-next:before {
  position: absolute;
  content: "";
  background-image: url(../images/lest-testi.png);
  width: 80px;
  height: 54px;
  background-repeat: no-repeat;
  background-size: contain;
}

.testi-slider .slick-next:before {
  background-image: url(../images/right-testi.png);
}

.testi-slider .slick-prev.slick-disabled:before,
.testi-slider .slick-next.slick-disabled:before {
  opacity: 1;
}

.testi-slider ul.slick-dots {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 11px;
  margin-bottom: -10px;
  margin-left: 10px;
}

.testi-slider .slick-dots li.slick-active button:before {
  border: 1px solid #9fb5b3;
  opacity: 1;
  border-radius: 10px;
  color: #c39de9;
  font-size: 12px;
}

.testi-slider .slick-dots li button:before {
  color: #a18bdd;
  opacity: 1;
  font-size: 8px;
}

.testi-slider li.slick-active {
  opacity: 1;
}

.testi-slider .slick-dots li {
  width: 0;
}
.testi-slider .slick-next:before {

}

img.test-abs-img {
  width: 105px;
  height: 105px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: absolute;
}

img.test-abs-img.t-img2 {
  top: 10%;
  left: 16%;
}

img.test-abs-img.t-img3 {
  top: 70%;
  left: 30%;
  width: 80px;
  height: 80px;
}

img.test-abs-img.t-img4 {
  right: 22%;
  top: 20%;
  width: 70px;
  z-index: -1;
  height: 70px;
}

img.test-abs-img.t-img5 {
  right: 9%;
  bottom: 18%;
}
.affiliated-main.text-center.mb-5 p {
    font-size: 14px;
    width: 61%;
    text-align: center;
    margin: 0 auto;
}
.affiliated-main.text-center.mb-5 h2 {
    font-size: 86px;
    line-height: 70px;
    color: #0f0e0e;
}

/* end  */
/*inner-banner start*/
section.main_slider.inn .banner_text h3 {
    font-size: 96px;
    color: #101010;
    line-height: 60px;
    font-weight: 500;
}
section.main_slider.inn .socila-icon {
    display: none;
}
section.main_slider.inn .nike-zoom-silder-number {
    bottom: 0px;
    width: 58.2%;
}
section.main_slider.inn .banner_text {
    top: 50%;
    left: 6%;
}
.abt-bot {
    padding: 50px 0px 0px;
    width: 100%;
}
section.inn-service {
    padding: 80px 0px 100px;
}
/*det-service start*/
section.det-ser {
    padding: 80px 0px;
}
.det-ser-txt {
    margin-top: 30px;
}
.det-ser-txt h5 {
    font-size: 40px;
    line-height: 40px;
    color: #101010;
}
.det-ser-txt p{
  font-size: 14px;
  line-height: 26px;
  color: #111110;
}
/*det-service end*/
/* Contact Page Start */

.contact-sec {
    position: relative;
    padding: 90px 0px;
}

.contact-box {
    background: #f0f0f0;
    padding: 40px;
}

.contact-text h6 {
    font-size: 14px;
    text-transform: uppercase;
    color: #6e6e6e;
    font-family: 'Montserrat';
}

.contact-text h3 {
    font-size: 29px;
    text-transform: uppercase;
    color: #000;
    /* word-spacing: 10px; */
    line-height: 35px;
    font-family: 'big-noodle';
    font-weight: 500;
}

.cont-input input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: 1px solid #d0d0d0;
    padding: 10px 20px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.cont-input input::placeholder {
    color: #000;
}

.cont-input textarea {
    width: 100%;
    background: transparent;
    padding: 10px 20px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    height: 100px;
    border: 1px solid #d0d0d0;
}

.cont-input textarea::placeholder {
    color: #000;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: -35px 0 0 -60px;
}

ul.contact-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

ul.contact-icons img {
    width: 60px;
    height: 50px;
    object-fit: contain;
}

.contact-form {
    margin-bottom: 50px;
}

ul.contact-icons.center-box {
    position: relative;
    width: 90%;
    margin: 0 auto;
}

ul.contact-icons.center-box:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: -6%;
    top: 0;
    background: #959595;
}
.contact-text {
    width: 73%;
}

.contact-text p {
    font-size: 13px;
    color: #777777;
}
.contact-button button {
    background: linear-gradient(122deg, rgba(195, 157, 233, 1) 56%, rgba(161, 139, 221, 1) 71%);
    padding: 1px 9px;
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat';
    gap: 12px;
    display: inline-flex;
    align-items: center;
    border: none;
  text-transform: uppercase;
}
ul.contact-icons.center-box:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: -1%;
    top: 0;
    background: #959595;
}

ul.contact-icons {
    padding: 30px 0;
}

.contact-map iframe {
    width: 100%;
    filter: invert(1);
}

.contact-map {
    margin-top: -15%;
    z-index: -1;
}
ul.contact-icons li a {
    font-size: 14px;
    font-family: 'Montserrat';
    color: #989897;
}

/* Contact Page End */
/*latest start*/
.latest-txt h3 {
    font-size: 94px;
    line-height: 94px;
     width: 55%;
     color: #fff;
    font-weight: 500;
}
.latest-txt {
    width: 100%;
    background-color: #111111;
    padding: 40px;
    position: relative;
    height: 600px;
}
.latest-txt p {
    font-size: 15px;
    font-family: 'Montserrat';
    font-weight: 500;
    color: #ffffff96;
    width: 74%;
}
section.latest::before {
    position: absolute;
    top: 0;
    background-color: #ececec;
    content: '';
    width: 88%;
    left: 76px;
    height: 45%;
}
section.latest {
    padding: 80px 0px 150px;
    position: relative;
}
.latest-slid .slick-active {
    opacity: 1;
}
.nike-zoom-silder-number.inn {
    position: absolute;
    width: 100%;
    clip-path: none;
    background-color: unset;
    gap: 22px;
    bottom: 36px;
    display: flex;
    align-items: center;
}
.nike-zoom-silder-number.inn span.start_number{
  color: #fff;
}
.nike-zoom-silder-number.inn span.end_number{
  color: #fff;
}
.lat-txt {
    margin-top: 20px;
}
p.bold {
    font-size: 16px;
    color: #161414;
    width: 92%;
}
.lat-txt ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lat-txt ul li{
  display: flex;
  align-items: center;
  gap:15px;
}
.lat-txt ul li h6{
  margin-bottom: 0;
  font-size: 17px;
  color: #161414;

}

/* Inner Pages End */
/*inn-testimonial start*/
section.inn-testimonial {
    padding: 80px 0px;
}
section.inn-testimonial .row{
  margin-bottom: 30px;
}
section.inn-testimonial .testi-wrap:before{
  position: absolute;
    content: "";
    width: 34%;
    height: 100%;
    left: 0;
    top: 0;
    border-top-left-radius: 10px;
    z-index: -1;
    border-bottom-left-radius: 10px;
    background: linear-gradient(122deg, rgba(195, 157, 233, 1) 56%, rgba(161, 139, 221, 1) 71%);
}
section.inn-testimonial .testi-wrap {
    background-color: #fff;
    position: relative;
    padding: 15px 12px;
    z-index: 0;
    box-shadow: 0 0 10px #00000040;
    border-radius: 5px;
}
section.inn-testimonial img.black-girl {
    
     height: auto; 
     width: auto; 
   
}
section.inn-testimonial .testi-wrap h6{
  font-size: 12px;
      margin-top: 0
}
section.inn-testimonial .testi-wrap h6 span {
    display: block;
    font-family: "Montserrat";
    font-size: 9px;
}
section.inn-testimonial .testi-wrap p {
    font-size: 12px;
}
/*section music start*/
section.music {
    padding: 80px 0px;
}
.music-txt ul {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 0px;
}
.music-txt h5 span {
    display: block;
}
.music-txt h5 {
    font-size: 39px;
    color: #131313;
    line-height: 41px;
}
.music-txt p {
    font-size: 18px;
    color: #7d7d7d;
}
.main-music-bx {
    background-color: #fff;
    box-shadow: 0 0 3px #00000038;
  
}
.main-music-bx .row {
    align-items: center;
}
section.music .row{
  margin-bottom: 30px;
}
a.btn-1:hover {
    background: #000;
    border: 1px solid;
}
ul.footer-link li a:hover {
    color: #a18bdd;
}
span.previous_caro.slick-arrow {
    position: relative;
    z-index: 9999999;
}
.socila-icon ul li i:hover {
    border: 1px solid #a68ede;
    color: #a68ede;
}





@media only screen and (min-width: 1366px) and (max-width: 1400px){
  .nike-zoom-silder-number{
    width: 58.2%;
  }
  ul.footer-link::before{
    width: 248vh;
  }
  ul.footer-link::after{
    width: 248vh;
  }
  .fotter-bx input{
    width: 78%;
  }

}

@media only screen and (min-width: 1200px) and (max-width: 1365px){
  a.btn-1{
    font-size: 12px;
  }
  .nike-zoom-silder-number {
    width: 59.2%;
    gap: 90px;
    z-index: 9999999;
}
.abt-txt {
    margin-left: 54px;
}
.abt-txtt h5 {
    font-size: 24px;
    margin-left: 67px;
}
.abt-txtt {
    padding: 20px;
    width: 46%;
    right: 32px;
}
.abt-img{
  width: 98%;
}
.abt-txt p{
  font-size: 13px;
  line-height: 24px;
}
.what-we-bot-txt a{
  top: 28px;
}
.tranding-img::before {
    bottom: -27px;  
    right: 121px;
}
.tranding-img::after{
  right: -45px;
}
.fotter-bx input{
  width: 75%;
}
.music-txt ul{
   gap: 11px;
}

}

@media only screen and (min-width: 992px) and (max-width: 1199px){}

@media only screen and (min-width: 768px) and (max-width: 991px){}

@media only screen and (min-width: 520px) and (max-width: 767px){}

@media only screen and (min-width: 300px) and (max-width: 519px){

    
}




ul.post-feed {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}



ul.audio-plr li .ad-pl-im2 {
  position: absolute;
  left: 0;
  width: 0%;
}

ul.post-feed li img {
  height: 80px;
  width: 85px;
}

ul.post-feed li:last-child {
  width: 90%;
}


ul.post-feed li:last-child ul.audio-tools li:last-child {
  width: unset;
}


ul.audio-plr li:last-child {
  width: unset;
}

.ado-plr-mn:first-child ul.audio-plr {
  width: 100%;
  justify-content: center;
}

.ado-plr-mn:last-child ul.audio-tools {
  width: 18%;
}

.ado-plr-mn:first-child ul.audio-plr li:nth-child(2) span,
.ado-plr-mn:first-child ul.audio-plr li:nth-child(4) span {
  width: 80px;
  margin: 0 !important;
}

.ado-plr-mn:first-child ul.audio-plr li:nth-child(3) {
  width: 75%;
}

section.video-post h2.theme-h2 {
  margin-bottom: 10px;
}

section.video-post p {
  text-align: center;
  font-size: 14px;
  color: #000;
  width: 39%;
  margin: 0 auto;
  margin-bottom: 40px;
}

ul.audio-tools li button {
  border: unset;
  background: unset;
}

ul.audio-tools li button i {
  font-size: 30px;
  color: #000;
}

ul.audio-plr {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin: auto;
  justify-content: space-between;
}

.audio-plr li span {
  width: auto;
  display: inline-block;
  text-align: center;
  color: white;
  font-family: 'oldeng';
  font-size: 22px;
}

ul.post-feed .audio-plr li img,
.audio-banner .audio-plr li img {
  width: 100%;
  object-fit: cover;
  height: 69px;
  object-position: left;
}

ul.audio-plr li {
  position: relative;
}

ul.audio-plr li .ad-pl-im2 {
  position: absolute;
  left: 0;
  width: 0%;
}

.ado-plr-mn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

ul.audio-tools {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  gap: 5%;
  z-index: 99;
}

ul.audio-tools span i {
  color: white;
  font-size: 15px;
}

.ado-cmplt i::before {
  content: "\f04b" !important;
}

.adi-play i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid;
  padding: 0;
}

span.crnt-time {
  margin-right: 30px;
}

span.tctl-time {
  margin-left: 30px;
}



ul.ado-albm {
  width: 90%;
}

ul.audio-lst {
  display: none;
}

.playing .adi-play i::before {
  content: '\f04c';
}

h4.vid-num {
position: absolute;
font-size: 100px;
text-transform: uppercase;
font-family: 'sui-generis';
left: 20px;
top: -60px;
z-index: -1;
background: linear-gradient(180deg, rgb(105 104 102) 0%, rgb(0 0 0 / 39%) 57%);
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* end  */


.audio-banner .ado-plr-mn {
  display: block;
}

.audio-banner ul.audio-tools {
  width: 100% !important;
  justify-content: center;
}

.audio-banner span.adi-play i {
  background: #fff;
  color: #000;
  font-weight: 900;
}

.audio-banner .audio-plr li img {
  width: 100%;
  object-fit: cover;
  height: 19px;
  /* object-position: left; */
  margin-bottom: 10px;
}

.audio-banner .ado-plr-mn:first-child ul.audio-plr {
  width: 90%;
  margin: 0 auto;
  display: block;
}
.player-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ado-plr-mn:first-child ul.audio-plr li:nth-child(3) {
  width: 37%;
}

html {
    overflow-x: hidden;
}

@media only screen and (min-width: 1366px) and (max-width: 1920px){}

@media only screen and (min-width: 1200px) and (max-width: 1365px){
    
.menuSec ul li a {
    padding: 10px 30px 10px 25px;
    font-size: 13px;
   
}
.latest-txt h3 {
    font-size: 80px;
       line-height: 85px;
  
}
section.tranding {
    padding: 135px 0;

}
.achivement-txt p {
  
    line-height: 25px;
}
.tranding-img img {
    height: 506px;
 
}
section.about {
    padding: 180px 0 100px;
}
ul.post-feed {
   
    margin-bottom: 10px;
}
div#amplitude-right div.song {
 
    padding: 5px;
   
}
ul.post-feed .audio-plr li img, .audio-banner .audio-plr li img {
   
    height: 30px;
    
}
ul.post-feed li img {
    height: 70px;
    width: 85px;
}
section.what-we {
    padding: 80px 0 120px 0;
    
}
.what-we-main:before {

    top: 35px;
    left: 60px;
    width: 58%;
    height: 85%;
}
    
    .slide_counter h2 {

    font-size: 50px !important;
}
.what-we-bot-txt p {
    
    line-height: 25px;
   
}
.banner_text p {
    font-size: 13px;

    width: 85%;
    line-height: 22px;
}
.banner_text h3 {
    font-size: 80px;
    line-height: 50px;
}
    
    ul.contact-icons li a p {
    margin-bottom: 0;
}
.cont-input input {
   
    margin-bottom: 5px;
}
ul.contact-icons.center-box li p {
    font-size: 12px;
    margin-bottom: 0;
}

.contact-text h3 {
    font-size: 29px;
  
    line-height: 5px;
  
}
   .nike-zoom-silder-number h3 {

    font-size: 50px !important;

}
ul.contact-icons img {
    width: 40px;
    height: 40px;

}
ul.contact-icons li a {
    font-size: 12px;

}
.contact-box {
    
    padding: 20px;
}
section.inn-testimonial .testi-wrap p {
    font-size: 11px;
    line-height: 22px;
}
.det-ser-txt h5 {
    font-size: 40px;
    line-height: 20px;
  
}
.det-ser-txt {
    margin-top: 0px;
}
section.main_slider.inn .banner_text h3 {
    font-size: 60px;
    
}
section.latest {
    padding: 80px 0 130px;

}
ul.footer-link li {
    padding: 0 20px;
}
.latest-txt {

    height: 540px;
}
.nike-zoom-silder-number.inn {
    width: 100%;
    gap: 20px;
    bottom: 30px;
    padding: 0;
    justify-content: center;
}
.latest-txt p {
    font-size: 14px;
 
    width: 100%;
}
.nike-zoom-silder-number h3::before {
  
   
    width: 65px;
  
}
.latest-txt h3 {
    font-size: 80px;
    line-height: 85px;
    width: 100%;
    margin-bottom: 10px;
}
.banner_text h1 {

    font-size: 120px;
    line-height: 115px;
}
    
    
    
    
    
    
    
    
}

@media only screen and (min-width: 992px) and (max-width: 1199px){
section.main_slider.inn .nike-zoom-silder-number {
    width: 64.2%;
}
.banner-slider {
    width: 62%;
}
.ban-1 img {
    height: 540px;
    padding: 0 50px 0 0;
}
.det-ser-txt h5 {
    font-size: 40px;
    line-height: 20px;
}
.det-ser-txt {
    margin-top: 0;
}
.what-we-bot-txt a {
    top: 20px;
}
.what-we-main:before {
    top: 18px;
    left: 60px;
    height: 90%;
}
.footer-bot p {
    font-size: 12px;
}
.what-we-bot-txt p {
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 0;
}
.what-we-bot-txt h4 {
    font-size: 30px;
    line-height: 35px;
    padding: 15px 0 0;
    margin-bottom: 5px;
}
.fotter-bx {
    padding: 20px;
    width: 49%;
}
section.inn-testimonial img.black-girl {
    height: 100px;
    width: 100px;
}
section.inn-testimonial .testi-wrap h6 {
    font-size: 10px;
    margin-top: 0;
}
section.inn-testimonial .testi-wrap p {
    font-size: 10px;
    line-height: 20px;
}
section.inn-testimonial .testi-wrap {
    height: 200px;
}
ul.contact-icons li p {
    font-size: 10px;
    margin-bottom: 0;
}
.contact-box {
    padding: 25px;
}
ul.contact-icons li a {
    font-size: 9px;
}
ul.contact-icons img {
    width: 30px;
    height: 30px;
}
.cont-input input {
    margin-bottom: 5px;
}
.contact-text h3 {
    font-size: 28px;
    margin-bottom: 10px;
}
.contact-text h6 {
    font-size: 14px;
    margin-bottom: 10px;
}
.abt-txt p {
    font-size: 12px;
    line-height: 23px;
    margin-bottom: 10px;
}
ul.footer-link li {
    padding: 0 13px;
}
ul.footer-link li a {
    color: #fff;
    font-size: 12px;
}
.ban-1 .bann-2 img {
    height: 340px;
 
}
a.btn-1 {
    padding: 5px 9px;
    font-size: 10px;
    gap: 12px;
}
.nike-zoom-silder-number {
    width: 66.2%;
   
}
a.btn-1 img {
    object-fit: contain;
    width: 35px;
    height: 33px;
    object-fit: contain;
}
.fotter-bx h5 {
    font-size: 35px;
    line-height: 48px;
    color: #fff;
    margin-bottom: 0;
}
.abt-img::before {
    width: 100%;
    height: 730px;
    right: -30px;
}
.abt-img img,
.abtimg2 img {
    width: 90%;
}
.abt-txtt h5 {
    font-size: 28px;
    line-height: 30px;
}
.abt-txtt {
    width: 60%;
    padding: 20px;
    position: absolute;
    right: -15px;
    z-index: -1;
}
.abt-txt h3 {
    font-size: 70px;
    line-height: 40px;
}
img.fluid-1 {
    height: 600px;
    width: 100%;
}
section.about {
    padding: 220px 0 60px;
}
section.main_slider.inn .banner_text h3 {
    font-size: 65px;
    margin: 0;
}
.nike-zoom-silder-number h3::before {
    width: 50px;
}
.nike-zoom-silder-number h3 {
    font-size: 40px;
}
.nike-zoom-silder-number {
    width: 61.2%;
    padding: 5px 29px;
    gap: 85px;
}
.slide_counter h2 {
    margin-bottom: 0;
    font-size: 45px;
}
.tranding-txt h4 {
    font-size: 70px;
 
}
.banner_text h3 {
    font-size: 75px;
    color: #101010;
    line-height: 40px;
}
.banner_text h1 {
    color: #9e8adb;
    font-size: 115px;
    line-height: 115px;
}
.what-txt h3 {
    text-align: center;
    font-size: 75px;
   
}
.affiliated-main.text-center.mb-5 h2 {
    font-size: 75px;
  
}
.tranding-img {

    top: 89px;
  
}
section.tranding::before {

    width: 48%;
    height: 81%;
    top: 56px;
    clip-path: polygon(54% 0, 100% 55%, 50% 100%, 0 100%, 0 0);
}
section.tranding {
    padding: 140px 0 80px;

}
.tranding-img img {
    height: 416px;

}
div#amplitude-right div.song {

    padding: 0px;
    
}
.ado-plr-mn:last-child ul.audio-tools {
    width: 28%;
}
ul.post-feed li img {
    height: 60px;
    width: 75px;
}
.audio-plr li span {
  
    font-size: 18px;
}
ul.post-feed .audio-plr li img, .audio-banner .audio-plr li img {
    
    height: 25px;

}
section.testomonial {
    position: relative;
    padding: 120px 0 120px;
}
.achivement-txt h4 {
    font-size: 75px;
  
}
.achive-img .achive-img-2 {
  
    left: -83px;
}
.achivement-txt p {
    font-size: 12px;
   
    line-height: 22px;
}
img.test-abs-img.t-img5 {
    right: 9%;
    bottom: 8%;
}
img.test-abs-img.t-img2 {
    top: 5%;
    left: 12%;
}
img.test-abs-img.t-img3 {
    top: 80%;
  
}
section.latest {
    padding: 50px 0 120px;
   
}
.affiliated-main {
    margin-bottom: 30px !important;
}
img.test-abs-img.t-img4 {
    right: 12%;
   
}
img.black-girl {
   
    top: 9%;
    left: 18%;
    height: 170px;
    width: 170px;
    object-fit: cover;
}
.latest-txt {
 
    height: 530px;
}
.menuSec ul li a {
    padding: 10px 10px 10px 25px;
    font-size: 13px;
}
.nike-zoom-silder-number.inn{

    gap: 5px;
   
}
.latest-txt p {
    font-size: 13px;
    width: 100%;
}
.latest-txt h3 {
    font-size: 55px;
    line-height: 65px;
    width: 100%;
  
    margin-bottom: 10px;
}
.what-we-bot-txt p {
    font-size: 12px;
   
    line-height: 20px;
   
}
.latest-txt {
 
    padding: 20px;
  
}
.lat-txt ul li h6 {
    
    font-size: 15px;
    
}
    
    
    
    
    
    
    
    
    
    
}

@media only screen and (min-width: 768px) and (max-width: 991px){
.footer-bot p {
    font-size: 12px;
   
}
.fotter-bx {
    background: linear-gradient(122deg, rgba(195, 157, 233, 1) 56%, rgba(161, 139, 221, 1) 71%);
    padding: 30px;

   
    padding-left: 4%;
}
.fotter-bx h5 {
    font-size: 35px;
    line-height: 38px;

    margin-bottom: 10px;
}
span.previous_caro.slick-arrow img {
    width: 70%;
}
span.next_caro.slick-arrow img {
     width: 70%;
}

.nike-zoom-silder-number.inn {
    justify-content: center;
    width: 100%;
    gap: 5px;
    bottom: 36px;
    padding: 0;
}
.menuSec ul li a {
   
    padding: 10px 10px 10px 5px;
    font-size: 13px;
  
}
.nike-zoom-silder-number {
  
    bottom: 107px;
 
    width: 56.2%;

    padding: 5px 53px;
   
}
.socila-icon ul li {
    padding: 0 8px;
}
.socila-icon h5 {
    font-size: 25px;
    
}
.socila-icon ul li i {
    font-size: 16px;
 
    width: 30px;
    height: 30px;

}
img.fluid-1 {
    height: 555px;
   
}
.ban-1 img {
    height: 510px;
 
    padding: 0 130px 0 0;
}
.ban-1 .bann-2 img {
    height: 260px;

}
.banner_text p {
    font-size: 12px;
    line-height: 20px;
}
.banner_text h3 {
    font-size: 45px;

    line-height: 30px;
    margin-bottom: 20px;
}
.banner_text h1 {
 
    font-size: 55px;
    line-height: 45px;
}
.nike-zoom-silder-number h3::before {
  
    top: 16px;
    left: 27px;
    height: 1px;
    width: 10px;
    
}
span.previous_caro img {
    width: 80%;
}
span.next_caro img {
    width: 80%;
}
.nike-zoom-silder-number h3 {

    font-size: 30px;
  
}
.nike-zoom-silder-number {
   
    gap: 20px;
   
}
a.btn-1 img {
    width: 25px;
    height: 23px;
    object-fit: contain;
}
section.main_slider.inn .banner_text h3 {
    font-size: 45px !important;
  
}
ul.contact-icons.center-box li p {
    font-size: 8px;
    line-height: 16px;
}
ul.contact-icons img {
    width: 45px;
    height: 35px;
  
}
ul.contact-icons li p {
    margin-bottom: 0;
}
ul.contact-icons li a {
    font-size: 10px;
  
}
.cont-input input {
   
    margin-bottom: 5px;
}
.contact-text h6 {
    font-size: 14px;
   
    margin-bottom: 10px;
}
.contact-text h3 {
    font-size: 29px;
  
    margin-bottom: 10px;
}
.contact-sec {
  
    padding: 50px 0px;
}
.contact-box {

    padding: 15px;
}
section.inn-testimonial .testi-wrap {
  
    height: 280px;
}
img.black-girl {
   
  
  
    left: 18%;
  
}
section.inn-testimonial img.black-girl {
    height: 80px;
    width: 80px;
}
.det-ser-txt h5 {
    font-size: 35px;
    line-height: 20px;
 
}
.det-ser-txt p {
    font-size: 12px;
    line-height: 22px;
   
}
section.inn-service {
    padding: 40px 0px 100px;
}
.det-ser-txt {
    margin-top: 0px;
}
section.about .row {
    align-items: center;
}
section.main_slider.inn .ban-1 img {
    height: 370px;
    padding: 0 130px 0 0;
}
section.main_slider.inn .ban-1 .bann-2 img {
    height: 230px;
}
section.main_slider.inn img.fluid-1 {
    height: 475px;
}
section.about {
    padding: 100px 0 50px !important;
}
a.btn-1 {
  
    padding: 5px 5px;
 
    font-size: 8px;
    
    gap: 8px;

}
section.achivement {
    padding-bottom: 20px;
}
section.about {
    padding: 200px 0 50px;
}
.abt-txt h3 {
    font-size: 70px;
    line-height: 40px;
 
}
.abt-txtt h5 {
    font-size: 20px;
 
    margin-left: 46px;
}
.abt-txtt {
    padding: 20px;
    width: 55%;
    right: -16px;
    z-index: -1;
}
.abt-img::before {
   
    right: -29px;
}
.abt-img img {
    width: 80%;
}
.abtimg2 img {
    width: 80%;
}
.abt-txt p {
    font-size: 12px;
    line-height: 22px;
 
    margin-bottom: 20px;
}
section.what-we {
    padding: 80px 0 30px 0;
   
}
section.what-we::before {
  
    top: 45px;

    height: 100px;

}
.what-txt h3 {
 
    font-size: 60px;
 
}
.what-we-main:before {

    top: 20px;
    left: 60px;
    width: 58%;
    height: 85%;
  
    border-style: solid;
}
.what-we-bot-txt a {
    margin-left: 40px;

    top: 25px;
}
.what-we-bot-txt p {
    font-size: 12px;
   
    line-height: 22px;
   
}
.what-we-bot-txt h4 {
    font-size: 28px;
    line-height: 35px;
 
    padding: 10px 0 0 0;
    margin-bottom: 10px;
}
section.tranding {
    padding: 100px 0;

}
.tranding-txt {
    margin-top: 30px;
}
.slide_counter h2 {
 
    font-size: 30px;
}
.tranding-img img {
    height: 326px;
 
}
.tranding-img {
  
    top: 130px;
   
}
section.tranding::before {
   
    width: 48%;
    height: 75%;
    top: 85px;
    clip-path: polygon(54% 0, 100% 55%, 50% 100%, 0 100%, 0 0);
}
.tranding-txt h4 {
    font-size: 60px;
    
}
ul.post-feed {

    margin-bottom: 0;
}
.achivement-txt h4 {
    font-size: 65px;
   
}
.adi-play i {
    width: 25px;
    height: 25px;
   
}
.audio-plr li span {
    
    font-size: 14px;
}
ul.audio-tools span i {
    
    font-size: 10px;
}
ul.post-feed li img {
    height: 60px;
    width: 70px;
}
ul.post-feed .audio-plr li img, .audio-banner .audio-plr li img {
 
    height: 25px;
 
}
.achive-img {

    text-align: end;
}
.achive-img img {
    width: 80%;
}
.achive-img-2 img {
    width: 70%;
}
.achive-img-3 img {
    width: 55%;
}
.achivement-txt p {
    font-size: 12px;
 
    line-height: 22px;
}
img.black-girl {
 
    height: 100px;
    width: 100px;
  
}
.affiliated-main.text-center.mb-5 h2 {
    font-size: 65px;
 
}
.testi-wrap {

    padding: 20px 20px;
  
}
.testi-wrap h6 {
    font-size: 17px;
   
    margin-top: -70px;
}
.testi-wrap p {
    font-size: 12px;
    line-height: 20px;
}
img.test-abs-img.t-img4 {
    right: 12%;
    top: 16%;
   
}
img.test-abs-img.t-img2 {
   
    left: 12%;
}
img.test-abs-img.t-img3 {
    top: 80%;
  
}
img.test-abs-img.t-img5 {
 
    bottom: 3%;
}
.affiliated-main {
    margin-bottom: 0 !important;
}
section.testomonial {

    padding: 80px 0 90px;
}
section.latest {
    padding: 50px 0 100px;
 
}
.latest-txt p {
    font-size: 12px;
    width: 100%;
    line-height: 20px;
}
.latest-txt h3 {
    font-size: 35px;
    line-height: 65px;
    width: 100%;
 
    margin-bottom: 0;
}
.latest-txt {
    padding: 15px;
    height: 390px;
}
.lat-txt p {
    font-size: 12px;
    line-height: 20px;
}
.lat-txt ul li h6 {
    margin-bottom: 0;
    font-size: 12px;
  
}
p.bold {
    font-size: 14px;
       margin-bottom: 0;
    width: 100%;
}
ul.footer-link li a {

    font-size: 11px;

}
.fotter-bx p {
    font-size: 13px;
    width: 100%;
  
    line-height: 22px;
}
.footer-form p {
    width: 67%;
}
ul.footer-link li {
    padding: 0 5px;
}











   
}

@media only screen and (min-width: 520px) and (max-width: 767px){
        .menuSec {
  
    text-align: center;
}
a.btn-1 {

    padding: 1px 5px;
   
    font-size: 10px;
   
    gap: 8px;
    
} 
.what-we-main {
    margin-top: 10px;
   
}
section.what-we::before {
   
    top: 58px;

    height: 80px;
   
}
.what-txt h3 {

    font-size: 40px;

}
.nike-zoom-silder-number {
    
    opacity: 0;
}
a.btn-1 img {
    width: 40px;
    height: 33px;
    object-fit: contain;
}
   .nike-zoom-silder-number {
    display: none !important;
} 
.nike-zoom-silder-number {
       display: none !important;
}
.text-end {
    text-align: center !important;
}
a.btn-1 {
    margin-top: 15px;
}
.tranding-txt {
    text-align: center;
    margin-top: 30px;
}
.achivement-txt h4 {
    font-size: 40px;
    line-height: 45px;
    
}
.adi-play i {
    width: 20px;
    height: 20px;
   
}
ul.post-feed .audio-plr li img, .audio-banner .audio-plr li img {

    height: 15px !important;
  
    width: auto !important;
}
.audio-plr li span {
   
    font-size: 8px;
}
ul.audio-tools span i {
   
    font-size: 7px;
}
ul.post-feed li img {
    height: 40px !important;
    width: 85px !important;
}
img.lazy.entered.loaded {
    width: 100% !important;
}
.tranding-img img {
    height: 275px;

}
.tranding-txt h4 {
    font-size: 50px;
    line-height: 40px;
  
}
section.tranding::before {
   
      display: none !important;
}
.tranding-img {
    position: inherit;
    left: 0px;
    top: 0px;
    width: 100%;
}
.what-we-img {
    margin-top: 20px;
}
.what-we-main:before {
       opacity: 0;
}
tered.loaded {
    width: 100% !important;
}
.what-we-bot-txt a {
    margin-left: 0;

    top: 5px;
}
.what-we-bot-txt p {
    font-size: 12px;
    
    line-height: 20px;
   
}
.what-we-bot-txt h4 {
    font-size: 30px;
    line-height: 35px;

    margin-bottom: 5px;
}
.affiliated-main.text-center.mb-5 h2 {
    font-size: 40px;
      margin-bottom: 0 !important;
   
}
.affiliated-main {
    margin-bottom: 0 !important;
}

.what-we-bot-txt {
    text-align: center;
}
section.achivement {

    padding: 40px 0;
}
img.test-abs-img.t-img2 {
     display: none !important;
}
p.bold {
    line-height: 18px;
    font-size: 10px;

    margin-bottom: 5px;
}
section.latest::before {
      display: none;
}
.lat-txt ul li i {
    font-size: 11px;
}
section.latest {
    padding: 20px 0 20px;
  
}

.fotter-bx {
    background: linear-gradient(122deg, rgba(195, 157, 233, 1) 56%, rgba(161, 139, 221, 1) 71%);
    padding: 20px;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
        height: 160px;
    padding-left: 6%;
}
.lat-txt ul li {
   
    gap: 5px;
}
img.fluid-1 {
    height: 395px;
  
}
.socila-icon h5 {
    font-size: 22px;
   
}
.ban-1 .bann-2 {
    margin-left: 7%;

    top: 146px;
}
.socila-icon ul li {
    padding: 0 4px;
}
.socila-icon ul li i {
    font-size: 15px;
 
    width: 30px;
    height: 30px;
   
}


.banner_text {
    top: 190px !important;
    width: 60% !important;
}
.abt-txt {
    margin-top: 30px;
}
.abt-txtt {
       display: none !important;
}
.abt-img::before {
    display: none !important;
}
.ban-1 img {
  
    width: 70%;
}
.banner-slider {
    position: absolute;
    top: 130px;
    right: 0;
    width: 70%;
    height: 100%;
   
}
.ban-1 .bann-2 img {
    height: 100px;
  
}
.ban-1 img {
    height: 292px;
   
    padding: 0 0px 0 0;
}
.banner_text p {
    font-size: 10px;
 
    line-height: 14px;
}
.banner_text h3 {
    font-size: 25px;
   
    line-height: 0px;
    margin-bottom: 21px;
}
.banner_text h1 {
    color: #9e8adb;
    font-size: 40px;
    line-height: 30px;
}
section.about {
    padding: 300px 0 0;
    text-align: center;
}
.abt-txt h3 {
    font-size: 50px;
    line-height: 10px;
   
}
.abt-txt p {
    font-size: 12px;
    line-height: 22px;
    
    margin-bottom: 10px;
}
.abt-txt {
    margin-left: 0px;
}
ul.footer-link li {
       padding: 0 5px;
}
.testi-slider ul.slick-dots {
 
    justify-content: center;
}
.testi-wrap b {
 
    justify-content: center;
}


ul.footer-link {
   
    margin-top: 58px;
 
}
.footer-bot p {
    font-size: 10px;

    padding-top: 0px;
    margin-bottom: 15px;
}
.footer-form p {
    width: 70% !important;
}

ul.footer-link li a {

    font-size: 7px;
  
}
.fotter-bx button {
   
    font-size: 8px;
    
    padding: 10px 20px;
}
.fotter-bx input {
    width: 80%;
    padding: 10px;
   
}
.fotter-bx p {
    font-size: 10px;
    width: 100%;
  
    line-height: 20px;
}
.fotter-bx h5 {
    font-size: 25px;
    line-height: 35px;
   
    margin-bottom: 0;
}
.foter-aerow {

    right: 23px;
}
.lat-txt ul li h6 {
  
    font-size: 8px;
 
}
.foter-aerow i {
    font-size: 20px;
  
    height: 45px;
    width: 45px;
   
}
.latest-slid {
    margin-top: 20px;
}
.lat-txt p {
    font-size: 11px;
    line-height: 17px;
}
.latest-txt {
    padding: 20px;
    height: 150px;
    text-align: center;
}
.latest-txt p {
    font-size: 12px;
  
    width: 100%;
    line-height: 20px;
}
.latest-txt h3 {
    font-size: 40px;
    line-height: 35px;
    width: 100%;
 
    margin-bottom: 10px;
}
.html img.black-girl {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    position: inherit;
    top: 0;
    left: 0;
    width: 50px !important;
    object-fit: cover;
    height: 50px !important;
}
.testi-wrap {
    
    padding: 20px 20px;
  
    text-align: center;
}
.testi-wrap p {
    font-size: 12px;
    line-height: 20px;
}
img.test-abs-img.t-img3 {
     display: none !important;
}
section.testomonial {

    padding: 90px 0 50px;
}
img.test-abs-img.t-img4 {
    display: none !important;
}
img.test-abs-img.t-img5 {
      display: none !important;
}
.tranding-img::after {
     display: none !important;
}
section.tranding {
      padding: 30px 0 30px;
    position: relative;
}
section.tranding::after {
 
    top: 0;
    height: 100%;
    right: 0;
    width: 100%;
   
}
div#amplitude-right div.song {
  
    padding: 0px;
   
}
.tranding-txt h4 {
    font-size: 40px !important;
    line-height: 40px;
}
.achivement-txt::before {
 
    top: 49px;

    width: 100%;
    height: 1px;
    content: '';
    left: 0;
}
.achivement-txt p {
    font-size: 12px;
 
    line-height: 22px;
}
section.achivement {
    padding-bottom: 0px;
    text-align: center;
}
.achive-img {
    position: relative;
    text-align: center;
}
img.lazy.entered.loaded {
    width: 80%;
}
.achive-img-2 img {
    width: 60% !important;
}
.achive-img .achive-img-2 {
  
    left: -40px;
}





ul.audio-tools {
    gap: 0%;
}


.ado-plr-mn:last-child ul.audio-tools {
    width: 34%;
}
.testi-wrap h6 {margin-top: 140px;color: #000;}


/*img.lazy.entered.loaded {*/
/*    width: 50% !important;*/
/*    height: 100px;*/
/*}*/



section.main_slider .col-md-7 {
    width: 100% !important;
}
section.inn-testimonial img.black-girl {
    height: 50px;
    width: 50px;
}
.contact-sec {
    position: relative;
    padding: 30px 0px;
}
ul.contact-icons li p {
    margin-bottom: 0;
    font-size: 10px;
    line-height: 19px;
}
ul.contact-icons {
    padding: 0px 0;
}
ul.contact-icons li a {
    font-size: 11px;
  
}
ul.contact-icons li p {
    margin-bottom: 0;
}
ul.contact-icons img {
    width: 40px;
    height: 30px;
    object-fit: contain;
}
.cont-input input {

    margin-bottom: 5px;
}
.contact-text h3 {
  
    margin-bottom: 10px;
}
.contact-text h6 {
    font-size: 14px;
   
    margin-bottom: 10px;
}
img.black-girl {
  
    top: 3%;
    left: 1%;
  
}
.contact-box {

    padding: 20px;
}

.ban-1 {
    height: 350px;
    position: relative;
    top: -10px;
    right: -72px;
}
    
.abtimg2 {
    top: -90px !important;
    right: 0 !important;
}
img.lazy.black-girl.entered.loaded {}

.testi-slider img.lazy.black-girl.entered.loaded {
    width: 150px !important;
    height: 120px;
    object-fit: contain;
}
section.main_slider.inn .banner_text h3 {
    font-size: 36px;
 
}
}

@media only screen and (min-width: 300px) and (max-width: 519px){
    .menuSec {
  
    text-align: center;
}
a.btn-1 {

    padding: 1px 5px;
   
    font-size: 10px;
   
    gap: 8px;
    
} 
.what-we-main {
    margin-top: 10px;
   
}
section.what-we::before {
   
    top: 58px;

    height: 80px;
   
}
.what-txt h3 {

    font-size: 40px;

}
.nike-zoom-silder-number {
    
    opacity: 0;
}
a.btn-1 img {
    width: 40px;
    height: 33px;
    object-fit: contain;
}
   .nike-zoom-silder-number {
    display: none !important;
} 
.nike-zoom-silder-number {
       display: none !important;
}
.text-end {
    text-align: center !important;
}
a.btn-1 {
    margin-top: 15px;
}
.tranding-txt {
    text-align: center;
    margin-top: 30px;
}
.achivement-txt h4 {
    font-size: 40px;
    line-height: 45px;
    
}
.adi-play i {
    width: 20px;
    height: 20px;
   
}
ul.post-feed .audio-plr li img, .audio-banner .audio-plr li img {

    height: 15px !important;
  
    width: auto !important;
}
.audio-plr li span {
   
    font-size: 8px;
}
ul.audio-tools span i {
   
    font-size: 7px;
}
ul.post-feed li img {
    height: 40px !important;
    width: 85px !important;
}
img.lazy.entered.loaded {
    width: 100% !important;
}
.tranding-img img {
    height: 275px;

}
.tranding-txt h4 {
    font-size: 50px;
    line-height: 40px;
  
}
section.tranding::before {
   
      display: none !important;
}
.tranding-img {
    position: inherit;
    left: 0px;
    top: 0px;
    width: 100%;
}
.what-we-img {
    margin-top: 20px;
}
.what-we-main:before {
       opacity: 0;
}
tered.loaded {
    width: 100% !important;
}
.what-we-bot-txt a {
    margin-left: 0;

    top: 5px;
}
.what-we-bot-txt p {
    font-size: 12px;
    
    line-height: 20px;
   
}
.what-we-bot-txt h4 {
    font-size: 30px;
    line-height: 35px;

    margin-bottom: 5px;
}
.affiliated-main.text-center.mb-5 h2 {
    font-size: 40px;
      margin-bottom: 0 !important;
   
}
.affiliated-main {
    margin-bottom: 0 !important;
}

.what-we-bot-txt {
    text-align: center;
}
section.achivement {

    padding: 40px 0;
}
img.test-abs-img.t-img2 {
     display: none !important;
}
p.bold {
    line-height: 18px;
    font-size: 10px;

    margin-bottom: 5px;
}
section.latest::before {
      display: none;
}
.lat-txt ul li i {
    font-size: 11px;
}
section.latest {
    padding: 20px 0 20px;
  
}

.fotter-bx {
    background: linear-gradient(122deg, rgba(195, 157, 233, 1) 56%, rgba(161, 139, 221, 1) 71%);
    padding: 20px;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
        height: 160px;
    padding-left: 6%;
}
.lat-txt ul li {
   
    gap: 5px;
}
img.fluid-1 {
    height: 395px;
  
}
.socila-icon h5 {
    font-size: 22px;
   
}
.ban-1 .bann-2 {
    margin-left: 7%;

    top: 146px;
}
.socila-icon ul li {
    padding: 0 4px;
}
.socila-icon ul li i {
    font-size: 15px;
 
    width: 30px;
    height: 30px;
   
}


.banner_text {
    top: 190px !important;
    width: 60% !important;
}
.abt-txt {
    margin-top: 30px;
}
.abt-txtt {
       display: none !important;
}
.abt-img::before {
    display: none !important;
}
.ban-1 img {
  
    width: 70%;
}
.banner-slider {
    position: absolute;
    top: 130px;
    right: 0;
    width: 70%;
    height: 100%;
   
}
.ban-1 .bann-2 img {
    height: 100px;
  
}
.ban-1 img {
    height: 292px;
   
    padding: 0 0px 0 0;
}
.banner_text p {
    font-size: 10px;
 
    line-height: 14px;
}
.banner_text h3 {
    font-size: 25px;
   
    line-height: 0px;
    margin-bottom: 21px;
}
.banner_text h1 {
    color: #9e8adb;
    font-size: 40px;
    line-height: 30px;
}
section.about {
    padding: 300px 0 0;
    text-align: center;
}
.abt-txt h3 {
    font-size: 50px;
    line-height: 10px;
   
}
.abt-txt p {
    font-size: 12px;
    line-height: 22px;
    
    margin-bottom: 10px;
}
.abt-txt {
    margin-left: 0px;
}
ul.footer-link li {
       padding: 0 5px;
}
.testi-slider ul.slick-dots {
 
    justify-content: center;
}
.testi-wrap b {
 
    justify-content: center;
}


ul.footer-link {
   
    margin-top: 58px;
 
}
.footer-bot p {
    font-size: 10px;

    padding-top: 0px;
    margin-bottom: 15px;
}
.footer-form p {
    width: 70% !important;
}

ul.footer-link li a {

    font-size: 7px;
  
}
.fotter-bx button {
   
    font-size: 8px;
    
    padding: 10px 20px;
}
.fotter-bx input {
    width: 80%;
    padding: 10px;
   
}
.fotter-bx p {
    font-size: 10px;
    width: 100%;
  
    line-height: 20px;
}
.fotter-bx h5 {
    font-size: 25px;
    line-height: 35px;
   
    margin-bottom: 0;
}
.foter-aerow {

    right: 23px;
}
.lat-txt ul li h6 {
  
    font-size: 8px;
 
}
.foter-aerow i {
    font-size: 20px;
  
    height: 45px;
    width: 45px;
   
}
.latest-slid {
    margin-top: 20px;
}
.lat-txt p {
    font-size: 11px;
    line-height: 17px;
}
.latest-txt {
    padding: 20px;
    height: 150px;
    text-align: center;
}
.latest-txt p {
    font-size: 12px;
  
    width: 100%;
    line-height: 20px;
}
.latest-txt h3 {
    font-size: 40px;
    line-height: 35px;
    width: 100%;
 
    margin-bottom: 10px;
}
.html img.black-girl {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    position: inherit;
    top: 0;
    left: 0;
    width: 50px !important;
    object-fit: cover;
    height: 50px !important;
}
.testi-wrap {
    
    padding: 20px 20px;
  
    text-align: center;
}
.testi-wrap p {
    font-size: 12px;
    line-height: 20px;
}
img.test-abs-img.t-img3 {
     display: none !important;
}
section.testomonial {

    padding: 90px 0 50px;
}
img.test-abs-img.t-img4 {
    display: none !important;
}
img.test-abs-img.t-img5 {
      display: none !important;
}
.tranding-img::after {
     display: none !important;
}
section.tranding {
      padding: 30px 0 30px;
    position: relative;
}
section.tranding::after {
 
    top: 0;
    height: 100%;
    right: 0;
    width: 100%;
   
}
div#amplitude-right div.song {
  
    padding: 0px;
   
}
.tranding-txt h4 {
    font-size: 40px !important;
    line-height: 40px;
}
.achivement-txt::before {
 
    top: 49px;

    width: 100%;
    height: 1px;
    content: '';
    left: 0;
}
.achivement-txt p {
    font-size: 12px;
 
    line-height: 22px;
}
section.achivement {
    padding-bottom: 0px;
    text-align: center;
}
.achive-img {
    position: relative;
    text-align: center;
}
img.lazy.entered.loaded {
    width: 80%;
}
.achive-img-2 img {
    width: 60% !important;
}
.achive-img .achive-img-2 {
  
    left: -40px;
}





ul.audio-tools {
    gap: 0%;
}


.ado-plr-mn:last-child ul.audio-tools {
    width: 34%;
}
.testi-wrap h6 {margin-top: 140px;color: #000;}


/*img.lazy.entered.loaded {*/
/*    width: 50% !important;*/
/*    height: 100px;*/
/*}*/



section.main_slider .col-md-7 {
    width: 100% !important;
}
section.inn-testimonial img.black-girl {
    height: 50px;
    width: 50px;
}
.contact-sec {
    position: relative;
    padding: 30px 0px;
}
ul.contact-icons li p {
    margin-bottom: 0;
    font-size: 10px;
    line-height: 19px;
}
ul.contact-icons {
    padding: 0px 0;
}
ul.contact-icons li a {
    font-size: 11px;
  
}
ul.contact-icons li p {
    margin-bottom: 0;
}
ul.contact-icons img {
    width: 40px;
    height: 30px;
    object-fit: contain;
}
.cont-input input {

    margin-bottom: 5px;
}
.contact-text h3 {
  
    margin-bottom: 10px;
}
.contact-text h6 {
    font-size: 14px;
   
    margin-bottom: 10px;
}
img.black-girl {
  
    top: 3%;
    left: 1%;
  
}
.contact-box {

    padding: 20px;
}

.ban-1 {
    height: 350px;
    position: relative;
    top: -10px;
    right: -72px;
}
    
.abtimg2 {
    top: -90px !important;
    right: 0 !important;
}
img.lazy.black-girl.entered.loaded {}

.testi-slider img.lazy.black-girl.entered.loaded {
    width: 150px !important;
    height: 120px;
    object-fit: contain;
}
section.main_slider.inn .banner_text h3 {
    font-size: 36px;
 
}
}


