/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 #4caf50;
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: #4caf50 !important;
}

.btn.btn-secondary {
    box-shadow: inset 0 0 0 0 #4caf50;
}

.btn.btn-secondary:hover {
    box-shadow: inset 300px 0 0 0 #4caf50;
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Sub Title Start ***/
.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #4caf50;
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -110px;
    border: 1px solid var(--bs-secondary) !important;
}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: #4caf50 !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/

.navbar-light .navbar-nav .nav-link {
    font-family: "Poppins", sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 18px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
    font-size: 18px !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #4caf50 !important;
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #4caf50;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid #4caf50;
        color: #4caf50;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }
    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative; 
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 60px;
    background: #4caf50;
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 60px;
    background: #4caf50;
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: #4caf50 !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;
    
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
	position: relative;
	padding: 145px 0 50px 0;
    background: linear-gradient(rgba(242, 139, 0, 0.2), rgba(242, 139, 0, 0.3)), url(../img/breadcrumb.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding-top: 50px;
    }

}
/*** Single Page Hero Header End ***/


/*** Counter Facts Start ***/

.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, 0.7)), url(../img/counter-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}


.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: #4caf50;
    
}
.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    border-radius: 10px 10px 0 0;
    font-size: 50px;
    line-height: 90px;
    color: #4caf50 !important;
    display: flex;
    
}

.counter-facts .counter h3 {
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    display: flex;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter { margin-bottom: 40px; 
    }
}
/*** Counter Facts End ***/


/*** Training Start ***/
.training-carousel .owl-stage-outer {
    margin-top: 30px;
}

.training-carousel .owl-nav .owl-prev,
.training-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.training-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.training-carousel .owl-nav .owl-next {
    right: 0;
}

.training-carousel .owl-nav .owl-prev:hover,
.training-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: #4caf50 !important;
}

.training .training-item .training-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.training .training-item .training-img img {
    transition: 0.5s;
}

.training .training-item:hover .training-img img {
    transform: scale(1.2);
}
/*** Training End ***/



/*** Dance Class Start ***/
.class-carousel .owl-stage-outer {
    margin-top: 30px;
}

.class-carousel .owl-nav .owl-prev,
.class-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.class-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.class-carousel .owl-nav .owl-next {
    right: 0;
}

.class-carousel .owl-nav .owl-prev:hover,
.class-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: #4caf50 !important;
}

.class .class-item .class-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.class .class-item .class-img img {
    transition: 0.5s;
}

.class .class-item:hover .class-img img {
    transform: scale(1.3);
}
/*** Dance Class End ***/


/*** Blog Start ***/
.blog-carousel .owl-stage-outer {
    margin-top: 30px;
}

.blog-carousel .owl-nav .owl-prev,
.blog-carousel .owl-nav .owl-next {
    position: absolute;
    top: 1px;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.blog-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.blog-carousel .owl-nav .owl-next {
    right: 0;
}

.blog-carousel .owl-nav .owl-prev:hover,
.blog-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: #4caf50 !important;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.3);
}
/*** Blog End ***/

/*** Team Start ***/
.team-carousel .owl-stage-outer {
    margin-top: 30px;
}
.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    position: absolute;
    top: 1px;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.team-carousel .owl-nav .owl-next {
    right: 0;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: #4caf50 !important;
}

.team .team-carousel .team-item .team-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.team .team-carousel .team-item .team-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    transition: 0.5s;
    z-index: 2;
}

.team .team-carousel .team-item .team-img .team-icon {
    position: absolute;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 25px;
    display: flex;
    opacity: 0;
    transition: 0.5s;
    z-index: 3;
}

