/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Noto Sans", sans-serif;
    color: #393939;
    overflow-x: hidden;
    background: #070A15;
}

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: 300;
    font-family: "Noto Sans", sans-serif;
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 20px;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  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;
}

.btn.btn_pink {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    padding: 0;
    color: #fff;
    margin: 20px auto 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    text-transform: capitalize;
    border: 2px solid #E35D9C;
    background: #E35D9C;
    display: flex;
    height: 55px;
    width: 200px;
    justify-content: center;
    align-items: center;
}
.btn.btn_pink:focus,
.btn.btn_pink:hover {
  background-color:transparent;
  color: #E35D9C;
  border-color: #E35D9C;
}

img.pull-left,
.imgOverlay.pull-left {
  margin: 0 30px 20px 0;
}

img.pull-right {
  margin: 0 0 20px 30px;
}

.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: "Alumni Sans", serif;
    font-size: 112px;
    line-height: 101px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 25px;
    text-transform: uppercase;
}

h2 {
  font-family: "Alumni Sans", serif;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
    font-family: "Alumni Sans", serif;
    font-size: 104px;
    line-height:110px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 20px;
    text-transform: uppercase;
}

h4 {
    font-family: "Alumni Sans", serif;
    font-size: 60px;
    line-height: 65px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 20px;
    text-transform: uppercase;
}

h5 {
    font-family: "Alumni Sans", serif;
    font-size: 20px;
    line-height: 25px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 10px;
}

h6 {
  font-family: "Alumni Sans", serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

input[type="text"],
input[type="password"],
select,
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  border: 1px solid #ececec;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  color: #575757;
  height: 40px;
  margin-bottom: 20px;
  width: 100%;
  padding: 0px 15px;
  border-radius: 0;
}

textarea {
  padding: 10px;
  height: 167px;
}

input[type="submit"] {
  color: #fff;
  background-color: #33458d;
  height: 55px;
  padding: 0px 65px;
  font-size: 12px;
  line-height: 20px;
  border: 2px solid #33458d;
  border-radius: 0;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

input[type="submit"]:hover {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  background-color: #fff;
  color: #33458d;
  border-color: #33458d;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
}

input[type="checkbox"],
input[type="radio"] {
  margin: 0 10px 20px 0;
}

::-webkit-input-placeholder {
  color: #ffffff;
}

::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ffffff;
}

:-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}






/*banner css start */

.main_banner {
    background: url(../images/banner.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5% 0;
    margin: 8% 0 0;
}


.banner_btn {
    display: flex;
    gap: 20px;
    margin: 20px 0 0;
}

.banner_text p {
    font-weight: 500;
}


.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;
}
.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}


/*banner css end*/
.popular_sec {
    padding: 5% 0;
    position: relative;
}

.popular_sec:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 550px;
    width: 1100px;
    background: url(../images/eq_2.png) no-repeat;
    z-index: -1;
    background-size: 70%;

}

.popular_sec .main_heading{  margin:0 0 5%; }

.pop_box {
    position: relative;
    transition: all 0.5s ease-in-out;
}
.pop_box:hover { transform:scale(1.1); }



.pop_box:hover .pop_text{opacity: 1;     transition: all 0.5s ease-in-out;
} 




.pop_box img {
    width: 100%;
    margin: 0 auto;
}


.pop_text h4{  }
.pop_text p {
    text-align: center;
    font-size: 13px;
    width: 72%;
    line-height: 17px;
}.pop_text a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 124px;
    border: 1px solid #fff;
    border-radius: 80px;
    font-size: 33px;
    color: #fff;
    position: relative;
    top: -270px;
    background: #2a0d1c8f;
    animation-duration: 2s;
    animation-delay: 300ms;
    animation-iteration-count: infinite;
    animation-name: pulse;

}

.pop_text {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    width: 100%;
    height: 100%;
    opacity:0;
}


/*dj sec start */
.dj_sec {padding:5% 0; }


.dj_sec .main_heading {
    margin: 0 0 3%;
}



.dj_sec .pop_text {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    opacity: 1;
}
.dj_sec .pop_box:hover {
    transform: inherit;
}
.dj_sec .pop_text p {
    text-align: center;
    font-size: 13px;
    width: 62%;
    line-height: 23px;
}
.dj_sec .pop_box {
    position: relative;
    transition: all 0.5s ease-in-out;
    margin: 0 0 30px;
}
/*.dj_sec .banner_btn a img {
    width: 88%;
}*/





