/********** Template CSS **********/
:root {
    --primary: #FE5D37;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

p {
  font-weight: 600;
}
body {
  font-family: "Heebo", sans-serif !important;
  color: #000 !important;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
hr {
  border: 1; /* Removes all default borders first */
  border-top: 1px solid #fff;/* Adds a solid blue top border of 2px thickness */
  color: #fff;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/


.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
    font-family: "Salsa", cursive;
    font-size: 16px;
  background: #fe5d37;
  border:1px solid #fe5d37;
}
.btn-primary {
  animation: floatBtn 8s ease-in-out infinite;
}
.btn-primary:hover {
  background: #f2f2f2;
  color: #fe5d37;
}

@keyframes floatBtn {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.btn-roll {
  position: relative;
  background: #0d6efd;
  color: #fff;
  border: none;
  z-index: 1;
  overflow: hidden;
}

/* animated border */
.btn-roll::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* border thickness */
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    #fe5d37,
    #fe5d37,
    #0cc3e2,
    #3bc832,
    #ff9800
  );
  background-size: 300% 300%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* hover */
.btn-roll:hover::before {
  opacity: 1;
  animation: borderRoll 1.5s linear infinite;
}

@keyframes borderRoll {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}


.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
.js-slide-tite {
  font-size: 3.1rem !important;
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: "Salsa", cursive;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
  font-family: "Salsa", cursive;
}

.font-secondary {
    font-family: "Salsa", cursive;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
  font-size: 18px;
    letter-spacing: 1px;
  font-family: "Salsa", cursive;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}
a.nav-item.nav-link.suv {
    display: none;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
	a.nav-item.nav-link.suv {
    display: block;
}

}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
/*.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../js-img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

*/

@media (max-width: 768px) {
    /*.header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
        min-height: -webkit-fill-available !important;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 13px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 16px;
        font-weight: 600;
    }*/
  .btn.btn-primary {
    font-size: 12px;
  }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../js-img/gallery-12.jpeg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}
@media (min-width: 992px) {
.js-px-lg-5 {
        padding-right: 7rem !important;
        padding-left: 7rem !important;
}
}

/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}
.bg-light-abt1 {  
  background: #ff1493;
}
.bg-light-abt2 {  
background: #0cc3e2;
}
.bg-light-abt3 {  
background: #32cd32;
}



/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}
.bg-light-class1 {
  background: #ff1493;
}
.bg-light-class2 {
  background: #0cc3e2;
}
.bg-light-class3 {
  background: #32cd32;
}
.bg-light-class4 {
  background: #ff1493;
}
.bg-light-class5 {
  background: #0cc3e2;
}
.bg-light-class6 {
  background: #32cd32;
}
.js-bg-grey p, .js-bg-grey a {
    color: #000; 
  	text-align: center;
      text-decoration: none;
    margin-bottom: 15px;

}
.border-success small, .border-primary small {
    color: #fff;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
  	text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
  	text-decoration: none;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.dropdown-toggle::after {
  	margin-top: -5px;
}
a.navbar-brand img {
    width: 100%;
    height: 95px;
}
.js-size-h3 {
    font-size: 1.25rem;
}
.js-row-align {
  	text-align: center;
}
.js-bg-grey {
  	background-color: #f8f9fa !important;
	 background-image: url("../js-img/sprinkles.png");
}
.js-dropdown {
    font-family: "Salsa", cursive;
    font-size: 16px;
}
.service-box h5 {
    font-family: "Salsa", cursive;
}
.make-appoint {
   background-color: #12c1e0;
background-image: url("../js-img/gray-floral.png");
}
.courses-js {
 	background-color: #fe5d37;
background-image: url("../js-img/diagmonds-light.png");
}
/*.js-title-or {
  color: #103741 !important;
}*/


.section-title {
  font-weight: 700;
  color: #103741;
}

.title-line {
  width: 60px;
  height: 4px;
  background: #f4c400;
  margin: 10px auto 0;
}

.reason-box {
  padding: 20px;
}

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 36px;
  color: #fff;
}