.team .team-carousel .team-item:hover .team-img .team-icon {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

.team .team-carousel .team-item .team-content {
    position: relative;
    background: var(--bs-secondary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1;
    transition: 0.5s;
}

.team .team-carousel .team-item .team-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #4caf50 !important;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-carousel .team-item:hover .team-content a,
.team .team-carousel .team-item:hover .team-content p {
    color: var(--bs-white) !important;
}

.team .team-carousel .team-item:hover .team-content::after {
    height: 100% !important;
}

.team .team-carousel .team-item .team-img img {
    transition: 0.5s;
}

.team .team-carousel .team-item:hover .team-img img {
    transform: scale(1.1);
}
/*** Team End ***/


/*** Vidie Gallery Start ***/
/*** Youtube Video start ***/
.gallery .tab-class {
    text-align: start !important;
}

.gallery .nav-item {
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.gallery .nav-item a span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery .nav-item a.active {
    background: #4caf50 !important;
}

.gallery .nav-item a.active span {
    color: var(--bs-white) !important;
}


.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 23px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 70px;
    height: 70px;
    background: var(--bs-white);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 50px;
    height: 50px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 23px solid #4caf50;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/

/*** Vidieo Gallery End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 30px;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 1px;
    padding: 10px 35px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-white);
    background: var(--bs-secondary);
    border-radius: 50px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.testimonial-carousel .owl-nav .owl-next {
    right: 0;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-light) !important;
    color: #4caf50 !important;
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact button.btn.btn-primary.w-100:hover {
    box-shadow: inset 700px 0 0 0 var(--bs-light) !important;
    color: #4caf50 !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item .footer-link {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item .footer-link:hover {
    letter-spacing: 1px;
    color: #4caf50 !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/



/*27-05-25*/
a {
    text-decoration: none;
	color: #4caf50;
}
a, a:hover {
	transition: all 500ms ease;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #4caf50;
    --bs-btn-border-color: #4caf50;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #4caf50;
    --bs-btn-hover-border-color: #4caf50;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #4caf50;
    --bs-btn-active-border-color: #4caf50;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #4caf50;
    --bs-btn-disabled-border-color: #4caf50;
    border-radius: 8px;
    border: solid 1px #1d554a;
}
.bg-dark {
    background-color: #3b3b3b!important;
}
.text-primary {
    color: #4caf50!important;
}
.bg-primary {
    background-color: #4caf50!important;
	color: #fff;
}
.ccs>.bg-primary {
    background: transparent!important;
    overflow-y: hidden;
}
.topsec a, .topsec i {
    color: #ffffff!important;
    text-align: center;
    font-size: 14px;
}
.topsec a .fab, .topsec a .far, .topsec a .fas, .topsec a .fa {
    border-radius: 50%;
    border: solid 2px #fff;
    width: 25px;
    height: 25px;
    padding: 5px;
    font-size: 13px;
}
.navbar-light .navbar-brand img {
    max-height: 70px;
}
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    font-size: 16px;
}
.header-carousel .header-carousel-item .carousel-caption {
    padding: 0 8%;
    justify-content: space-between;
    text-align: left;
}
.navbar-light {
    position: static;
}
.header-carousel .header-carousel-item, .header-carousel .header-carousel-item img {
    height: auto;
    margin-top: 0;
}
.sticky-top.navbar-light {
     padding: 0 10%;
}
.banertitle {
    font-size: 40px;
    line-height: 50px;
}
.banertitle strong {
    width: 100%;
    display: inline-block;
    text-transform: uppercase;
}
.btn.btn-primary {
    box-shadow: inset 0 0 0 0 #4caf50;
    padding: 10px 24px!important;
}
.fs-5 {
    font-size: 1rem!important;
}
.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    width: 58%;
}
.carousel-caption-img {
    width: 500px;
    float: right;
}
.header-carousel .header-carousel-item .carousel-caption {
    background: transparent;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #000;
    text-align: center;
}
.carousel-caption {
    color: #000;
}
.header-carousel .header-carousel-item .carousel-caption p {
    line-height: 28px;
}
.bgcolor {
	background: #f0faf0;
}
.sticky-top.navbar-light .navbar-nav .nav-link {
    font-size: 14px !important;
}
.round-border {
	border: solid 1px #dcdcdc;
	border-radius: 24px;
}
img {
    max-width: 100%;
}
.title-text {
	font-size: 34px;
}
.color-primary {
	color: #4caf50!important;
}
body {
    font-family: "Poppins", sans-serif;
    font-size: 14px !important;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, strong, th, b {
    font-weight: 600;
}
ul {
    list-style: none;
    padding-left: 0;
}
.appsec p {
	font-size: 16px;
}
.appsec ul {
    font-size: 18px;
    flex-wrap: wrap;
    font-weight: 500;
}
.listitems li i, .appsec p a {
	color: #4caf50;
}
.appsec p a:hover, a:hover {
	color: #000;
}
.listitems li {
    margin: 4px 0;
}
img.appimg {
    margin-top: -108px;
}
.appsec ul.listibuttons {
    margin-top: 40px;
}
.appsec ul.listibuttons li a {
    display: inline-block;
    margin-right: 12px;
}
.appsec ul.listibuttons li a img {
    height: 50px;
}
span.proicon {
    background: #ffa726;
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding-top: 18px;
    margin-bottom: 15px;
}
.probox h5 {
    text-transform: uppercase;
    font-size: 1.6rem;
    margin: 6px 0 12px;
}
.probox {
    min-height: 360px;
    border-radius: 20px;
	transition: all 500ms ease;
}
.probox.bg-primary:hover {
    background: #ffa726!important;
    color: #fff;
	transition: all 500ms ease;
}
.pbin {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	color: #fff;
}
.achievesec {
    --bs-gutter-x: 0;
    overflow: hidden;
}
.arcbg_img {
    top: 0;
    left: 0;
    z-index: -1;
}
.form_box {
    width: 830px;
    float: right;
}
.form_sec {
    background: #ffffff;
    padding: 40px 36px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 6px;
    margin-top: 30px;
}
.form-group {
    margin: 4px 0;
}
label {
    margin: 3px 0px;
}
.form-control {
    background: #f0faf0;
}
.form-control {
    color: #757f95;
    font-size: 14px;
}
::placeholder {
  color: #757f95;
}
::-ms-input-placeholder { 
  color: #757f95;
}
.form-control:focus {
    border-color: transparent;
    box-shadow: 0 0 0 .1rem rgba(50,164,141,.25);
}
.form_box p {
    margin: 25px 0 40px;
}
.form_box .form_sec p {
	padding: 25px 6px 16px;
	margin: 0;
}
.sub-title::before {
	display: none;
}
.sub-title {
    text-transform: none;
    color: #4caf50;
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
}
.limitbox {
    bottom: 0;
    right: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
}
.limitbox {
    bottom: -56px;
    right: 12px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: solid 2px #fff;
    padding: 26px 8px;
    text-align: center;
    line-height: 16px;
    box-shadow: 0 0 2px 1px #ccc;
}
.features_list {
    border-bottom: solid 1px #d4ded4;
    font-size: 16px;
}
.features_list li {
    border-top: solid 1px #d4ded4;
}
.features_list li {
    padding: 8px;
}
.btn-features {
    background: #ffa726;
    border-radius: 4px;
    padding: 4px 18px;
    display: inline-block;
    margin-bottom: 12px;
}
.bg-gradient {
    background-color: #4caf50;
    background-image: linear-gradient(#eef9ef, #4caf50)!important;
}
.color-white {
	color: #fff;
}
.white-btn {
	background: #ffffff;
}
.btnout {
    flex-wrap: wrap;
    justify-content: center;
}
.mTop9 {
	margin-top: 60%;
}
.counter-facts {
    background: url(../img/counter-bg.jpg) #4caf50;
    background-attachment: unset;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
}
.counter-facts .counter {
    position: static;
    text-align: center;
    width: 100%;
    min-height: auto;
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: #4caf50;
}
.counter-facts .counter:before {
	display: none;
}
.mainbox {
    background: rgba(255,255,255,.7);
    border-radius: 6px;
    margin: 30px 0;
    padding: 5%;
}
.cont {
    justify-content: space-between;
    flex-direction: row;
}
.cont span.proicon {
    width: 80px;
    height: 80px;
    padding-top: 12px;
    text-align: center;
    margin: 0;
}
.conttxt {
    width: 215px;
}
.cont span.proicon i {
    font-size: 54px;
}
.conttxt h5 {
    text-transform: none;
    font-size: 1.2rem;
    margin: 6px 0 12px;
} 
.conbx {
    min-height: auto;
    border-radius: 20px;
    padding: 40px 22px;
}
.wmx60 {
	max-width: 60%;
}
a.pbin:hover {
	color: #fff;
}
.footer-item i {
    color: #515151;
}
.bicn {
    border: solid #515151 1px;
	transition: all 500ms ease;
}
.bicn:hover {
    border: solid #4caf50 1px;
	transition: all 500ms ease;
}
.footer-item .bicn:hover i {
    color: #4caf50;
	transition: all 500ms ease;
}
.footer .footer-item .footer-link {
    color: #515151;
}
a.appicnf img {
    height: 34px;
    border: solid 1px #fff;
}
a.appicnf img, .appsec ul.listibuttons li a {
    border-radius: 6px;
}
.copyright {
    font-size: 13px;
}
a.appicnf:hover {
    display: inline-block;
}
a.appicnf:hover, .appsec ul.listibuttons li a:hover {
    box-shadow: 0 0 10px #4caf50;
}
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), url(../img/breadcrumb.jpg);
    background-position: center;
    background-size: 100%;
	background-attachment: fixed;
}
/*.ccs {
    background: url(../img/formbg.jpg) #4caf50 !important;
    background-position: center;
    background-size: 100%;
	background-attachment: fixed;
}*/
.bgccs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
body.loginsign {
    background-image: url(../img/formbg.jpg) !important;
    background-position: center;
    background-size: 100%;
    background-attachment: fixed;
}
.bgccs {
    background-image: url(../img/strip.png) !important;
    background-attachment: fixed;
    position: fixed;
    z-index: -1;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.breadcrumb-item.active {
    color: #ccc;
}
.bg-breadcrumb {
    padding: 150px 0 30px 0;
}
/***Form-Page***/

.signform_main {
    /*background: rgba(255,255,255,.1);*/
    padding: 10px 10% 100px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 6px;
    margin-top: 30px;
	width: 100%;
    justify-content: center;	
}
.signform_main>.row {
    background: rgba(0,0,0,.3);
    padding: 40px 30px;
    border: solid 1px #1e1e1e;
    border-radius: 6px;
    box-shadow: 0 1px 23px #4f4f4f;
    min-width: 610px;
}
p#errormess {
    font-size: 13px;
    color: red!important;
}
.signform_main .form-control {
    padding: 13px 20px;
}
ul.ks-cboxtags li label {
    font-size: 18px;
}
.form_sec p, label {
    color: #3b3b3b;
}
ul.ks-cboxtags {
    list-style: none;
    padding: 0;
    width: 65%;
    margin-top: 30px;
}
ul.ks-cboxtags li {
    display: inline-block;
    width: 100%;
}
ul.ks-cboxtags li label {
    display: inline-block;
    background-color: rgba(240,250,240,.1);
    border: 1px solid rgba(255, 255, 255, 1);
    color: #fff;
    border-radius: 4px;
    white-space: nowrap;
    margin: 3px 0px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: all .2s;
}
ul.ks-cboxtags li label {
    padding: 8px 12px;
    cursor: pointer;
    width: 100%;
}
ul.ks-cboxtags li label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    padding: 2px 6px 2px 2px;
    content: "\f067";
    transition: transform .3s ease-in-out;
    background: rgba(255,255,255,.8);
    color: #4caf50;
    text-align: center;
    padding: 2px;
    margin: 0 6px 0 0;
    width: 20px;
    height: 20px;
}
.ccs .bg-primary .container {
	height: 100vh;
	}