/*services sec start */

.services_sec {
    padding: 5% 0 5% 16%;
    position: relative;
}

.services_sec:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 570px;
    width: 970px;
    background: url(../images/eq_2.png) no-repeat;
    z-index: -1;
    background-size: 100%;
    transform: rotate(180deg);
}
.services_sec .bg {
    margin: 0 auto 30px;
}
.services_sec .main_heading {
    margin: 0 0 5%;
}


.services_sec .main_heading h3 {
    font-family: "Alumni Sans", serif;
    font-size: 104px;
    line-height: 80px;
    color: #ffffff;
    font-weight: 600;
    margin: 20px 0 20px;
    text-transform: uppercase;
}

.sr_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 430px;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #252525;
    position: relative;
    overflow: hidden;
}


.sr_box:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,  rgba(60,14,40,0) 21%,rgba(119,18,65,0.65) 79%,rgba(120,18,65,0.65) 100%);
    z-index: 0;
}
.sr_text {
    position: relative;
    z-index: 5;
}

.sr_box img {
    width: 15%;
    margin: 0 auto 10px;
    display: block;
    border-radius: 60px;
}
.sr_box h4 {
    font-size: 32px;
    line-height: 35px;
    color: #0C0C0B;
    font-weight: 500;
    margin: 10px 0 10px;
}


.sr_box p{color: #ffffff;font-size: 14px;line-height: 27px;margin: 0 0 20px;}




.services_sec .blogslid  .slick-dots {
    bottom: -45px;
}

.services_sec .blogslid .slick-dots li button:before {
    font-family: 'slick';
    font-size: 10px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: 'â€¢';
    text-align: center;
    opacity: 1;
    color: #074099;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services_sec .blogslid .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #074099;
    border: 1px solid #074099;
    border-radius: 50px;
}

.services_sec .blogslid .slick-dots li button:hover:before, 
.services_sec .blogslid .slick-dots li button:focus:before {
    opacity: 1;
}


.slick-active,
.slick-slide  {
    opacity: 1;
}

.star_div {
    display: inline-flex;
    gap: 5px;
    margin: 20px 0 20px;
}
.star_div a {
    color: #FFC700;
    font-size: 13px;
    display: inline-flex;
}

.sr_text p {
    margin: 0;
}

.sr_text p strong {
    font-size: 18px;
    font-weight: 500;
}

.sr_text p small {
    font-size: 14px;
    font-weight: 300;
}


/*footer_form css start */

.footer_form {padding:5% 0;  }

.footer_form .main_heading {
    margin: 0 0 6%;
}
.footer_form  .main_heading p {
    font-size: 16px;
    font-weight: 400;
    color: #777D84;
}

.fmain_form {
    background: #080C1D;
    padding: 0px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 0px 30px #00000033;
    width: 100%;
}

.inner_fform {
    padding: 50px;
}

.inner_fform h3 {
    font-size: 42px;
    line-height: 45px;
    color: #fff;
    font-weight: 400;
    margin: 0 0 20px;
}

.inner_fform input[type="text"], 
.inner_fform input[type="password"], 
.inner_fform input[type="email"], 
.inner_fform input[type="url"], 
.inner_fform input[type="number"], 
.inner_fform textarea, 
.inner_fform input[type="tel"] {
    border: 1px solid #fff;
    background-color: #ffffff00;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    height: 50px;
    margin-bottom: 20px;
    width: 100%;
    padding: 0px 35px;
    border-radius: 10px;
}
.inner_fform .form-group {
    position: relative;
}


.inner_fform .form-group img {
    position: absolute;
    top: 16px;
    left: 15px;
}


.inner_fform textarea {
    border-radius: 20px;
    height: 137px;
    padding: 10px 35px;
    color: #fff;
}
.inner_fform label {
    display: inline-block;
    font-family: "Alumni Sans", serif;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
}


 .inner_fform textarea::-webkit-input-placeholder {
  color: #fff;
}
 .inner_fform input::-webkit-input-placeholder {
  color: #fff;
}

 .inner_fform input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

 .inner_fform input:-ms-input-placeholder {
  color: #fff;
}

 .inner_fform input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}


 .inner_fform h5 {
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 0px;
    text-align: center;
}


 .inner_fform input[type="submit"] {
    color: #fff;
    background-color: #E35D9C;
    height: 52px;
    padding: 0px 5px;
    font-size: 18px;
    line-height: 20px;
    border: 2px solid #E35D9C;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 auto;
    color: #fff;
        font-family: "Alumni Sans", serif;

}

 .inner_fform input[type="submit"]:hover {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    background-color:transparent;
    color: #E35D9C;
    border-color: #E35D9C;
}

