/* Main css */
html {
  scroll-padding-top: 60px;
  scroll-behavior: smooth;
}
.main-body {
  font-family: "Inter", sans-serif !important;
  font-optical-sizing: auto;
}
.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6 {
  font-weight: 600;
  text-transform: capitalize;
}
.heading-1 {
  font-size: 60px;
}
.subheader {
  font-size: 18px;
  font-weight: 500;
}
.heading-2 {
  font-size: 65px;
  font-weight: 600;
}
.heading-3 {
  font-size: 45px;
}
.heading-4 {
  font-size: 32px;
  font-weight: 500;
}
.main-body ol,
.main-body ul {
  padding-left: 0.8rem;
  list-style: none;
}
.section li {
  position: relative;
  margin-bottom: 15px;
}
.text_initial {
  text-transform: initial;
}
.main-body .section li:marker {
  display: none;
}
.main-body .section li:before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: -28px;
  /* background-image: linear-gradient(45deg, #beda78, #e27d39 50%, #95440e 100%); */
  background-image: url(../images/checkmark.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.main-body:after,
.main-body:before {
  background: radial-gradient(circle, rgb(156 198 89) 0%, rgb(45 87 160) 100%);
  border-radius: 50%;
  filter: blur(147.15673828125px);
  flex: none;
  height: 998px;
  left: 0;
  opacity: 0.9;
  position: fixed;
  right: 0;
  z-index: -1;
  top: 170px;
  content: "";
  transition: 0.3s linear;
}
.main-body:before {
  opacity: 0;
  background: radial-gradient(
    circle,
    rgb(243 131 54) 0%,
    rgb(180 212 112) 100%
  );
}
.main-body.toggle-active {
  overflow: hidden;
}
.section-in-view.main-body:before {
  opacity: 0.9;
}
.section-in-view.main-body:after {
  opacity: 0;
}
p {
  font-size: 20px;
}
.main-body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #303030;
  border-radius: 10px;
}

.main-body::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

.main-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #fff;
  background-image: -webkit-gradient(
    linear,
    40% 0%,
    75% 84%,
    from(#305591),
    to(#71944f),
    color-stop(0.6, #b8d479)
  );
}
.main-body .main-header .btn {
  text-decoration: none;
  border: none;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(31, 69, 129, 0) 0%,
    rgba(90, 116, 65, 0) 100%
  );
  transition: 0.3s;
}
.main-body .main-header .btn:hover {
  background: linear-gradient(180deg, rgb(31 68 129) 0%, rgb(90 116 65) 100%);
  color: #fff;
}
.main-body .btn,
.btn-style-1 input {
  padding: 18px 36px;
  background-color: #a3cc61;
  border: 0;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  border-radius: 13px;
  backdrop-filter: blur(0px);
  transition: 0.3s;
}
.main-body .btn:hover,
.btn-style-1 input:hover,
.main-body .btn.var {
  backdrop-filter: blur(75px);
  background: #dedede42;
}
.main-body .btn:active {
  background: #dedede42 !important;
}

.main-body .btn.var:hover {
  background-color: #a3cc61;
}
.main-body .b-rounded {
  border-radius: 20px;
}
.main-body .container {
  max-width: 1200px;
}
.section.banner {
  padding-top: 160px;
}
.section {
  padding: 60px 20px;
  overflow: hidden;
}
.main-body .text-highlight,
.number-list .number span {
  color: #62ddab;
  background-image: linear-gradient(45deg, #de7935, #beda78 50%, #2d57a0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-body .subheader {
  padding: 5px 10px;
  position: relative;
  width: fit-content;
  color: #f7ffed;
  background: #769a4980;
}
.main-body .text-grey {
  color: #d8d8d8;
}
.main-body a {
  color: inherit;
  text-decoration: none;
}
/* .main-body .subheader:before {
  content: "";
  border: 2px solid #6f934d;
  width: 37%;
  height: 135%;
  position: absolute;
  transition: 0.3s;
  left: -9px;
  top: -6px;
  z-index: -1;
} */
.main-body .subheader:after {
  content: "";
  background-image: url(../images/school-of-music-bird.png);
  background-size: 37px;
  background-repeat: no-repeat;
  position: absolute;
  left: -10px;
  top: 1px;
  width: 100%;
  height: 100%;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(20px);
  background-color: #6f6f6f3d;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
}

#wave {
  height: 64px;
  width: 64px;
  fill: #ee8035;
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(1);
    transform-origin: 50% 50%;
  }
  50% {
    transform: scaleY(0.7);
    transform-origin: 50% 50%;
  }
}

