@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ======== Reset ======== */
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a:active,
a:focus {
    outline: none;
}

/* ======== Variables ========*/

:root {
    --theme-color: #333333;
    --text-color: #D9BA9D;
}

/* html{
    font-size: 10px;
} */

/* ======== Global ========*/

html {
    scroll-behavior: smooth;
}

body {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-family: 'poppins', sans-serif;
}



/* ~~~~~~~~~~~~~~ Gloabal Classes End ~~~~~~~~~~~~~~~~~~~ */
.bg-theme {
    background-color: var(--theme-color);
}

.theme-bg {
    background-color: var(--text-color);
}

.t-color {
    color: var(--text-color)
}

.btn-theme {
    background-color: var(--text-color); 
} 
.btn-theme:hover {
    color: #fff;
    background-color: var(--text-color); 
} 
.dropdown-item:hover {
    color: #000 !important;
} 
.pointer {
    cursor: pointer;
} 
.cus-form {
    box-shadow: none !important;
    border: none !important;
    border-bottom: 2px solid #000 !important;
    border-radius: 0px !important;
} 
/* custome font size */
.fs-7 {
    font-size: 12px !important;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-14 {
    font-size: 14px;
}

.drop-menu {
    position: relative;
}

.menu {
    display: none;
    position: absolute;
    z-index: 10;
    width: 200px;
    padding: 10px 15px;
}

.menu li a {
    padding: 10px 15px;
}

.menu li a:hover {
    background-color: #fff;
    color: #000;
}

.drop-menu:hover .menu {
    display: block;
}

@media screen {

    .dropdown:hover .dropdown-menu,
    .btn-group:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        margin: auto;
    }

    .dropdown-toggle {
        margin: auto;
    }

    .navbar .dropdown-toggle,
    .nav-tabs .dropdown-toggle {
        margin: auto;
    }
}

.cus-modal-close-btn {
    position: absolute;
    right: -10px;
    top: -10px;
}

.form-control.log {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0px !important;
}

/* ======================== Course Section -================ */
.sub-heading::after {
    position: absolute;
    content: "";
    margin-top: 7px;
    width: 100px;
    height: 3px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-image: linear-gradient(to right, #000, #f69220, #000);
}

.left-li li a {
    position: relative;
}

.left-li::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 371px;
    top: -30px;
    left: -20px;
    background: linear-gradient(101deg, rgba(0,0,0,1) 15%, rgba(246,146,32,1) 100%);

}

.left-li li a::after {
    position: absolute;
    content: ""; 
    width: 45px;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
    background: linear-gradient(101deg, rgba(0,0,0,1) 15%, rgba(246,146,32,1) 100%);

}

.right-li li a {
    position: relative;
}

.right-li::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 371px;
    top: -30px;
    right: -50px;
    background: linear-gradient(101deg, rgba(0,0,0,1) 15%, rgba(246,146,32,1) 100%);

}

.right-li li a::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
    right: -47px;
    background: linear-gradient(101deg, rgba(0,0,0,1) 15%, rgba(246,146,32,1) 100%);

}

.opacity {
    opacity: 0.2;
}