.form_img img {
    width: 100%;
}
.form_sec .row {
    --bs-gutter-x: 6.5rem;
}






/*full_text sec csss atrt */

.full_sec {
    /* background: url(../images/full.png) no-repeat; */
    /* background-size: contain; */
    /* background-position: center; */
    padding: 10% 0;
    position: relative;
}

.full_text{ position: relative; }
.full_text:after {
    position: absolute;
    content: '';
    top: -60px;
    right: 180px;
    height: 178px;
    width: 178px;
    background: url(../images/dots.png) no-repeat;
    z-index: 0;
    background-size: 100%;
}
.full_text:before {
    position: absolute;
    content: '';
    bottom: -30px;
    left: 150px;
    height: 178px;
    width: 178px;
    background: url(../images/dots.png) no-repeat;
    z-index: 0;
    background-size: 100%;
}

.full_text h3 {
    font-family: "Alumni Sans", serif;
    font-size: 80px;
    line-height: 85px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.full_text p {
    font-weight: 300;
    font-family: "Noto Sans", sans-serif;
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    margin: 0 0 10px;
}


.equalizer {
    font-size: 0;
    text-align: center;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}
.equalizer-bar {
    transition: transform 300ms linear;
    display: inline-flex;
    background: rgb(18 14 28);
    width: 43px;
    height: 656px;
    border-radius: 90px;
    margin: 0 10px;
    transform: scaleY(0.1);
    transform-origin: center center;
    justify-content: center;
    align-items: center;
}


/*footer sec css tart*/

.footer_sec {
    padding: 6% 0 0;
    background: url(../images/f_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}
.foot_logo img {
    margin: 0 0 10%;
}

.foot_logo p {
    font-weight: 300;
    font-family: "Noto Sans", sans-serif;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 10px;
}
.footer_sec .social_icon ul {
    justify-content: flex-start;
}

.foot_links h5 {
    font-family: "Alumni Sans", serif;
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    font-weight: 600;
    margin: 34% 0 31px 29px;
}

.footerForm h5{
    margin: 21% 0 25px;
 }


.foot_links ul {
    padding: 0 0 0 20%;
}
.foot_links ul li{  }

.foot_links ul li a {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    position: relative;
    font-family: "Alumni Sans", serif;
    color: #fff;
    margin: 0 0 10px;
    display: block;
    transition: all 0.5s ease-in-out;
}

.foot_links ul li a:hover {
    color: #E35D9C;
    text-decoration: underline;

} 
.foot_links ul li a img {
    width: 20px;
    position: absolute;
    left: -28px;
}

.foot_links ul li a:hover img{      transition: all 0.5s ease-in-out;
  transform:scale(1.1);
} 



.footerForm .form-group{position: relative;  }



.footerForm input[type="email"]{
    border: 1px solid #ececec;
    background-color: #ffffff00;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    height: 60px;
    margin-bottom: 20px;
    width: 100%;
    padding: 0px 15px;
    border-radius: 10px;
}
.footerForm button {
    width: 155px;
    height: 60px;
    border: 0;
    border-radius: 0px 10px 10px 0px;
    position: absolute;
    right: 0;
    top: 0;
    color: #fff;
    background: #ee5da2;
}

.copy_right {
    background: #090E22;
    height: 76px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3% 0 0;
}



.copy_right p{ margin:0 0 0;  }




/*find your song css start */


.find_your_sec {
    padding: 20% 0 10%;
    position: relative;
}
.find_your_sec:after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 570px;
    width: 970px;
    background: url(../images/eq_2.png) no-repeat;
    z-index: 2;
    background-size: 100%;
    transform: rotate(180deg);
}


.circle_main {
    display: flex;
    height: 283px;
    width: 283px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgb(254 136 87) 50%, rgb(255 255 255 / 10%) 50%);
    background: linear-gradient(to bottom, rgb(254 136 87) 50%, rgb(62 64 72) 50%);
    border-radius: 160px;
    position: relative;
}

.circle_main.up{
    background: linear-gradient(to bottom, rgb(62 64 72) 50%, rgb(225 83 143) 50%);
}