ul.ks-cboxtags li input[type="checkbox"]:checked + label::before, ul.ks-cboxtags li input[type="radio"]:checked + label::before {
    content: "\f00c";
    transform: rotate(-360deg);
    transition: transform .3s ease-in-out;
    background: #ffa726;
    color: #fff;
}
.signform_main textarea {
    max-height: 230px;
    resize: none;
}
ul.ks-cboxtags li input[type="checkbox"]:checked + label, ul.ks-cboxtags li label:hover, ul.ks-cboxtags li input[type="radio"]:checked + label  {
    border: solid 1px #1d554a;
    background-color: rgba(255,255,255,1) !important;
    color: #000;
    transition: all .2s;
}

ul.ks-cboxtags li input[type="checkbox"], ul.ks-cboxtags li input[type="radio"] {
  display: absolute;
}
ul.ks-cboxtags li input[type="checkbox"], ul.ks-cboxtags li input[type="radio"] {
  position: absolute;
  opacity: 0;
}
ul.ks-cboxtags li input[type="checkbox"]:focus + label, ul.ks-cboxtags li input[type="radio"]:focus + label {
    border: 1px solid;
    border-color: rgba(255,255,255,.5);
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    border: 1px solid #888;
    width: 500px;
    padding: 4%;
    text-align: center;
}

