@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');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
@font-face {
  font-family: baloon; 
  src: url(font/gonzo6.ttf);
}
body{
    padding-top: 75px;
}

nav{
    background-color: maroon;
    background-image: linear-gradient(0deg, crimson, maroon);
    color: beige;
    padding: 10px;
    position: fixed;
    top: 0px;    
    width: 100vw;
    z-index: 10;
    box-shadow: 2px 2px 5px black;
}
nav.hidden{
    transform: translateY(-100%);
}
.navdiv{
    margin: 0px auto;
    max-width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navdiv div{
    display: flex;
    gap: 10px;
    align-items: center;
}
.navdiv div .verflex{
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: baseline;
}
.navdiv div .verflex h1{
    text-transform: uppercase;
    width: 300px;
    font-size: 2rem;
    font-family: baloon;
    font-weight: 400;
}
.navdiv div .verflex p{
    font-size: 0.8rem;
}
.navdiv div img{
    width: 65px;
}
.navdiv .menubar{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-right: 10px;
}
.navdiv .menubar a{
    color: beige;
    text-decoration: none;
    padding: 5px;
}
.navdiv .menubar a:hover{
    font-weight: bold;  
    padding: 0px;  
}
.navdiv .menubar .submenu{
    position: relative;
    display: none;
}
.menuitems{
    display: flex;
    flex-direction: column;
    background-color: maroon;
    color: beige;
    position: absolute;
    right: -50px;
    top: 10px;
    z-index: 5;
    width: max-content;
    box-shadow: 0 2px 5px grey;
    border-radius: 5px;
}
.menuitems a{
    width: 100%;
    padding: 5px;
}
.navdiv .menubar a:hover + div{
    display: block;
}
.navdiv .menubar .submenu:hover{
    display: block;
}
.navdiv .mobbar{
    margin-right: 5px;
    display: none;
}
.navdiv .mobbar button{
    background-color: transparent;
    border: none;
    padding: 5px;
    border-radius: 10px;
}
.navdiv .mobbar button img{
    width: 35px;
}
.mobmenu{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.826);
    z-index: 15;
    display: none;
}
.mobmenu .menuflex{
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    height: 100%;
    padding: 10px;
}
.mobmenu a{
    text-decoration: none;
    display: inline-block;
    color: black;
    font-size: 1.25rem;
    padding: 10px;
    margin: 15px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    width: max-content;
}
.menuflex div{
    background-color: maroon;
    color: white;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    
}
.menuflex div .verflex{
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: baseline;
    padding: 0px;
}
.menuflex div .verflex h1{
    text-transform: uppercase;
    font-size: 2rem;
    font-family: baloon;
    font-weight: 400;
}
.menuflex div .verflex p{
    font-size: 0.8rem;
}
.menuflex div img{
    width: 65px;
}
.mobmenu .absbtn{
    position: absolute;
    bottom: 30px;
    left: 10px;
}
.mobmenu .absbtn button{
    padding: 10px;
    margin: 10px;
    background-color: maroon;
    color: white;
    font-weight: 900;
    border: none;
    border-radius: 50px;
}




.hiddenelement{
    display: none;
}