/* Manually animate each wave line */
#Line_1 {
  animation: pulse 0.7s infinite;
  animation-delay: 0s;
}
#Line_2 {
  animation: pulse 0.7s infinite;
  animation-delay: 0.15s;
}
#Line_3 {
  animation: pulse 0.7s infinite;
  animation-delay: 0.3s;
}
#Line_4 {
  animation: pulse 0.7s infinite;
  animation-delay: 0.45s;
}
#Line_5 {
  animation: pulse 0.7s infinite;
  animation-delay: 0.6s;
}
#Line_6 {
  animation: pulse 0.7s infinite;
  animation-delay: 0.75s;
}
#Line_7 {
  animation: pulse 0.7s infinite;
  animation-delay: 0.9s;
}
#Line_8 {
  animation: pulse 0.7s infinite;
  animation-delay: 1.05s;
}
#Line_9 {
  animation: pulse 0.7s infinite;
  animation-delay: 1.2s;
}
/* Main css end */

/* Header  */
.main-header {
  width: 100%;
  margin: auto;
  position: fixed;
  z-index: 9999;
}
.main-header .navbar {
  max-width: 1200px;
  margin: 10px auto;
}
.main-header .navbar-brand img {
  width: 100%;
  max-width: 160px;
}
.custom-navbar {
  border-radius: 3rem;
  padding: 0.5rem 2rem;
  backdrop-filter: blur(20px);
  background-color: #6f6f6f3d;
}
.nav-link,
.navbar-brand {
  color: white !important;
  font-weight: 500;
}
.nav-link:hover,
.btn-join:hover {
  text-decoration: underline;
}
.btn-join {
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.main-header .navbar-nav li.nav-item {
  position: relative;
  margin-bottom: 0px;
}
.main-header .navbar-nav .nav-link {
  padding: 0.2rem;
  margin: 0.3rem;
  z-index: 2;
  position: relative;
  text-decoration: none;
}
.main-header .navbar-nav li.nav-item:before {
  content: "";
  /* border: 2px solid #6f934d; */
  background: url(../images/school-of-music-logo.webp);
  width: 0%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: 0.3s;
  background-size: contain;
  background-repeat: no-repeat;
}

.main-header .navbar-nav li.nav-item:hover:before {
  width: 63%;
  opacity: 1;
}
.navbar .navbar-brand:nth-child(1):after {
  content: "";
  background-color: #8faa7f;
  width: 0.3px;
  height: 90%;
  position: absolute;
  border-radius: 20px;
  right: -9px;
  top: 4px;
}
.navbar .navbar-brand {
  position: relative;
}
/* Header end */

/* Campus  */
.section .infinte-slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  object-fit: cover;
}
.section .infinte-slider .swiper-wrapper .swiper-slide .title {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  font-size: 20px;
  padding: 20px;
}
.section#section .infinte-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.section .cards .icon {
  max-width: 26px;
  margin-top: 4px;
  height: 30px;
  object-fit: contain;
}
.section .counter {
  row-gap: 50px;
}
.section .counter .text {
  font-size: 18px;
}
.section .counter .text_less {
  font-size: 15px;
  font-style: italic;
}
.section .counter .number {
  font-size: 60px;
  line-height: 1.3;
  padding-bottom: 15px;
  margin-bottom: 0;
}
.campus_facilities_slider .swiper-slide::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #00000047;
  top: 0;
  left: 0;
  border-radius: 16px;
}
#myPopup.hide {
  visibility: hidden;
  opacity: 0;
}

#myPopup .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 51px;
  height: 51px;
  font-size: 0;
  cursor: pointer;
}