/* The Close Button (x) */
.close {
    position: absolute;
    right: 2%;
    top: 2%;
    color: #4caf50;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}
.formfield {
    border-radius: 5px;
    padding: 8px 10px;
    cursor: pointer;
}
.otpfield {
    float: none;
    width: 60px;
    margin: 2px 1px 10px;
    border: solid 1px #dcdcdc;
    background: #f0faf0;
}
.close:hover {
  cursor: pointer;
}
.vrfybtn {
    width: 150px;
    display: inline-block;
    float: none;
}
button.otresend {
    border: none;
    background: no-repeat;
	color: #4caf50;
}
button.otresend:hover {
	color: #000;
	text-decoration: underline;
}
.otpmodal {
	align-items: center;
}
p.otop {
    margin: 3px 0;
}
.close:hover {
    color: #3b3b3b;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: #4caf50!important;
}
.bg-success {
    background-color: #4caf50!important;
}
.otop {
	color: #4caf50;
}
/* The Modal End */

.btn-secondary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #ffa726;
    --bs-btn-border-color: #ffa726;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #ffa726;
    --bs-btn-hover-border-color: #ffa726;
    --bs-btn-focus-shadow-rgb: 130,138,145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #ffa726;
    --bs-btn-active-border-color: #ffa726;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #ffa726;
    --bs-btn-disabled-border-color: #ffa726;
}
.btn.btn-secondary {
    box-shadow: inset 0 0 0 0 #ffa726;
    padding: 10px 16px!important;
}
.btn.btn-secondary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light)!important;
    color: #ffa726!important;
}
.btn.btn-secondary:hover {
    background-color: #ffa726;
    border-color: #ffa726;
}
.bg-secondary {
    background: #ffa726!important;
}
.color-secondary {
    color: #ffa726!important;
}