.circle_main:after {
    position: absolute;
    content: '';
    bottom: -30px;
    left: -13px;
    height: 173px;
    width: 336px;
    z-index: 0;
    background: url(../images/down.png) no-repeat;
    background-size: 96%;
}
.circle_main a {background: url(../images/gr_1.png) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    height: 242px;
    width: 242px;
    align-items: center;
    justify-content: center;
  }

  .circle_main.up a {background: url(../images/gr_2.png) no-repeat;}

  .circle_main.up:after {
        background: url(../images/up.png) no-repeat;
        position: absolute;
        content: '';
        top: -20px;
        left: -13px;
        height: 173px;
        width: 336px;
        z-index: 0;
        background-size: 96%;
        background-position: 0;
}




.circle_main.three {
    background: linear-gradient(to bottom, rgb(57 16 108) 50%, rgb(62 64 72) 50%);
}

.circle_main.three a {background: url(../images/gr_3.png) no-repeat;}



.circle_main.four{

background: linear-gradient(to bottom, rgb(62 64 72)  50%, rgba(126,44,63,0.65) 50%); 
}


.circle_main.four a {background: url(../images/gr_4.png) no-repeat;}






.sound_main{ position: relative; }
.sound_text{  }
.sound_text h2 {
    font-size: 240px;
    line-height: 135px;
    font-weight: 600;
    margin: 0 0 15px;
    color: transparent;
    -webkit-text-stroke: 1px #fdfdfd;
}

.sound_inner h3 {
    font-family: "Alumni Sans", serif;
    font-size: 47px;
    line-height: 50px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 0px;
    text-transform: uppercase;
}
.sound_inner p {
    font-weight: 300;
    font-family: "Noto Sans", sans-serif;
    color: #fff;
    font-size: 15px;
    line-height: 26px;
    margin: 0 0 20px;
    width: 90%;
}

.sound_main {position: relative;}
.sound_text {
    display: flex;
    gap: 20px;
    position: absolute;
    top: -215px;
    left: -30px;
    width: 140%;
}
.circle_main:before {
    position: absolute;
    content: '';
    top: -95px;
    left: 8px;
    width: 2px;
    height: 220px;
    background: #fff;
    z-index: -2;
}

.circle_main.up:before {
    position: absolute;
    content: '';
    top: inherit;
    left: 8px;
    width: 2px;
    height: 180px;
    background: #fff;
    z-index: -2;
    bottom: -40px;
}
.sound_text.two {
    top: inherit;
    bottom: -185px;
    left: -39px;
}
.sound_text.two img{
  /* width: 200px; */
  }


.sound_text.two {
    top: inherit;
    bottom: -160px;
    left: -29px;
}

.sound_text.two.four {
    top: inherit;
    bottom: -183px;
    left: -51px;
}
.circle_main.up.f {
    background: linear-gradient(to bottom, rgb(62 64 72) 50%, rgb(126 44 63) 50%);
}
.circle_main.up.f a {
    background: url(../images/gr_4.png) no-repeat;
}
.loader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #181e10 url(../images/load.jpg) no-repeat center center;
    background-size: cover;
}

.form_sec {
    padding: 5% 0;
}



/*about us sec start */

.inner_banner {
    background: url(../images/ab_bg1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 9% 0;
    margin: 10% 0 0;
    position: relative;
}

.inner_banner .container{ position: relative; z-index:5; }

.inner_banner:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a3;
}


.inner_banner h1 {
    font-family: "Alumni Sans", serif;
    font-size: 70px;
    line-height: 75px;
    color: #fff;
    font-weight: 700;
    margin: 0 0px;
    text-transform: uppercase;
}


.about_sec{ padding:5% 0;  }



.counter_sec{ 
    background: url(../images/ab_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5% 0;
    position: relative;

 }

.counter_sec .container{ position: relative; z-index:5; }
.counter_sec:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000e8;
}
#counter{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0px;
  width: 100%;
}
#counter .item{
  width: 280px;
  padding: 0;
  margin: 10px;
  text-align: center;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 38px -8px rgba(0,0,0,0.34);
  -moz-box-shadow: 0px 0px 38px -8px rgba(0,0,0,0.34);
  box-shadow: 0px 0px 38px -8px rgba(0,0,0,0.34);
} 
#counter .item h5 {
    font-family: "Alumni Sans", serif;
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 10px;
}
#counter .item .count {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 100px;
    position: relative;
    display: table;
    margin: 0 auto;
}

#counter .item h3{
  color: #4f4e28;
  text-transform: capitalize;
}

.rotation{
  animation: animName 7s linear infinite;
}

@keyframes animName {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}