.carasoul{
    position: relative;
    height: 90vh;
}
.carasoul .vidhold{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.vidhold::before{ 
    content: ""; 
    position: absolute; 
    inset: 0; /* shorthand for top/right/bottom/left:0 */ 
    background: rgba(0, 0, 0, 0.65); /* black overlay, 50% opacity */ 
}
.cont{
    position: absolute;
    top: 10%;
    left: 5%;
    color: white;
    width: 40%;
}
.cont.in-view{
    animation: moveup 1s forwards linear;
}
@keyframes moveup {
    0%{
        transform: translateY(25px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
.cont h2{
    font-size: 2.5rem;
    text-shadow: 2px 2px 5px black;
}
.cont h2 b{
    color: crimson;
}
.cont .flexcont{
    display: flex;
    gap: 50px;
    align-items: center;
}
.cont .flexcont .feat{
    text-align: left;
    margin: 20px;
}
.cont .flexcont img{
    width: 70px;
    height: 70px;
}
.cont .flexcont h3{
    color: crimson;
    text-shadow:  0 0 5px black;
    font-size: 1.7rem;
}
.cont .flexcont p{
    font-weight: 500;
}
.absform{
    position: absolute;
    top: 40%;
    right: 5%;
    transform: translate(0%, -50%);
    background-color: whitesmoke;
    color: maroon;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 0 5px black;
}
.perm{
    position: relative;
    transform: translate(0%, 0%);
    margin: 20px auto;
    max-width: max-content;
    box-shadow: none;
    display: none;
    right: auto;
}
.absform .head{
    padding: 10px;
    background-image: linear-gradient(25deg, crimson, maroon);
    color: white;
}
.absform form{
    padding: 20px;
    color: dimgrey;
}
.absform input{
    width: 400px;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    box-shadow:inset 0 0 5px grey;
}
.absform select{
    width: 400px;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    box-shadow:inset 0 0 5px grey;
}
.absform button{
    width: 100px;
    padding: 8px;
    margin: 8px;
    border-radius: 5px;
    background-color: beige;
    background-image: linear-gradient(crimson, maroon);
    color: white;
    font-weight: bold;
    border: none;
    box-shadow: 0 0 5px grey;
}
.absform button:hover{
    background-color: maroon;
    color: beige;
    box-shadow: none;
}

.why{
    text-align: center;
    margin: 20px auto;
    max-width: 80%;
    min-height: 85vh;
    align-content: center;
}
.why p{
    color: maroon;
    font-weight: 500;
}
.why h3{
    font-size: 2rem;
    margin-bottom: 20px;
}
.why .featgrid{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: center;
    gap: 30px;
    margin: 30px 0px;
}
.featgrid .feat{
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px grey;
    justify-content: flex-start;    
    background-color: white;
    overflow: hidden;
    opacity: 0;
}
.featgrid .feat.in-view{
    animation: moveup 0.5s linear forwards calc(var(--pos)*0.1s);
}
.feat p{
    text-align: left;
    font-weight: 600;
    margin-bottom: 0px;
}
.feat img{
    width: 40px;
    height: 40px;
}
.why .linkbtn{
    text-decoration: none;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    background-color: maroon;
    background-image: linear-gradient(crimson, maroon);
    font-weight: bold;
    color: beige;
    margin-top: 30px;
    display: inline-block;
}
.linkbtn:hover{
    background-image: linear-gradient(maroon, crimson);
}


.scrolly{
    background-image: url(siteimg/hotel.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    align-content: center;
    text-align: center;
    min-height: 250px;
    position: relative;
}
.scrolly::before{ 
    content: ""; 
    position: absolute; 
    inset: 0; /* shorthand for top/right/bottom/left:0 */ 
    background: rgba(0, 0, 0, 0.5); /* black overlay, 50% opacity */ 
}
.scrolly div{
    display: flex;
    gap: 20px;
    align-items: center;  
    margin: 0px auto;
    max-width: 85%;
}
.scrolly h3{
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    text-align: left;
    padding: 20px;
    z-index: 8;
}
.scrolly div a{
    text-decoration: none;
    display: inline-block;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    width: max-content;
    padding: 20px;
    border-radius: 10px;
    border: 3px solid white;
    z-index: 8;
    width: 250px;
}
.scrolly div a:hover{
    background-color: rgba(128, 0, 0, 0.7);
}


.program{
    text-align: center;
    min-height: 70vh;
    align-content: center;
    margin: 20px auto;
    max-width: 80%;
}
.program p{
    color: maroon;
    font-weight: 500;
    margin-bottom: 10px;
}
.program h3{
    font-size: 2rem;
    margin-bottom: 20px;
}
.program .proglist{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: center;
    gap: 30px;
    margin: 30px 0px;
}
.proglist .prog{
    padding: 20px;
    text-align: left;
    padding-left: 40px;
    border-radius: 10px;
    position: relative;
    align-content: center;
    box-shadow: 0 0 5px grey;
    opacity: 0;
}
.proglist .prog.in-view{
    animation: moveup 0.5s linear forwards calc(var(--pos)*0.1s);
}
.prog:hover{
    animation: colorshift 0.5s linear forwards;
}
.proglist .prog img{
    position: absolute;
    top: 50%;
    right: 94%;
    transform: translate(0%, -50%);
    width: 40px;
    height: 40px;
    background-color: beige;    
    color: maroon;
    box-shadow: 0 0 5px grey;
    border-radius: 10px;
    padding: 5px;
}
.proglist .prog h3{
    font-size: 1.1rem;
    margin-bottom: 0px;
    font-weight: 600;
}
.program .linkbtn{
    text-decoration: none;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    background-color: maroon;
    background-image: linear-gradient(crimson, maroon);
    font-weight: bold;
    color: beige;
    margin-top: 30px;
    display: inline-block;
}
@keyframes colorshift {
    0%{
        background-color: white;
        color: maroon;
    }
    40%{
        color: white;
    }
    100%{
        background-color: maroon;
        color: beige;
    }
}



.extra{
    text-align: center;
    min-height: 80vh;
    align-content: center;
    margin: 20px auto;
    max-width: 70%;
}
.extra p{
    color: maroon;
    font-weight: 500;
    margin-bottom: 0px;
}
.extra h3{
    font-size: 2rem;
    margin-bottom: 20px;
}
.extrahold{
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 20px;
}
.extrahold .extgrid{
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 10px;
}
.ext{
    box-shadow: 0 0 5px grey;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
}
.extrahold .ext img{
    width: 80px;
    height: 80px;
    margin: 20px;
    position: relative;
    top: 0px;
    left: 0px;
    transform: translate(0%, 0%);
}
.ext h3{
    font-size: 1rem;
    text-align: left;
    margin-bottom: 5px;
    color: maroon;
}
.ext p{
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    color: dimgray;
}
.extrahold div{
    width: 100%;
    height: 100%;
    position: relative;
}
.extrahold .extimg{
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 2px 2px 5px grey;
}
.extrahold .extimg img{
    width: 100%; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.counter{
    background-image: url(siteimg/hotel.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    align-content: center;
    text-align: center;
    min-height: 250px;
    position: relative;
}
.counter::before{ 
    content: ""; 
    position: absolute; 
    inset: 0; /* shorthand for top/right/bottom/left:0 */ 
    background: rgba(0, 0, 0, 0.5); /* black overlay, 50% opacity */ 
}

.counter .counthold{
    margin: 20px auto;
    max-width: 80%;    
    color: white;
    display: flex;
    justify-content: space-around;
}
.counter .count{
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 8;
}
.count img{
    width: 60px;
    height: 60px;
}
.count div{
    text-align: left;
}
.counter .count h3{
    font-size: 3rem;
    font-weight: bolder;
}
.counter .count h3 sup{
    font-size: 2.5rem;
}


.course{    
    background-color: mintcream;
}
.course .coursecontent{
    margin: 20px auto;
    max-width: 80%;
    text-align: center;
    min-height: 80vh;
    align-content: center;
}
.dept{
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 10px;
}
.dept button{
    background-color: white;
    color: black;
    padding: 10px;
    margin: 10px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 0 5px grey;
}
.course p{
    color: maroon;
    font-weight: 500;
    margin-bottom: 0px;
}
.course h3{
    font-size: 2rem;
    margin-bottom: 20px;
}
.coursehold 
{
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 30px;
}
.coursehold .indicou{
    border-radius: 20px;
    box-shadow: 0 0 5px grey;
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-color: white;
}
.indicou h3{
    font-size: 1.25rem;
    margin-bottom: 50px;
}
.indicou div p{
    margin-bottom: 0px;    
    font-weight: 300;
}
.indicou .absbtn{
    position: absolute;
    bottom: 15px;
    right: 25px;
    background-color: maroon;
    border: none;
    border-radius: 50%;
    overflow: hidden;
    background-color: transparent;
    display: none;
}
.indicou:hover .absbtn{
    display: block;
}
.indicou .absbtn img{
    width: 50px;
    height: 50px;    
    border-radius: 50%;
    padding: 5px;
}
.indicou .absbtn:hover img{
    background-color: whitesmoke;
    box-shadow: inset 0 0 5px grey;
}
.course .linkbtn{
    text-decoration: none;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    background-color: maroon;
    background-image: linear-gradient(crimson, maroon);
    font-weight: bold;
    color: beige;
    margin-top: 30px;
    display: inline-block;
    margin-top: 50px;
}




.advantage{
    margin: 30px auto;
    max-width: 80%;
    min-height: 80vh;
    align-content: center;
    display: grid;
    grid-template-columns: 48% 48%;
}
.advcont p:first-child{
    color: maroon;
    font-weight: 500;
    margin-bottom: 0px;
}
.advantage h3{
    font-size: 2rem;
    margin-bottom: 20px;
    width: 75%;
}
.advcont{
    text-align: left;
    align-content: center;
}
.advcont p{
    font-size: 0.9rem;
    font-weight: 500;
    color: grey;
    width: 80%;
}
.advgrid{
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 30px;
    margin: 20px;
    margin-left: 0px;
}
.advgrid div{
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 0 5px grey;
    border-radius: 10px;
    padding: 20px;
}
.advgrid div img{
    width: 30px;
    height: 30px;
}
.advgrid div p{
    font-weight: bold;
    margin-bottom: 0px;
}
.advcont .linkbtn{
    text-decoration: none;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    background-color: maroon;
    background-image: linear-gradient(crimson, maroon);
    font-weight: bold;
    color: beige;
    margin-top: 30px;
    display: inline-block;
    margin-left: 0px;
}
.advantage .advimg{
    text-align: right;
}
.advantage .advimg img{
    height: 650px;    
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow:  2px 2px 5px grey;
}




.placement{
    background-color: mintcream;
}
.placement .placecontent{
    margin: 50px auto;
    max-width: 1300px;
    text-align: center;
    min-height: 60vh;
    align-content: center;
}
.placement p{
    color: maroon;
    font-weight: 500;
    margin-bottom: 0px;
}
.placement h3{
    font-size: 2rem;
    margin-bottom: 20px;
}
.placehold{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-evenly;
}
.placehold div{
    width: 300px;
    height: 300px;
    box-shadow: 0 0 5px grey;
    border-radius: 20px;
    align-content: center;
    overflow: hidden;
    position: relative;    
}
.placehold div:hover{
    animation: shaketab 1s linear forwards;
}
.placehold div img{
    width: 100%;
}
.placehold div p{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
.placehold div::before{ 
    content: ""; 
    position: absolute; 
    inset: 0; /* shorthand for top/right/bottom/left:0 */ 
    background: rgba(0, 0, 0, 0.65); /* black overlay, 50% opacity */ 
}
@keyframes shaketab {
    0%{
        transform: skewY(0deg);
    }
    25%{
        transform:  skewY(3deg);
    }
    50%{
        transform: skewY(0deg);
    }
    75%{
        transform: skewY(-3deg);
    }
    100%{
        transform: skewY(0deg);
    }
}


.faq{
    margin: 50px auto;
    max-width: 80%;
    text-align: center;
    min-height: 60vh;
    align-content: center;
}
.faq p:first-of-type{
    color: maroon;
    font-weight: 500;
    margin-bottom: 0px;
}
.faq h3{
    font-size: 2rem;
    margin-bottom: 20px;
}
.faqhold{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}
.faqhold .ques{
    box-shadow: 0 0 5px grey;
    text-align: left;
    border-radius: 5px;
    overflow: hidden;    
}
.faqhold .ques:hover{
    animation: scaletab 1s linear forwards;
}
.faqhold .ques .head{
    padding: 20px;
    box-shadow: 0 0 5px grey;
    padding-bottom: 8px;
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ques .head p{    
    color: black;
    margin-bottom: 0px;
}
.ques .head img{
    width: 25px;
    border-radius: 50px;
    background-color: white;
}
.ques .answer{
    padding: 20px;
    box-shadow: inset 0 0 5px grey;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: none;
}
.ques .answer p{
    color: dimgray;
    margin-bottom:  0px;
    font-weight: 500;
}
@keyframes scaletab {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.02);
    }
}


.branch{
    background-color: mintcream;
}
.branch .branchcontent{
    margin: 50px auto;
    max-width: 100%;
    text-align: center;
    padding: 50px;
    align-content: center;
}
.branch p{
    color: maroon;
    font-weight: 500;
    margin-bottom: 0px;
}
.branch h3{
    font-size: 2rem;
    margin-bottom: 20px;
}
.branch .branchgrid{
    display: flex;
    grid-template-columns: 20% 20% 20% 20%;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.branch .branchgrid .indbra{
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 5px grey;
    width: 300px;
    padding-left: 20px;
    position: relative;
    justify-content: space-between;
    background-color: white;
}
.branch .branchgrid .indbra:hover{
    animation: shadowshift 1s linear forwards;
}
.branch .branchgrid .indbra div{
    display: flex;
    gap: 10px;
    align-items: center;
}
.branch .branchgrid .indbra div img{
    width: 30px;
    height: 30px;
}
.branch .branchgrid .indbra div p{
    color: maroon;
    margin-bottom: 0px;
    font-weight: bold;
}
.indbra a{
    padding: 5px;
    text-decoration: none;
    display: inline-block;
}
.indbra a img{
    width: 30px;
    height: 30px;
    animation: scaleimg 2s linear infinite ;
}
@keyframes shadowshift {
    0%{
        box-shadow:  0 0 5px grey;
        transform: scale(1);
    }
    100%{
        box-shadow: 2px 2px 5px grey;
        transform: scale(1.05);
    }
}
@keyframes scaleimg {
    0%{
        scale: 1;
    }
    50%{
        scale: 1.2;
    }
    100%{
        scale: 1;
    }
}







.contact{
    background-color: maroon;
}
.contact .contactcontent{
    display: grid;
    grid-template-columns: 20% 30% 30%;
    justify-content: space-evenly;
    gap: 10px;
    color: white;
    margin: 0px auto;
    max-width: 80%;
    padding: 50px;
}
.contact h3{
    font-size: 1.25rem;
    margin-bottom: 15px;
}
.contact .logo{
    padding: 10px;
}
.contact .logo img{
    width: 150px;
}
.contact .logo div{    
    display: flex;
    gap: 10px;
    align-items: center;
}
.contact .logo div a{
    display: inline-block;
    text-decoration: none;
}
.contact .logo div a img{
    width: 30px;
    height: 30px;
}

.privacy{
    width: 90%;
}
.contcont .contflex{
    display: flex;
    gap: 20px;
    align-items: start;
    margin: 10px;
    margin-bottom: 20px;
}
.contcont .contflex img{
    height: 30px;
}
.contcont .contflex p{
    font-size: 1.05rem;
    line-height: 1.5rem;
}






@media only screen and (max-width: 1300px){
    .extra{
        margin: 50px auto;
        max-width: 90%;
    }
   
}




@media only screen and (max-width: 1250px){
    .navdiv{
        max-width: 100%;
    }
    .contact .contactcontent{
        max-width: 100%;
        padding: 50px 20px;
        justify-content: space-between;
    }
    
}





@media only screen and (max-width: 1100px){
    .carasoul{
        min-height: auto;
        height: auto;
    }
    .cont{
        top: 10%;
        width: 98vw;
        text-align: center;
        left: 0%;
    }
    .cont .flexcont{
        justify-content: center;
    }
    .absform{
        display: none;
    }
    .perm{
        display: block;
    }    
    .vidhold video{
        width: 100%;
    }
    .scrolly div{
        flex-direction: column;
        margin: 10px auto;
    }
    .scrolly div h3{
        text-align: center;
        font-size: 1.5rem;
    }
    .scrolly div a{
        padding: 10px;
    }
    .counter .counthold{
        flex-wrap: wrap;
        gap: 25px;
        max-width: 100%;
    }
    .advantage{
        max-width: 98%;
        grid-template-columns: 50% 50%;
    }
    .advcont{
        padding-left: 10px;
    }
    .advgrid{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .contact .contactcontent{
        grid-template-columns: 20% 30% 45%;
    }
}




@media only screen and (max-width: 1000px){
    .why{
        max-width: 100%;
        margin: 50px 20px;
    }
    .why .featgrid{
        gap: 15px;
        grid-template-columns: 32% 32% 32%;
    }
    .program{
        max-width: 100%;
        margin: 50px 20px;
    }
    .program .proglist{
        gap: 15px;
        grid-template-columns: 32% 32% 32%;
    }
    .proglist .prog{
        display: flex;
        gap: 10px;
        align-items: center;
        padding-left: 10px;
        padding: 10px;
        overflow: hidden;
    }
    .proglist .prog img{
        position: relative;
        top: auto;
        right: auto;
        transform: translate(0%,0%);
    }
    .extra h3{
        font-size: 1.25rem;
    }
    .extrahold{
        display: block;
    }
    .extrahold .extimg {
        margin: 20px auto;
        max-width: 100%;
        height: 450px;
    }
}





@media only screen and (max-width: 955px){
    .navdiv div img{
        width: 45px;
    }
    .navdiv .menubar{
        gap: 5px;
    }
    .navdiv div .verflex h1{
        font-size: 1.5rem;
        width: 220px;
    }
    .navdiv div .verflex p{
        font-size: 0.6rem;
    }
    .advantage{
        display: block;
    }
    .advantage .advgrid{
        display: grid;
    }
    .advantage .advimg{
        display: none;
    }
    body{
        padding-top: 55px;
    }
}


@media only screen and (max-width: 850px){
    .navdiv .menubar{
        display: none;
    }
    .navdiv .mobbar{
        display: block;
    }
    .why h3{
        font-size: 1.25rem;
    }
    .why .featgrid{
        grid-template-columns: 49% 49%;
    }
    .why .linkbtn{
        margin: 0px;
        padding: 10px 20px;
    }
    .program .proglist{
        grid-template-columns: 49% 49%;
    }
    .program .linkbtn{
        margin: 0px;
        padding: 10px 20px;
    }
    .program h3{
        font-size: 1.25rem;
    }
    .course .coursecontent{
        max-width: 95%;
    }
    .coursecontent .linkbtn{
        margin: 20px;
        padding: 10px 20px;
    }
    .course .coursehold{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .contact .contactcontent{
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
}






@media only screen and (max-width: 700px){
    .cont h2{
        font-size: 1.5rem;
    }
    .cont .flexcont .feat{
        margin: 10px;
    }
    .cont .flexcont img{
        width: 45px;
        height: 45px;
    }
    .faq{
        max-width: 95%;
    }
}




@media only screen and (max-width: 650px){
    .extrahold div{
        height: auto;
    }
    .extgrid .ext div{
        text-align: center;
        height: auto;
    }
    .ext h3{
        text-align: center;
    }
    .ext p{
        text-align: center;
    }
    .placehold div{
        width: 220px;
        height: 220px;
    }
}




@media only screen and (max-width: 600px){
    .advantage .advgrid{
        display: flex;
        margin-left: 20px;
    }
    .advantage .advcont{
        text-align: center;
    }
    .advantage .advcont h3{
        text-align: center;
        width: 100%;
    }
    .advantage .advcont p{
        text-align: center;
        width: 100%;
    }
    .advantage .linkbtn{
        margin: 0px;
        padding: 10px 20px;
    }
    .branch .branchcontent{
        padding: 50px 20px;
    }
    .branch .branchgrid{
        gap: 12px;
    }
}



@media only screen and (max-width: 500px){
    .counter .counthold{
        flex-direction: column;
        align-items: center;
    }
    .why .featgrid{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .why .featgrid .feat{
        box-shadow: 0 0 5px grey;
    }
    .absform input{
        width: 80%;
    }
    .absform select{
        width: 80%;
    }
    .program .proglist{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .placehold div{
        width: 180px;
        height: 180px;
    }
}