#myPopup .close:before,
#myPopup .close:after {
  content: "";
  position: absolute;
  background: #767676;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 1px;
  left: 14px;
  right: 14px;
  top: 30px;
  height: 3px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 100ms ease-in;
  -moz-transition: all 100ms ease-in;
  -webkit-transition: all 100ms ease-in;
  -o-transition: all 100ms ease-in;
}

#myPopup .close:after {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#myPopup.popup {
  position: fixed;
  top: 0;
  left: 0;
  background: #0000009e;
  width: 100%;
  height: 100%;
  -moz-transition: all 120ms;
  -webkit-transition: all 120ms;
  -o-transition: all 120ms;
  transition: all 120ms;
  z-index: 99999;
  padding: 25px;
}
#myPopup.popup form {
  width: 50%;
  margin: auto;
  backdrop-filter: blur(20px);
  background-color: #6f6f6f3d;
  padding: 20px;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  #myPopup .popup {
    width: 80%;
  }
}

#myPopup .popup-header {
  text-transform: uppercase;
  font-size: 18px;
}

#myPopup .popup-body {
  padding: 25px 0;
}

/* .campus_facilities_slider .swiper-slide img{
  transition: 0.3s linear;
}
.campus_facilities_slider .swiper-slide:hover img{
  transform: scale(1.05);
} */
/* Campus end */

/* About  */
.logo_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: start;
}
.logo_wrap img {
  max-width: 300px;
  object-fit: contain;
  border-radius: 10px;
}
/* About END */

/* why choose use */
.section .number-list .box {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  border-bottom: 1px solid #e8eaea57;
  margin: 20px;
  min-height: 135px;
}
.section .number-list .box .content {
  color: white;
}
.section .number-list .box .content p {
  color: #c9c9c9;
}
.section .number-list .box .number span {
  font-size: 30px;
  font-weight: 700;
}
.section .number-list {
  max-width: 990px;
  margin: auto;
}
.section.why-choose-us .banner {
  height: 600px;
  object-fit: cover;
}
/* why choose us end */

/* Program Highlights */
.highlights .box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 30px;
  backdrop-filter: blur(20px);
  background-color: #ffffff29;
  border-radius: 18px;
  column-gap: 40px;
  color: white;
  margin-bottom: 35px;
}
.highlights .box img {
  width: 100%;
  border-radius: 18px;
  height: 100%;
  object-fit: cover;
}
.why-choose-us .box img {
  max-height: 350px;
}
.highlights .box .text-highlight {
  font-size: 68px;
  font-weight: 700;
  background-image: linear-gradient(45deg, #beda78, #ffb887 50%, #ffffff 100%);
}
.programs_section .img_wrap {
  border-radius: 18px;
  overflow: hidden;
}
.programs_section .img_wrap img {
  transition: 0.3s linear;
}
.programs_section .box:hover .img_wrap img {
  transform: scale(1.01);
}
/* Program Highlights end */

/* main-show */
.main-show .box {
  backdrop-filter: blur(20px);
  background-color: #6f6f6f1a;
  border-radius: 18px;
  padding: 30px;
  width: 109%;
}
.main-show .brochure {
  border-radius: 18px;
}
.fee-structure table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 350px;
  backdrop-filter: blur(20px);
  background-color: #00000030;
  border-radius: 9px;
  width: 100%;
}

.fee-structure table tr:first-child {
  background-image: linear-gradient(
    45deg,
    #95540012,
    #f3990454 50%,
    #00000100 100%
  );
}

