@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,500;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=The+Nautigal:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
.font_one {
  font-family: "Raleway", sans-serif;
}

.font_two {
  font-family: "Josefin Sans", sans-serif;
}

.font_three {
  font-family: "Dosis", sans-serif;
}

.font_four {
  font-family: "Montserrat", sans-serif;
}

.font_five {
  font-family: "The Nautigal", cursive;
}

.slider-bg {
  background-image: url("../../dist/images/Home_page.jpg");
  padding: 80px 0 50px 0;
  width: 100%;
  background-position: center center;
  background-size: cover;
  height: 650px;
}

.nav-item {
  padding: 0 8px;
}

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  transition: 0.3s;
  position: relative;
}
.nav-link:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 3px;
  bottom: -3px;
  left: 0;
  background: darkgreen;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.navbar-brand img {
  max-height: 55px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  border-bottom: 4px solid darkgreen;
}

.footer {
  background-color: #dadada;
  padding-top: 45px;
}

.footer-menu-list h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
}
.footer-menu-list ul li {
  list-style: none;
}
.footer-menu-list ul li a {
  text-decoration: none;
  color: #001C30;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}

.footer-text-container h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
}
.footer-text-container p {
  color: #001C30;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}
.footer-text-container p span {
  font-weight: 600;
}

.app-link {
  max-height: 70px;
  margin-bottom: 15px;
  margin-left: -5px;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: darkgreen #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 7px;
   border-radius: 10px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: darkgreen;
  border-radius: 10px;
  border: 2px solid #ffffff;
}

body {
  margin: 0rem;
  padding: 0rem;
  --webkit-font-smoothing: antialiased;
}

h1 h2 h3 h4 h5 h6 p {
  margin: 0rem;
  padding: 0rem;
}

html {
  scroll-behavior: smooth;
}

.top-slider-content h3 {
  font-family: "Raleway", sans-serif;
  font-size: 46px;
  border-left: 5px solid red;
  padding-left: 15px;
}
.top-slider-content p {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}
.top-slider-content a {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.title-top-text {
  margin: 35px 0;
}

.title-top-text h3 {
  font-size: 76px;
  text-align: center;
  font-family: "The Nautigal", cursive;
  color: orangered;
}

.title-top-text p {
  text-align: center;
  font-size: 26px;
  font-family: "Montserrat", sans-serif;
}

.title-top-text hr {
  width: 5%;
  margin: 1rem 0;
  color: inherit;
  background-color: orangered;
  border: 0;
  opacity: 1;
  margin: 0 auto;
}

.blog-main-container {
  background-color: rgba(229, 229, 229, 0.3215686275);
  border: 0.001rem solid rgba(128, 128, 128, 0.2196078431);
  border-radius: 5px;
  margin: 25px 0;
}
.blog-main-container .blog-img-container {
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.blog-main-container .blog-text-container {
  padding: 10px 15px;
}
.blog-main-container .blog-text-container h4 {
  font-family: "Montserrat", sans-serif;
}
.blog-main-container .blog-text-container p {
  font-family: "Poppins", sans-serif;
  text-align: justify;
  font-size: 14px;
  color: gray;
}

.slider-new-img-container {
  margin: 25px 0;
  width: 100%;
}
.slider-new-img-container img {
  max-height: 180px;
  border-radius: 50%;
  display: block;
  margin: auto;
}

.slider-new-text-container {
  width: 100%;
}
.slider-new-text-container p {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.blog-btn {
  border-radius: 0px;
  background-color: orangered;
  border-color: orangered;
}

.sec-mr-1 {
  margin: 65px 0;
}

.str-widget {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.str-widget .icons {
  font-size: 50px;
  margin: 20px 0;
  border: 1px solid #001C30;
  border-radius: 50%;
  padding: 25px;
}
.str-widget h3 {
  text-transform: uppercase;
  margin: 14px 0;
}
.str-widget p {
  font-size: 1.4rem;
}

.main-about {
  padding: 20px;
}
.main-about h3 {
  font-size: 20px;
  margin: 15px 0;
  border-left: 2px solid #001C30;
  padding-left: 15px;
}
.main-about p {
  font-size: 16px;
  text-align: justify;
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

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

.mega-img img {
  max-height: 512px;
  display: block;
  margin: 0px auto;
}

.section-heading {
  font-family: "Raleway", sans-serif;
  text-align: center;
  Position: relative;
  margin-bottom: 6rem;
}

.section-heading:after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background-image: url(../../dist/images/hr.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -40px;
}

.product-container h3 {
  margin: 15px 0;
  text-align: center;
  font-family: "Raleway", sans-serif;
}
.product-container p {
  text-align: center;
  font-family: "Raleway", sans-serif;
}

section.our-services {
  padding: 50px 0;
  background: #164B60;
  position: relative;
  z-index: 0;
}

section.our-services .card-wrapper {
  margin-right: -2rem;
  margin-top: 8rem;
}

section.our-services .service-card {
  background: #fff;
  text-align: center;
  padding: 2rem;
  padding-top: 4rem;
  margin-right: 2rem;
  position: relative;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

section.our-services .service-card .icon {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

section.our-services .service-card h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

section.our-services .service-card p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-img-container img {
  max-height: 450px;
}

.about-text-container p {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
}
.about-text-container a {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  border-radius: 0px;
  background-color: orangered;
  border-color: orangered;
}

.artical-img-container {
  margin-top: 50px;
}
.artical-img-container img {
  padding: 5px 5px 0 5px;
}

.text-right {
  text-align: right !important;
}

.artical-text-container {
  padding: 10px;
  margin: 0 5px 5px 5px;
  border: 1px solid rgba(128, 128, 128, 0.2509803922);
}
.artical-text-container h3 {
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  margin: 15px 0;
  text-align: justify;
  min-height: 55px;
}
.artical-text-container p {
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  margin: 15px 0;
  text-align: justify;
}

.blog-btn {
  border-radius: 0px;
  background-color: orangered;
  border-color: orangered;
}

/* CUSTOMIZE THE CAROUSEL
  -------------------------------------------------- */
/* Carousel base class */
.carousel {
  margin-bottom: 0rem;
}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 5rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}

.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 32rem;
}

.teacher-container {
  padding: 15px;
}
.teacher-container h2 {
  text-align: center;
  font-family: "Raleway", sans-serif;
  margin: 10px 0;
}

.teacher-image img {
  max-height: 300px;
}

.teacher-name {
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 26px;
  margin: 10px 0;
}

.teacher-btn {
  border-radius: 0px;
  border-color: darkgreen;
  font-family: "Raleway", sans-serif;
}

.slider {
  position: relative;
}

.slider-btn {
  position: absolute;
  background-color: transparent;
  color: rgba(193, 193, 193, 0.6901960784);
  font-size: 35px;
  z-index: 99;
}
.slider-btn:hover {
  color: orangered;
}

.prev-btn {
  top: 35%;
  left: 0;
}

.next-btn {
  top: 35%;
  right: 0;
}

/* RESPONSIVE CSS
  -------------------------------------------------- */
@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .featurette-heading {
    font-size: 50px;
  }
}
@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}
.cate-icon-container {
  border: 3px solid #fff;
  font-size: 35px;
  color: #fff;
  padding: 35% 40%;
}

.cate-img-container {
  position: relative;
}
.cate-img-container h3 {
  position: absolute;
  color: #fff;
  text-align: center;
  z-index: 99;
  top: 45%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: "Raleway", sans-serif;
  font-size: 26px;
}
.cate-img-container img {
  border: 3px solid #fff;
  filter: grayscale(100%);
  transition: 1s;
}
.cate-img-container img:hover {
  transition: 1s;
  filter: grayscale(0%);
}

.course-container {
  box-shadow: 0px 0px 9px -1px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 9px -1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 9px -1px rgba(0, 0, 0, 0.5);
}
.course-container .course-img-container {
  box-shadow: #fff;
}
.course-container .course-text-container {
  overflow: hidden;
}
.course-container .course-text-container h3 {
  font-family: "Dosis", sans-serif;
  font-size: 20px;
  min-height: 45px;
}
.course-container .course-text-container p {
  font-family: "Dosis", sans-serif;
  min-height: 45px;
  color: gray;
  text-align: justify;
  overflow: hidden;
}
.course-container .course-trainer {
  display: inline-flex;
}
.course-container .course-trainer img {
  max-height: 60px;
  border-radius: 50%;
}
.course-container .course-trainer h4 {
  font-family: "Dosis", sans-serif;
  color: gray;
  font-size: 18px;
  margin-top: 20px;
  margin-left: 15px;
}
.course-container .btn {
  border-radius: 0px !important;
  background-color: orangered;
  border-color: orangered;
}

.height-100 {
  height: 100vh;
}

.card {
  border: none;
}

.ratings {
  margin-right: 10px;
}

.ratings i {
  color: #cecece;
  font-size: 32px;
}

.rating-color {
  color: #fbc634 !important;
}

.review-count {
  font-weight: 400;
  margin-bottom: 2px;
  font-size: 18px !important;
}

.small-ratings i {
  color: #cecece;
}

.review-stat {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 2px;
}

.cate-bg-one {
  /* margin: 80px 0; */
  background-image: url("../../dist/images/piano.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 200px 0;
}

.category-img-container {
  position: relative;
  width: 100%;
  text-align: center;
}

.category-img-container > p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.category-margin-top {
  margin-top: -180px;
}

.title-top-text {
  margin: 35px 0;
}

.title-top-text .title {
  font-size: 46px;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  color: orangered;
}

.title-top-text p {
  text-align: center;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

.title-top-text hr {
  width: 5%;
  margin: 1rem 0;
  color: inherit;
  background-color: orangered;
  border: 0;
  opacity: 1;
  margin: 0 auto;
}

.food-card {
  position: relative;
}

.slide-text-container {
  width: 60%;
  height: 100px;
  border-radius: 5px;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  z-index: 999;
  bottom: -35px;
  transform: translate(33%);
  background-color: rgba(255, 255, 255, 0.7411764706);
}

.teacher-name {
  color: orangered;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
}

.slide-mobile-bg {
  background-image: url("../../dist/images/mobile-music-one.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 400px;
}

.navbar-light .navbar-toggler {
  color: #1B6B93;
  border-color: #1B6B93;
  height: 40px;
}

.my-nav-brand {
  left: 50%;
  margin-left: -50px;
  top: 3px;
}
.my-nav-brand img {
  max-height: 40px;
}

.top-img-btn {
  z-index: 999;
  top: 5px;
  right: 10px;
}
.top-img-btn img {
  height: 45px;
  border-color: orangered;
}
.top-img-btn .dropdown-menu {
  margin-top: 3px !important;
  background-color: rgba(99, 21, 0, 0.6392156863);
}
.top-img-btn .dropdown-menu a {
  color: #fff !important;
  font-family: "Montserrat", sans-serif;
}

@media only screen and (max-width: 600px) {
  .category-margin-top {
    margin-top: -90px;
  }
  .title-top-text h3 {
    font-size: 46px;
    text-align: center;
    font-family: "The Nautigal", cursive;
    color: orangered;
  }
  .title-top-text p {
    text-align: center;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
  }
  .title-top-text hr {
    width: 25%;
    margin: 1rem 0;
    color: inherit;
    background-color: orangered;
    border: 0;
    opacity: 1;
    margin: 0 auto;
  }
}/*# sourceMappingURL=main.css.map */