@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --white: #fff;
    --black: #000;
    --primary: #6A3871;
    --secondary: #FFB131;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}


/* How to add New font */


/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

section {
    position: relative;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--secondary);
}


/* loader */


/* btn css */

.custom-btn {
    color: #fff;
    border-radius: 5px;
    padding: 12px 2em;
    font-size: 1.125rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    border: 1px solid transparent;
}

.btn-15 {
    background: var(--primary);
    /* border: none; */
    z-index: 1;
}

.btn-15:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--secondary);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-15:hover {
    color: #fff;
}

.btn-15:hover:after {
    left: 0;
    width: 100%;
}

.btn-15:active {
    top: 2px;
}


/* btn css */


/* navigation css */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    transition: 0.3s ease-in-out;
}

.navbar-nav {
    align-items: center;
    gap: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
    color: var(--black);
    text-transform: uppercase;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--secondary);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

header .custom-btn {
    font-size: 1rem;
    padding: 12px 1.5em;
}


/* navigation css */


/* slider css */

.main-slider {
    background: url(../images/mainBnnr.jpg) center /cover no-repeat;
    height: 100vh;
}

.main-slider:before {
    content: "";
    position: absolute;
    background: linear-gradient(177deg, #FFFFFF, #ffffff00);
    width: 100%;
    height: 340px;
    top: 0;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.scroll {
    position: absolute;
    bottom: 1rem;
    left: 50%;
}

.secHeading {
    font-size: 5rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: bold;
}


/* slider css */


/* Program Sec Css Start */

.programSec {
    padding: 4rem 3rem 3rem 3rem;
}

.programHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.programWraps figure img {
    width: 100%;
}

.programWraps h3 {
    font-size: 2rem;
    color: var(--black);
    margin: 1.5rem 0 1rem 0;
}

.programSlider {
    padding-bottom: 5rem;
}

.programSlider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #E1E1E1;
    opacity: 1;
}

.programSlider .swiper-pagination-bullet-active {
    background: var(--secondary);
}

.programSlider .swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}


/* Program Sec Css End */


/* Video Sec Css Start */

.videoSec {
    background: url(../images/videoImg.jpg) center/cover no-repeat;
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videoWraps {
    text-align: center;
}

.videoWraps a {
    font-size: 1.375rem;
    color: var(--white);
}

.videoWraps .btn {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    outline: none;
    background: var(--primary);
    border: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1rem;
}

.videoWraps .btn::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--secondary);
    transform: scale(0);
    transform-origin: 83% 86%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}

.videoWraps .btn.active::before {
    transition-timing-function: ease;
    transform: scale(1);
}

.videoWraps .btn .play {
    width: 65px;
    height: 65px;
    background: var(--white);
    margin-left: 15px;
    z-index: 100;
    clip-path: polygon(0 0, 80% 48%, 0 100%, 0% 100%);
    transition: clip-path 0.5s ease;
    transition-delay: 0.4s;
}

.videoWraps .btn .play.active {
    transition: clip-path 0.1s;
    clip-path: polygon(0 0, 27% 0, 27% 100%, 0% 100%);
}

.videoWraps .small-box {
    width: 18px;
    height: 15px;
    background: #fff;
    position: absolute;
    left: 65px;
    z-index: 100;
    bottom: 48px !important;
    opacity: 0;
    transition: opacity 1s;
}

.videoWraps .small-box.pauseToPlay {
    animation: pauseToPlay 0.4s ease alternate-reverse;
}

@keyframes pauseToPlay {
    10% {
        transform: rotate(90deg);
        left: 73px;
    }
    20%,
    40% {
        transform: rotate(180deg);
        left: 92px;
    }
    50% {
        left: 92px;
        height: 66px;
        bottom: 57px;
        transform: rotate(180deg);
    }
    100% {
        left: 92px;
        height: 66px;
        bottom: 57px;
        transform: rotate(180deg);
    }
}

.videoWraps .small-box.active {
    opacity: 1;
    transition: opacity 1s;
    animation: move 0.8s cubic-bezier(0.52, 1.64, 0.37, 0.66) forwards;
    animation-delay: 0.2s;
}