.fee-structure table tr th,
.fee-structure table tr td {
  border-right: 1px solid #bbbbbb42;
  border-bottom: 1px solid #bbbbbb42;
  padding: 3px 12px;
  color: #fff;
}
.fee-structure table tr td {
  padding: 12px;
  font-size: 15px;
}
.fee-structure table td b {
  color: #ffe6bf;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fee-structure table tr th:first-child,
.fee-structure table tr td:first-child {
  border-left: 1px solid #bbbbbb42;
}
.fee-structure table tr th {
  border-top: 1px solid #bbbbbb42;
  text-align: left;
  backdrop-filter: blur(20px);
  background-color: #ffc36b2e;
}

.fee-structure table tr:first-child th:first-child {
  border-top-left-radius: 9px;
}

.fee-structure table tr:first-child th:last-child {
  border-top-right-radius: 9px;
}

.fee-structure table tr:last-child td:first-child {
  border-bottom-left-radius: 9px;
}

.fee-structure table tr:last-child td:last-child {
  border-bottom-right-radius: 9px;
}
/* main-show end */

/* Recognition */
.recognition .heading-2 {
  position: relative;
}
.recognition .heading-2::before {
  content: "";
  background-image: url("../images/award-feather.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 120px;
  position: absolute;
  left: -50px;
  top: -20px;
}
.recognition .heading-2::after {
  content: "";
  background-image: url("../images/award-feather.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 120px;
  position: absolute;
  right: -50px;
  top: -20px;
  transform: scaleX(-1);
}
.recognition .main {
  max-width: 990px;
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 40px;
  border-width: 1px;
  border-color: #ffffff59;
  border-style: inset;
}
.recognition .heading-2 {
  background-image: linear-gradient(45deg, #de7935, #beda78 50%, #ebc956 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.recognition .box {
  background-color: #8080801c;
  border-radius: 30px;
  padding: 15px 10px;
}
.recognition .box p {
  font-style: italic;
  font-weight: 200;
  color: #ffffff;
}
/* Recognition end */

/* Testimonial START  */
/* #testimonial_section{
  display: none;
} */
.testimonial_slider {
  padding-inline: 45px !important;
}
#testimonial_section .swiper {
  /* mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%); */
}
/* #testimonial_section .swiper::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
} */

#testimonial_section .swiper_btns {
  background-color: #fff3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.swiper-button-disabled.swiper_btns {
  display: none;
}
#testimonial_section .swiper-button-prev {
  left: 0;
}
#testimonial_section .swiper-button-next {
  right: 0;
}
#testimonial_section .swiper_btns:after {
  font-size: 20px;
  color: #a3cc61;
}
#testimonial_section .card {
  border-radius: 16px;
  height: 350px;
  display: grid;
  align-content: end;
  border: none;
  background-color: transparent;
  overflow: hidden;
}
#testimonial_section .card .title {
  position: relative;
  padding: 0;
  font-size: 18px;
}
#testimonial_section .card .img {
  position: absolute;
  height: 100%;
  border-radius: inherit;
  transition: 0.3s linear;
}
#testimonial_section .card:hover .img {
  transform: scale(1.02);
}
#testimonial_section .card .desc {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(20px);
  background-color: #6f6f6f3d;
  border-radius: inherit;
  padding: 10px;
}
#testimonial_section .card .desc .text {
  font-size: 15px;
  color: #fff;

  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
#testimonial_section .card.active .desc .text {
  -webkit-line-clamp: none;
}
#testimonial_section .card .read_more {
  padding: 7px 10px;
  font-size: 11px;
  border-radius: 7px;
}
/* Testimonial END */