/*================================ gallery-hero ====================== */
.gallery-hero {
    width: 100%;
    height: 450px;
    background-image: linear-gradient(to top, #131212a4, #1a1919c0), url(../image/gallerybanner.jpg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.gallery-section>p {
    letter-spacing: 0.6rem;
    text-transform: uppercase;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.gallery-section h4 {
    text-transform: uppercase;
    color: #fff;
    font-size: 36px;
    letter-spacing: 0.2em;
}

.gallery-img {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-img img {
    width: 100%;
    transition: all 1s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
}

.gallery-img img:hover {
    transform: scale(1.5);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    border: 1px solid #fff;
    background-color: var(--text-color) !important;
}

.tab-pane.container.row img {
    border-radius: 50px;
}

.blog-title {
    text-align: center;
    font-size: 18px;
    text-transform: capitalize;
}

/* coursr  */
.subs-heading {
    letter-spacing: 0.6em;
    font-size: 12px;
    text-transform: uppercase;
    color: #2d4052;
    font-weight: 400;
}

.subjects-heading {
    font-weight: 400;
    letter-spacing: 0.5rem;
}

.content-card {
    position: relative;
    width: 100%;
    height: 250px;
    perspective: 500;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 1s ease-in-out;
    box-shadow: 0 2.8px 2.2px rgb(0 0 0 / 2%), 0 6.7px 5.3px rgb(0 0 0 / 3%), 0 12.5px 10px rgb(0 0 0 / 4%), 0 22.3px 17.9px rgb(0 0 0 / 4%), 0 41.8px 33.4px rgb(0 0 0 / 5%), 0 100px 80px rgb(0 0 0 / 7%);
}

.content {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: transform 1s;
    transform-style: preserve-3d;
}

.front,
.back {
    height: 100%;
    position: absolute;
    text-align: center;
    backface-visibility: hidden; 
    box-shadow: 0 2.8px 2.2px rgb(0 0 0 / 2%), 0 6.7px 5.3px rgb(0 0 0 / 3%), 0 12.5px 10px rgb(0 0 0 / 4%), 0 22.3px 17.9px rgb(0 0 0 / 4%), 0 41.8px 33.4px rgb(0 0 0 / 5%), 0 100px 80px rgb(0 0 0 / 7%);
}

.back {
    color: rgb(148, 14, 14);
    transform: rotateY(180deg);
    text-align: justify;  
    box-shadow: 0 2.8px 2.2px rgb(0 0 0 / 2%), 0 6.7px 5.3px rgb(0 0 0 / 3%), 0 12.5px 10px rgb(0 0 0 / 4%), 0 22.3px 17.9px rgb(0 0 0 / 4%), 0 41.8px 33.4px rgb(0 0 0 / 5%), 0 100px 80px rgb(0 0 0 / 7%);
}

.content-card:hover .content {
    transform: rotateY(180deg);
}

.regi {
    
    padding: 3px 10px;
    color: #2d4052;
    transition: 0.4s;
    border: solid #2d4052 2px;
}

.regi:hover {
    background-color: #2d4052;
    color: #fff;
}
.tkk{
    font-size: 48px;
    letter-spacing: 0.2em; 
    font-weight: 400;
    display: inline-block;
}
 /* =========================about-hero=================================== */
 .about-hero{
    width: 100%;
    height: 400px;
    background-image: linear-gradient(to top, #161616d3, #2e2d2d4f), url(../image/all_kids.jpg); 
    background-repeat: no-repeat; 
    /* padding: 200px 150px;  */
    background-position: top center;
    background-size: cover;  
 }
 .about-info-hero{
    width: 100%;
    height: inherit;
    background-image: url(../image/abtinfo.jpg); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 50px;
 }
 .nav-link.abt-link{
    padding: 10px 20px;
    margin: 10px 1px;
    box-shadow: 0 0 20px -14px black;
    color:#000;
    transition: 0.5s;
    background-color: #faf6f2b3
 }
 .nav-link.abt-link:hover{
    border: #FF5722 solid 1px;
    border-radius: 50px;
    color: #FF5722;
    margin: 15px 1px;
 }
 .nav-link.abt-link.active{
    border: #FF5722 solid 1px!important;
    border-radius: 50px!important;
    color: #000!important;
    margin: 15px 1px!important;
    background-color: #fff!important;
 }
 .brand-heading{
    padding: 5px 15px;
    border-left: solid #f26a23 3px;
    margin-bottom: 10px;
 }
 .title-heading{
    font-size: 50px;
    letter-spacing: 0.2em; 
    font-weight: 500;
    display: inline-block;
 }
 .box:hover{
    border: solid #f99f1d 1px;
    border-radius: 10px;
    box-shadow: -1px 9px 30px -22px black;
    transition: all ease-in-out 0.7;
    animation: zig-zag 0.5s both;
    animation-duration: 0.8s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: both;
    animation-play-state: running; 
    transform-origin: center;
 }
 @keyframes zig-zag{
    0%{
        transform: rotate(10deg);
    }
    25%{
        transform: rotate(-10deg);
    }
    75%{
        transform: rotate(10deg);
    }
    100%{
        transform: rotate(-10deg);
    }
 }
 .list-para{
    font-size: 18px;
    list-style-type: none;
    box-shadow: -6px 4px 20px -15px #242423;
    border-left: solid #f26a23 3px;
    padding: 6px 0px 6px 15px;
    margin: 12px 0px;
    transition: 0.4s;
 }
 .teacher_name {
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 26px;
    text-align: center;
    padding: 5px;
    background: transparent;
    color: #2d4052;
    margin-bottom: 5px;
    transition: 0.4s;
 }
 .fuculty-content{
    z-index: 1;
 padding: 5px 15px;
 background-color: #ffffffe7;
 position: absolute;
 bottom: 40px;
 width: 100%;
 text-align: center;
 left: 0;
 transition: 0.7s;
}
.teacher_email{
    text-align: center;
    color: #2d4052;
    font-size: 14px;
}
.on-hover-display{
    display: none;
}
.fuculty-content:hover .on-hover-display {
    display: block;
}
.fuculty-content:hover {
    box-shadow: -3px 4px 20px -12px black;
    border-radius: 5px;
    padding: 10px 20px;
}
.fuculty-content:hover .teacher_name {
    border: solid #2d4052 1px;
    text-shadow: 0px 4px 6px #807f7f;
}
.faculty-img img{
    width: 100%;
    height: 100%;
    border-top: solid #FF5722 1px;
    box-shadow: 0px -6px 30px -20px black;
}
.social-media-icon ul li a .bi:hover{
    color: var(--text-color);
}
.about-info-quote{
    padding: 100px;
    background: linear-gradient(to top, #3333339a, #33333386), url(../image/quote02.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.quote-wrap {
    padding: 20px 100px;
    background-color: #323131c2;
    box-shadow: -2px 13px 30px -10px black;
    border-radius: 10px;
    text-align: justify;
}
.quote {
    line-height: 30px;
    padding-left: 20px;
    border-left: solid #f26a23 5px;
    font-family: 'Poiret One' !important;
    font-style: italic;
    font-size: 20px !important;
    color: #fac06e !important;
}
.quote span {
    text-align: right;
    font-weight: bold;
    color: #f26a23 !important;
}
.text-spacing{
    letter-spacing: 5px;
}