@keyframes move {
    10% {
        transform: rotate(90deg);
        left: 73px;
    }
    20%,
    40% {
        transform: rotate(180deg);
        left: 92px;
    }
    50% {
        left: 92px;
        height: 66px;
        bottom: 57px;
        transform: rotate(180deg);
    }
    100% {
        left: 92px;
        height: 66px;
        bottom: 57px;
        transform: rotate(180deg);
    }
}


/* Video Sec Css End */


/* Gallery Sec Css Start */

.gallerySec {
    padding: 5rem 0;
}

.gallerySec h2 {
    margin: 9px 0 3rem 0;
}

.GalleryWraps {
    margin-bottom: 2rem;
}

.GalleryWraps a {
    position: relative;
    overflow: hidden;
    display: block;
}

.GalleryWraps a img {
    transition: 0.5s ease;
}

.GalleryWraps a:hover img {
    transform: scale(1.1);
}


/* Gallery Sec Css End */


/* Form Sec Css Start */

.formSec {
    background: rgb(9 9 9 / 10%);
}

.formHead p {
    font-size: 1.375rem;
    color: var(--black);
}

.dateForm input {
    height: 85px;
    border-radius: unset;
    border: 1px solid #D1D1D1;
    font-size: 1.375rem;
    padding-left: 3rem;
    margin-bottom: 1rem;
    width: 80%;
}

.dateForm input::placeholder {
    color: var(--black);
}

.dateForm button {
    background: var(--secondary);
    border: unset;
    font-size: 1.375rem;
    width: 100%;
    padding: 1rem 0;
    width: 80%;
}

.dateForm button:hover {
    background: var(--primary);
    color: var(--white);
}


/* Form Sec Css End */


/* Footer Css Start */

footer {
    background: #090909;
    padding-top: 7rem;
}

footer ul li a:hover {
    color: var(--primary);
}

.newsLetter p {
    font-size: 1.375rem;
    color: #BEBEBE;
    font-weight: 500;
}

.newsForm input {
    background: transparent;
    border: unset;
    border-bottom: 1px solid #707070;
    width: 100%;
    height: 60px;
    font-size: 1.125rem;
    color: var(--white);
}

.newsForm input::placeholder {
    color: rgb(190 190 190 / 20%);
}

.newsForm {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 2.3rem;
}

.newsForm a {
    position: absolute;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    color: #BEBEBE;
}

.links li a {
    text-transform: uppercase;
    color: #BEBEBE;
}

.links li+li {
    padding-top: 1rem;
}

.contactLinks li a {
    color: var(--white);
    font-size: 1.125rem;
}

.contactLinks li:nth-child(1) a {
    font-size: 40px;
    color: var(--secondary);
    font-weight: 600;
}

.contactLinks li:nth-child(1) a:hover {
    color: var(--primary);
}

.contactLinks li+li {
    padding-top: 1.2rem;
}

.copyRight p {
    color: rgb(255 255 255 / 50%);
    margin: 0;
}

.socialLiks {
    display: flex;
    justify-content: end;
    gap: 12px;
}

.socialLiks li a {
    background: rgb(255 255 255 / 10%);
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    font-size: 20px;
}

.socialLiks li a:hover {
    background: var(--primary);
    color: var(--white);
}

.copyRight {
    border-top: 1px solid rgb(112 112 112 / 30%);
    margin-top: 6rem;
    padding: 2rem 0;
}


/* Footer Css End */


/* inner pages css start */

.leaderMain {
    padding: 5rem 0;
}

.radiuImg img {
    border-radius: 16px;
}

.heading {
    font-size: 3.75rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: bold;
}

.leaderContent p {
    font-size: 1.125rem;
    color: #828282;
    font-weight: 400;
    line-height: 1.9;
    margin: 0;
}

.leaderContent p+p {
    margin: 2rem 0 0;
}

.leaderMain .row+.row {
    margin-top: 3rem;
}

.boardPage {
    background: rgb(9 9 9 / 5%);
    padding: 4rem 8rem;
    position: relative;
}

.admin {
    width: 100%;
    height: 86px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-size: 1.375rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    margin: auto;
}

.director {
    border: 2px solid var(--black);
    border-radius: 10px;
    margin-top: 4rem;
    background: var(--white);
    text-align: center;
    padding-top: 3rem;
    position: relative;
    padding-bottom: 1.4rem;
    width: 450px;
    margin: 4rem auto 0;
}

.director span {
    font-size: 1rem;
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: 7px;
    width: 350px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin: auto;
    background: var(--white);
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
}