/** 30-05-25 Start **/
.ls_main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    align-items: center;
	margin-top: 12%;
    margin-bottom: 12%;
}
.ls_main .ls_for p.form_subtitle {
    margin-bottom: 6px;
    padding: 0;
}
.ls_for {
    padding: 50px 50px 36px;
    width: 100%;
    float: left;
    height: auto;
    display: block;
}
.ls_main .ls_for p {
    padding: 16px 6px 6px;
    margin: 0;
}
.mainvideo {
    position: fixed;
    right: 0;
    top: 0;
    overflow: hidden;
    width: 60%;
    height: 100%;
}
.bannervideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.loginlogo {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
	margin-bottom: 28px;
}
.loginlogo span {
    background-color: #4caf50 !important;
    background-image: linear-gradient(to right, #4caf50, #ffa726) !important;
    transition: .4s;
    padding: 3px;
}
.loginlogo span, .loginlogo img {
    overflow: hidden;
}
.loginlogo img {
    height: 80px;
    background: #fff;
    padding: 4px 8px;
}
.login_sec {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    overflow-y: scroll;
}
.ohid {
	overflow: hidden;
}
.rs_main {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    height: 100vh;
    align-content: center;
    text-align: center;
}
.login_sec .form_sec {
   margin-top: 0;
}
.modal-backdrop.show {
    z-index: -1;
}
.modal-header {
    padding: 8px 20px;
    margin-bottom: 10px;
}
p.obot {
    margin: 0;
}
.modal p {
    margin: 0 0 8px;
}
/** 30-05-25 END **/

/** 10-06-26 END **/

.signform_main .lb_sp {
    color: #fff;
    margin: 20px 0 6px;
    font-size: 18px;
}
.signform_main textarea, .signform_main textarea.form-control {
    height: 200px;
	max-height: 200px;
    resize: none;
}
.btn:hover {
    cursor: pointer;
}
ul.ks-cboxtags li label, .form-control {
    font-size: 16px;
}
.form-control {
    color: #3b3b3b;
    font-weight: 500;
}
.w-48 {
    width: 48%!important;
}
.w-40 {
    width: 40%!important;
}
.w-31 {
    width: 31%!important;
}

.main-heading {
    font-size: 2rem;
}
.h3, h3 {
    font-size: 1.2rem;
}
.hsml{
    font-size: .7rem;
}
ul.ks-cboxtags.dtdboxes li:last-child {
    width: 38%!important;
}
.signform_main .form-control {
    padding: 10px 20px;
}
.signform_main .form-control {
    margin-top: 3px;
    margin-bottom: 3px;
}
.navcount {
    border-bottom: solid 1px #dee2e6;
}
h1.titletext {
    font-size: 2rem;
    margin: 0;
    padding: 0;
}
.contentpage p {
    margin-bottom: 10px;
}
.contentpage ul li {
	margin-top: 4px; 
}
.contentpage ul li::before {
    content: '✔';
    color: #4caf50;
    margin-right: 3px;
}
.contentpage p.sub-title {
	line-height: 26px;
}
.round-border-w {
    border: solid 4px #fff;
    border-radius: 24px;
    box-shadow: 0 0 4px #ccc;
}
.contentpage ul.eqlist li {
    width: 24%;
    display: inline-block;
}
.aboutspl .probox {
    width: 20%;
    margin: 6px;
}
.aboutspl span.proicon {
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    padding: 5px 4px;
    width: 80px;
    height: 80px;
}
.aboutspl .probox h5 {
    text-transform: capitalize;
    font-size: 1.3rem;
}
img.gurubanner {
    margin: 50px 0 70px;
}
.programssec, .sixmadsec, .subplansec {
    margin-top: 50px;
}
 .event-item .features_list li {
    text-align: left;
}
/**
   media
        **/
		
@media(min-width:0px) and (max-width:767px) {
body {
    font-size: 13px !important;
}
.header-carousel .header-carousel-item .carousel-caption {
    flex-wrap: wrap;
}
.banertitle {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 10px!important;
}
.header-carousel .header-carousel-item .carousel-caption p {
    line-height: 20px;
    font-size: 13px!important;
}
.header-carousel .header-carousel-item .carousel-caption {
    padding: 0 2%;
}
.btn.btn-primary {
    padding: 7px 14px!important;
    font-size: 13px!important;
}
.carousel-caption-img {
    width: 100%;
}
/*.header-carousel .header-carousel-item, .header-carousel .header-carousel-item img {
    height: 700px;
}*/
.carousel-caption-img {
    text-align: center;
}
.header-carousel .header-carousel-item .carousel-caption-img img {
    width: 350px;
	height: auto;
    display: inline-block;
}
img.appimg {
    margin-top: 0;
}
.appsec .bgcolor {
    padding: 0!important;
    border-radius: 0;
}
.form_box {
    width: 100%;
    float: right;
    padding: 0 6%;
}
.form_sec {
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    border-radius: 6px;
    margin-top: 20px!important;
}
.mTop9 {
    margin-top: 0;
}
.arcbg_img {
    top: auto;
    bottom: 0;
}
.achievesec {
	background-color: #f0f0f0;
}
.title-text {
    font-size: 26px;
}
.wmx60 {
    max-width: 100%;
    margin-top: 30px;
}
.mainbox .row.g-5.mt-2 {
    margin-top: 0!important;
}
.ftleft, .ftmid, .ftright {
    text-align: center!important;
}
.signform_main .btn.btn-primary {
    padding: 10px 24px!important;
    font-size: 16px!important;
}
ul.ks-cboxtags {
    width: 100%;
}
.ls_main {
    width: 100%;
    float: right;
    padding: 0;
}
.mainvideo {
    width: 80%;
}
.table th {
    line-height: 20px;
}
.table th span {
    margin-top: 6px;
}
.btn.btn-primary {
    line-height: 15px;
}
.appsec .bgcolor {
    padding: 30px 10px!important;
}
.aboutspl {
    flex-direction: column;
}
.aboutspl .probox {
    width: 100%;
}
}

@media(min-width:768px) and (max-width:1180px) {
body {
    font-size: 13px !important;
}
.header-carousel .header-carousel-item .carousel-caption {
    flex-wrap: wrap;
}
.banertitle {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 10px!important;
}
.header-carousel .header-carousel-item .carousel-caption p {
    line-height: 20px;
    font-size: 13px!important;
}
.header-carousel .header-carousel-item .carousel-caption {
    padding: 0 2%;
}
.btn.btn-primary {
    padding: 7px 14px!important;
    font-size: 13px!important;
}
.carousel-caption-img {
    width: 270px;
    float: right;
}
img.appimg {
    margin-top: 0;
}
.title-text {
    font-size: 26px;
}
 .form_box {
        width: 100%;
 }
.achievesec {
	background: url("../img/form_bg_tab.jpg") no-repeat #eaeaea;
	background-size: 100%;
	background-position: center bottom;
}
.ftmid {
    text-align: right!important;
}
.ftright {
    text-align: center!important;
}
.mainbox .row>* {
    padding-right: .5rem;
    padding-left: .5rem;
}
.cont span.proicon i {
    font-size: 34px;
}
.cont span.proicon {
    width: 60px;
    height: 60px;
    margin: 0 0 10px;
}
.appsec ul.listibuttons {
    margin-bottom: 60px;
}
.header-carousel .header-carousel-item, .header-carousel .header-carousel-item img {
    height: auto;
}
.header-carousel .header-carousel-item .carousel-caption-img img {
    height: auto;
}
    .aboutspl {
        flex-direction: row;
        flex-wrap: wrap;
		justify-content: center;
    }
.aboutspl .probox {
        width: 31%;
}
}



 