/* Colors */
.bg-red { background: #ff4d4d; }
.bg-yellow { background: #ffcc00; }
.bg-green { background: #8bc34a; }
.bg-blue { background: #29b6f6; }

.red { color: #ff4d4d; }
.yellow { color: #ffb300; }
.green { color: #8bc34a; }
.blue { color: #29b6f6; }

.reason-box p {
  color: #777;
  font-size: 15px;
}

.read-more-btn {
  background-color: #8bc34a;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background-color: #6fa834;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .read-more-btn {
    width: 100%;
  }
}

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
}

.bg-red { background: #ff5252; }
.bg-yellow { background: #ffca28; }
.bg-green { background: #8bc34a; }
.bg-blue { background: #29b6f6; }

.reason-box p {
  font-size: 14px;
  color: #777;
}

.read-more-btn {
  background: #8bc34a;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
}

.read-more-btn:hover {
  background: #6fa834;
  color: #fff;
}
img.img-fluid.rounded-circle- {
    width: 60px;
}
.reasons-section {
   background-color: #f2f2f2;
background-image: url("../js-img/inspiration-geometry.png");
}
.reason-box:hover {
    margin-top: -10px;
}
.reason-box {
    transition: .5s;
}

.js-img-course {
    width: 21%;
}

 .navbar-collapse {
  z-index: 9999;
}

.project-carousel img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:12px;
}

/* mobile height adjust */
@media (max-width: 576px){
    .project-carousel img{
        height:180px;
    }
}
 
/* MOBILE: show only 1 image per slide */
@media (max-width: 576px) {
  #projectCarousel .carousel-item .col-12 {
    display: none;
  }

  #projectCarousel .carousel-item .col-12:first-child {
    display: block;
  }
}

/* ===== MOBILE BANNER FINAL FIX ===== */
@media (max-width: 767px) {

    .owl-carousel-item {
        height: auto !important;
        min-height: auto !important;
        min-height: -webkit-fill-available !important;
    }

    .owl-carousel-item img {
        width: 100%;
        height: auto !important;
        object-fit: cover !important;
        display: block;
    }

    /* overlay height problem fix */
    .owl-carousel-item > .position-absolute {
        position: relative !important;
        height: auto !important;
    }

    .owl-carousel-item .container {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* arrows hide (optional) */
    .header-carousel .owl-nav {
        display: none;
    }
}
    
   .about-bg {
      padding:40px 0;
  background-image: url("../js-img/cubes.png");
    }
    .footer-bg {
      background-image: url("../js-img/skulls.png");
    }

    .js-slide-tite {
      font-size: 3.1rem !important;
    }	

	.we-provide{
    padding:40px 0;
  	background: #FFF4E6;     
	background: linear-gradient(90deg, rgb(253 233 208) 16%, rgb(190 222 229) 81%, rgba(190 222 229) 100%);
}
.we-provide h2{
    text-align:center;
    margin-bottom:50px;
    font-weight:700;
}

.service-box{
    text-align:center;
    padding:30px 20px;
    border-radius:14px;
    transition:all 0.3s ease;
    cursor:pointer;
}

.service-box img{
    width:70px;
    margin-bottom:15px;
}

.service-box h5{
    color:#f39c12;
    font-weight:600;
    transition:color 0.3s ease;
}

.service-box p{
    font-size:16px;
    color:#000;
    transition:color 0.3s ease;
}

/* Hover Effect */
.service-box:hover{
    background:#fff4e6;
    transform:translateY(-8px);
}

.service-box:hover h5{
    color:#ff6f00;
}

.service-box:hover p{
    color:#333;
}
.top-shape {
    margin-bottom: -48px;
   display: flex;
    align-items: center;
    justify-content: center;
   background-image: url("../js-img/sprinkles.png");
}

.program-section {
  background: #f4836b; /* your orange background */
}

.program-box {
  background: #ffffff;
  /*position: relative;*/
  padding: 20px;
}

/* LEFT SIDE CURVE */
.left-curve {
  border-top-left-radius: 130px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

/* RIGHT SIDE CURVE */
.right-curve {
  border-top-right-radius: 130px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}


.program-item {
  margin-bottom: 20px;
}

.program-item h5 {
  margin-bottom: 6px;
  font-weight: 600;
}

.program-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}
.bg-gn {
  background-color: #e0eaef;
}
.bg-pattern1 {
   background-image: url("../js-img/straws.png");
}
.bg-pattern2 {
   background-image: url("../js-img/straws.png");
  background-color: darksalmon;
}
.bg-pattern3 {
  background-image: url("../js-img/straws.png");
}





