/* Form  */
.section .box-form {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 18px;
  /* background: radial-gradient(circle, rgb(209 115 50) 0%, rgb(114 147 72) 100%); */
  background: #beda780a;
  backdrop-filter: blur(75px);
}
.box-form form {
  position: relative;
  z-index: 5;
}
.box-form .blob {
  position: absolute;
  background: linear-gradient(180deg, rgb(225 121 51) 31.77%, #d07334 100%);
  transition: 1s cubic-bezier(0.07, 0.8, 0.16, 1);
  width: 340px;
  height: 230px;
  animation: move 25s infinite alternate;

  -webkit-filter: blur(30px);
  filter: blur(43px);
  box-shadow: inset 0 0 0 5px rgb(55 54 54 / 60%),
    inset 100px 100px 0 0px #d37535, inset 200px 200px 0 0px #729047,
    inset 300px 300px 0 0px #2d57a0;
}
@keyframes move {
  0% {
    transform: translate(-100px, -50px) rotate(-90deg);
    border-radius: 24% 76% 35% 65% / 27% 36% 64% 73%;
  }
  100% {
    transform: translate(500px, 100px) rotate(-10deg);
    border-radius: 76% 24% 33% 67% / 68% 55% 45% 32%;
  }
}
.box-form .user-box,
#myPopup .user-box {
  display: grid;
  row-gap: 3px;
  grid-template-columns: 1fr;
}
.box-form .user-box input,
#myPopup .user-box input,
.box-form .user-box select,
#myPopup .user-box select,
.box-form .user-box textarea,
#myPopup .user-box textarea {
  padding: 9px;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  height: auto;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  margin-bottom: 15px;
  color: #fff;
  outline: 0px;
  border: 1px solid #bcd97700;
}
.box-form .user-box input::placeholder,
.box-form .user-box select::placeholder,
.box-form .user-box textarea::placeholder,
#myPopup .user-box input::placeholder,
#myPopup .user-box select::placeholder,
#myPopup .user-box textarea::placeholder {
  color: #ffffffab;
  font-family: "Inter", sans-serif;
}
.box-form .user-box input:focus-visible,
.box-form .user-box select:focus-visible,
.box-form .user-box textarea:focus-visible,
#myPopup .user-box input:focus-visible,
#myPopup .user-box select:focus-visible,
#myPopup .user-box textarea:focus-visible {
  box-shadow: 1px 3px 8px #4b5d341b;
  border: 1px solid #bcd977;
}
.box-form .user-box textarea,
#myPopup .user-box textarea {
  height: 120px;
}
.box-form .user-box label,
#myPopup .user-box label {
  font-family: "Inter", sans-serif;
  color: #fff;
}
.box-form .user-box .program:focus-visible,
#myPopup .user-box .program:focus-visible {
  color: #2a2a2a;
}
.ifream_wrap {
  display: flex;
  justify-content: end;
}
.ifream_wrap iframe {
  border-radius: 15px;
}
.form_contnet_right .heading-3 {
  font-size: 40px;
}
/* Form end */

/* Faq */
.section.faq .accordion .accordion-item {
  border: 0;
  background: transparent;
  backdrop-filter: blur(47px);
  background-color: #ffffff17;
  margin-bottom: 20px;
  border-radius: 11px;
  overflow: hidden;
}
.section.faq .accordion .accordion-item .accordion-button {
  backdrop-filter: blur(47px);
  background-color: #ffffff00;
  color: #f1f1f1;
}
.section.faq .accordion .accordion-item .accordion-button:not(.collapsed) {
  background: linear-gradient(
    90deg,
    rgb(207 114 49) 0%,
    rgba(118, 154, 73, 1) 100%
  );
  box-shadow: unset;
  color: white;
}
.section.faq .accordion .accordion-item .accordion-body {
  color: white;
}
/* Faq end */

/* placement */
.placement .imagebg {
  background-image: url("../images/interns-soundideaz.webp");
  background-size: cover;
  background-position: top;
  border-radius: 18px;
  background-color: #0000008f;
  background-blend-mode: overlay;
}
.section .placement_slider .swiper-wrapper .swiper-slide {
  background-color: #fff;
  border-radius: 18px;
  padding: 10px;
}
.section .placement_slider .swiper-wrapper .swiper-slide img {
  height: 100px;
  border-radius: 0px;
  object-fit: contain;
  object-position: center;
}
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.icon-list .list {
  width: max-content;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.icon-list .list .icon {
  height: 20px;
  width: 20px;
  margin: auto;
}
.icon-list .list p {
  margin: 0;
}
/* placement end */

/* footer */
.main-footer .bar {
  backdrop-filter: blur(49px);
  background-color: #ebebeb4f;
}
.main-footer .bar .navbar-brand img {
  max-width: 300px;
}
.contact-info .icon {
  max-width: 18px;
  margin-top: 4px;
  height: 19px;
}
.back-to-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 90px;
  background: linear-gradient(45deg, #769a49, #ea7e35 50%, #749749 100%);
  z-index: 99999;
  transition: 0.3;
  right: -40px;
}
.back-to-top .element i {
  color: white;
}
#footer .logo_wrap {
  display: block;
  max-width: 200px;

  background: #fff;
  padding: 10px;
  border-radius: 10px;
}
#footer .logo_wrap img {
  width: 100%;
}
/* footer end */

.form .user-box select {
  -webkit-appearance: none;
  -moz-appearance: none;
  /* background: transparent; */
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 97%;
  background-position-y: 12px;
}
.faq {
  overflow: visible;
}
.sticky_item {
  position: sticky;
  top: 150px;
}