.director h4 {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
    margin: 0 0 0.6rem;
}

.director a {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.adminstration.boardDirector .d-flex {
    gap: 1rem;
    justify-content: space-between;
}

.adminstration.boardDirector .d-flex .director {
    padding: 1rem 0rem;
    margin-top: 2rem;
    width: 100%;
}

.adminstration.boardDirector .d-flex .director h4 {
    margin: 0;
    font-size: 1rem;
}

.adminstration.boardDirector .admin {
    width: 90%;
}

.boardPage:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--white);
    width: 5px;
    height: 100%;
    top: 0;
    bottom: 0;
}

.subHeading {
    font-size: 1.375rem;
    color: var(--primary);
}

.leaderMain.stafPage .heading {
    font-size: 2.625rem;
}

.leaderMain.stafPage .secHeading {
    font-size: 4.375rem;
}

.programBox {
    display: flex;
    align-items: center;
    background: rgb(255 177 49 / 5%);
    border: 2px solid #FFB131;
    border-radius: 22px;
    padding: 1.2rem;
    gap: 2rem;
}

.programBox figure {
    flex-shrink: 0;
}

.programBox figure img {
    border-radius: 16px;
}

.programpgContent span {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 500;
    display: table;
    margin: 0 0 10px;
}

.programpgContent h2 {
    font-size: 2.425rem;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.programpgContent h3 {
    color: #FFB131;
    font-size: 2.375rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.programpgContent h3 small {
    font-size: 1.375rem;
    color: #707070;
    font-weight: 500;
}

.programpgContent p {
    font-size: 1.2625rem;
    color: #000000;
    font-weight: 500;
    margin: 0 0 1.5rem;
}

.programpgContent ul {
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.programpgContent ul li {
    font-size: 1.31rem;
    color: #000000;
    font-weight: 500;
}

.programpgContent ul li+li {
    margin: 10px 0 0;
}

.programpgContent .step {
    display: flex;
    flex-flow: wrap;
    gap: 1.2rem;
    border: 0;
    padding: 0;
}

.programpgContent .step li {
    flex: 0 0 45%;
    position: relative;
    padding-left: 1.8rem;
}

.programpgContent .step li+li {
    margin: 0;
}

.programpgContent .step li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
}

.programBox.childrenBox {
    background: var(--white);
    margin-top: 2rem;
}

.programpgContent .step.w-100 li {
    flex: 100%;
}

.prgrmtrangPage {
    background: rgb(112 112 112 / 5%);
}

.lowerPage {
    background: var(--primary);
    padding: 5rem 0;
}

.lowerPage .heading {
    color: var(--white);
}

.lowerPage .subHeading {
    color: var(--white);
    font-style: italic;
}

.lowerPage p {
    color: var(--white);
}

.prgrmtrangPage.uperSchol {
    padding-top: 4rem;
}

.prgrmtrangPage.uperSchol .subHeading {
    font-style: italic;
}

.yelowHeading {
    font-size: 3.125rem;
    color: #FFB131;
    font-weight: 600;
}

.leaderMain.performancePage .leaderContent p {
    padding: 0 5rem;
}

.person {
    font-size: 2rem;
    color: var(--black);
    margin: 1.3rem 0 0;
}

.person .purple {
    color: var(--primary);
}

.person .yelow {
    color: #FFB131;
    font-weight: 600;
}

.leaderMain.performancePage .leaderContent .person+p {
    font-size: 14px;
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.auditionBox {
    border: 5px solid #FFB131;
    border-radius: 16px;
    text-align: center;
    padding: 3rem 0;
}

.auditionBox .heading {
    font-size: 3.125rem;
    font-weight: 600;
}

.auditionBox .heading+p {
    font-size: 22px;
    color: var(--black);
    font-weight: 500;
    margin: 0 0 2rem;
}

.auditionBox ul li {
    font-size: 22px;
    color: var(--black);
    font-weight: 500;
    text-align: left;
}

.auditionBox ul {
    display: table;
    margin: auto;
}

.auditionBox ul li+li {
    margin: 5px 0 0;
}

.candidate {
    font-size: 1.75rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0 0 1.2rem;
}

.leaderMain.performancePage .leaderContent .candidate+p,
.leaderMain.performancePage .leaderContent .candidate+p+p,
.leaderMain.performancePage .leaderContent .candidate+p+p+p {
    font-size: 22px;
    color: var(--black);
    font-weight: 500;
    margin: 0 0 2rem;
    padding: 0;
}

.dancerPage {
    border: 5px solid var(--primary);
    border-radius: 22px;
    padding: 3rem 7rem;
}

.leaderContent.dancerHeading .heading {
    font-size: 3rem;
}

.theCompny {
    background: var(--primary);
    padding: 3rem 0;
}

.theCompny .heading {
    margin: 0;
    color: var(--white);
}

.theCompny .d-flex {
    align-items: center;
    justify-content: space-between;
}

.theCompny .d-flex span {
    color: #FFB131;
    font-size: 2.625rem;
    font-weight: 600;
}

.cmpuserPage {
    padding: 6rem 0;
}

.blanchardMain {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid #707070;
    padding-bottom: 2rem;
    margin: 0 3rem 2.5rem;
}

.blanchardMain figure {
    margin: 0 0 2rem;
}

.blanchardMain h2 {
    font-size: 2.225rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 0.8rem;
}

.blanchardMain p {
    font-size: 1rem;
    color: #828282;
    font-weight: 400;
    line-height: 1.8;
    /* margin: 0 2rem; */
}

.blanchardMain p span {
    color: var(--primary);
    font-weight: 500;
}

.cmpuserPage:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    /* top: 0; */
    bottom: 0;
    margin: auto;
    background: rgb(112 112 112 / 50%);
    width: 1px;
    height: 99%;
}

.mltiLogo a {
    border: 1px solid #707070;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    margin-bottom: 2rem;
    background: var(--white);
}

.specialMain {
    background: rgb(112 112 112 / 5%);
    padding: 5rem 0 1rem;
}

.specialMain .heading {
    font-size: 3.39rem;
}

.specialMain p {
    color: var(--black);
    margin: 0 0 2rem;
}

.specialMain .d-flex {
    align-items: center;
    gap: 20px;
}

.specialMain .d-flex .btn-15+.btn-15 {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.studioContent .heading {
    font-size: 2.25rem;
    margin: 0 0 1.3rem;
}

.studioContent ul li {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 400;
    position: relative;
    padding-left: 1.8rem;
}

.studioContent ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

.studioContent ul li+li {
    margin: 1rem 0 0;
}

.studioContent ul {
    margin: 0 0 4rem;
}

.specialMain .row+.row {
    margin-top: 4rem;
}

.studioPage {
    padding: 5rem 0;
}

.studioCrcle h2 {
    background: var(--primary);
    font-size: 1.375rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    margin: 0 0 1.8rem;
}

.studioCrcle ul li a {
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
    background: #F8F8F8;
    border: 2px solid var(--black);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
}

.studioCrcle ul li+li {
    margin: 1.7rem 0 0;
}

.studioCrcle ul {
    margin: 0 0 5rem;
}

.leaderContent .para {
    text-align: center;
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 500;
    border-top: 1px solid #707070;
    padding-top: 1.5rem;
}

.gratefulPage {
    background: rgb(112 112 112 / 5%);
    padding: 4rem 0;
}

.gratefulPage .leaderContent p {
    font-size: 1.375rem;
    color: var(--black);
}

.mltiLogo a:hover {
    border-color: #FFB131;
}

.cntctForm label {
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
    display: block;
}

.cntctForm label span {
    font-size: 12px;
}

.cntctForm input {
    width: 100%;
    height: 52px;
    border: 1px solid #A8A8A8;
    border-radius: 4px;
    margin: 0 0 1.5rem;
}

.cntctForm textarea {
    width: 100%;
    height: 149px;
    border: 1px solid #A8A8A8;
    border-radius: 4px;
    margin: 0 0 1.5rem;
    resize: none;
}

.cntctForm .custom-btn.btn-15 {
    width: 100%;
}

.leaderContent.infoContact {
    text-align: center;
}

.leaderContent.infoContact h6 {
    font-size: 1.75rem;
    color: var(--primary);
    line-height: 1.5;
    margin: 0 0 2rem;
}

.leaderMain.contactPage .leaderContent p {
    font-size: 1rem;
}

.navbar-nav .nav-item .nav-link.active:after {
    transform: scaleX(1);
}


/* inner pages css end */