
:root{
    --site-common-white:#fff;
    --site-common-black:#222222;
    --site-common-lightBlack:#38383A;
    --site-common-darkBlack:#000000;
    --site-body-heading:#1E1E1E;
    --site-body-text:#1E1E1E;
    --site-body-text-light:rgba(30, 30, 30, 0.6);
    --site-color-lightBlue:#e9feff;
    --site-color-darkPink:#D2093C;
    --site-color-lightPink:#F7ECF9;
    --site-color-lightPurple:#F3F4FD;
    --site-theme-primary:#3853a5;
    --site-theme-primary-dark:#2c448d;
    --site-theme-accent:#f3c61a;
    --site-theme-accent-dark:#d9b117;
    --site-theme-accent-light:#fffaea;
    --site-theme-secondary:#25163d;
    --site-bg-gray:#F6F6F6;
    --site-bg-gray-2:#F1F1F1;
    --transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, transform 0.3s ;
    --site-font-size:16px;
    --site-font-size-small:14px;

    --font-family-writing:"Playfair Display", serif;
}

body{
  font-family:"Poppins", sans-serif;
  color:var(--site-body-text);

  font-weight:400;
  font-style:normal;
  font-size:var(--site-font-size);
  line-height:28px;
}
a{
  text-decoration:none;
}
/*Buttons*/
.btn{
  border-width:0;
  border-radius:6px;
  transition:all 0.3s ease 0s;
  font-weight:600;
}
.btn-md{
  height:45px !important;
  line-height:45px !important;
  padding:0 20px;
}
.btn-rounded{
  border-radius:30px;
}
.btn-primary{
  background-color:var(--site-theme-primary);
  color:#fff !important;
}
.btn-primary:hover{
  background-color:var(--site-theme-primary-dark);
}
.btn-accent{
  background-color:var(--site-theme-accent);
  color:#000;
}
.btn-accent:hover{
  background-color:var(--site-theme-accent-dark);
  color:#000;
}
h1, h2, h3{
 font-family:"Oswald", sans-serif;
 font-weight:600;
}
/*Header Start*/
.header-area{
  background:#ffffff;
  box-shadow:0 1px 5px rgba(0, 0, 0, .1);
  position:relative;
}
/* .header-sticky.sticky{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:99;
  animation:300ms ease-in-out 0s normal none 1 running stickySlideDown;
  display:block;
  box-shadow:0px 6px 50px rgba(30, 30, 30, 0.1);
} */
.header-top{
  padding:15px 0;
}
.header-left{
  display:flex;
  align-items:center;
}
.header-logo{
  position:relative;
  z-index:1;
  padding-right:21px;
  margin-right:20px;
}
.header-logo img{
  max-height:60px;
}
.header-right{
  display:flex;
  justify-content:flex-end;
  gap:10px;
}
.header-social-links{
  display:flex;
  gap:10px;
}
.header-social-links a{
  display:flex;
  justify-content:center;
  align-items:center;
  color:#fff;
  font-size:30px;
  height:60px;
  width:60px;
}
.header-social-links a:hover{
  opacity:.8;
}
.header-social-links a._fb{
  background-color:#1877f2;
}
.header-social-links a._youtube{
  background-color:#ff0000;
}
.header-contact-info p{
  background-color:var(--site-theme-accent-light);
  font-size:var(--site-font-size-small);
  margin:0;
  display:flex;
  align-items:center;
}
.header-contact-info p + p{
  margin-top:4px;
}
.header-contact-info p i{
  background-color:var(--site-theme-primary);
  color:#fff;
  height:24px;
  width:24px;
  align-items:center;
  justify-content:center;
  display:flex;
  font-size:12px;
}
.header-contact-info p span{
  font-weight:600;
  padding:0 10px;
  flex:1;
}
.header-main-menu{
  background-color:var(--site-theme-primary);
}
.main-menu > ul{
  display:flex;
  list-style:none;
  padding:0;
  margin:0;
  width:100%;
  justify-content:space-between;
}
.main-menu > ul > li{
  margin:0 15px;
  position:relative;
}
.main-menu > ul > li > a{
  font-size:16px;
  color:#fff;
  padding:10px 0;
  font-weight:500;
  display:block;
  text-decoration:none;
}
.main-menu > ul > li:hover > a,
.main-menu > ul > li > a:hover{
  color:var(--site-theme-accent);
}
.main-menu  .dropdown>.dropdown-menu,
.main-menu .dropdown.open>.dropdown-menu{
  display:block !important;
  opacity:0;
  visibility:hidden;
  transition:all ease 0.2s;
}
.main-menu  .dropdown:hover>.dropdown-menu,
.main-menu  .dropdown.open:hover>.dropdown-menu{
  opacity:1;
  visibility:visible; 
}
.main-menu-submenu{
  border-radius:0;
}
.main-menu-submenu a{
  font-size:var(--site-font-size-small);
  color:var(--site-body-text);
}
.main-menu-submenu a:hover{
  background-color:var(--site-theme-accent);
  color:#fff;
}
.header-mobile-toggle{
  display:none;
}
@media (max-width:1024px){
  .header-main-menu{
    display:none;
  }
  .header-mobile-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .mobile-menu-panel .offcanvas-header img{
    max-height:40px;
  }
  .mobile-menu-panel .btn-close{
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .mobile-menu-panel .offcanvas-body{
    border-top:1px solid #ddd;
    display:flex;
    flex-direction:column;
  }
  .mobile-menu{
    list-style:none;
    padding:0;
    margin:0;
  }
  .mobile-menu > li{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    padding:10px 0;
    font-weight:600;
    border-bottom:1px solid #ddd;
  }
  .mobile-menu > li > a{
    flex:1;
    font-size:15px;
    color:var(--site-body-text);
  }
  .mobile-menu > li > i{
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    height:30px;
    width:30px;
    position:relative;
    transition:var(--transition);
  }
  .mobile-menu > li > i.collapsed{
    transform:rotate(180deg);
  }
  .mobile-menu > li ul{
    width:100%;
    list-style:none;
    padding:0;
    margin:0;
  }
  .mobile-menu-submenu > li a{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--site-body-text);
    font-size:var(--site-font-size-small);
    font-weight:500;
    padding:5px 0;
  }
  .mobile-menu-submenu > li a span{
    flex:1;
  }
  .mobile-menu-panel-footer{
    margin-top:auto;
    padding-top:40px;
  }
  .mobile-menu-panel-footer .header-social-links{
    margin-top:15px;
    justify-content:center;
  }
  .mobile-menu-panel-footer .header-social-links a{
    font-size:20px;
    height:40px;
    width:40px;
  }
}
@media (max-width:767px){
  .header-logo img{
    max-height:40px;
  }
  .header-top .header-social-links,
  .header-top .header-contact-info{
    display:none;
  }
  .offcanvas-backdrop{
    display:none !important;
  }
}
/*Header End*/

/*Footer Start*/
.screen_layout_footer{
  background-color:var(--site-theme-primary);
  border-top:4px solid var(--site-theme-accent);
}
.footer-main{
  padding:40px 0;
}
.footer-logo img{
  max-height:45px;
}
.footer-widget-text{
  font-size:var(--site-font-size-small);
  color:#fff;
  opacity:.9;
}
.footer-social ul{
  margin:0px;
  padding:0px;
  list-style:none;
  display:flex;
  gap:10px;
  align-items:center;
}
.footer-social ul li a{
  display:grid;
  width:40px;
  height:40px;
  place-items:center;
  border-radius:4px;
  border:1px solid rgba(30, 30, 30, 0.3);
  font-size:15px;
  border:1px solid #fff;
  color:#fff;
}
.footer-social ul li a:hover{
  background:var(--site-theme-accent);
  color:#111;
  border-color:transparent;
}
.footer-widget-title{
  font-size:20px;
  font-weight:700;
  margin-bottom:20px;
  color:#fff;
}
.footer-widget-list ul{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-widget-list ul li{
    margin-bottom:10px;
}
.footer-widget-list ul li a{
  font-size:var(--site-font-size-small);
  color:#fff;
  opacity:.9;
  font-weight:400;
  line-height:20px;
}
.footer-widget-list ul li a:hover{
  color:var(--site-theme-accent);
}
.footer-widget-contact-info p{
  display:flex;
  gap:10px;
}
.footer-widget-contact-info p > i{
  margin-top:8px;
  color:var(--site-theme-accent);
}
.footer-widget-contact-info p > span{
  font-size:var(--site-font-size-small);
  color:#fff;
  opacity:.9;
  flex:1;
}
.copyright-area{
  border-top:1px solid rgba(30, 30, 30, 0.1);
  padding:30px 0px;
}
.copyright-area{
  font-size:var(--site-font-size-small);
  color:#fff;
  opacity:.9;
}
/*Footer End*/
/*SECTION START*/
.section-bg{
  background-color:var(--site-theme-accent-light);
}
.section-bg-alt{
  background-color:var(--site-color-lightBlue);
}
.section-spacing{
  padding:70px 0;
}
.section-head{
  margin-bottom:30px;
}
.section-head h2{
  font-size:30px;
  padding:0;
  margin:0;
  text-transform:uppercase;
  letter-spacing:2px;
}
.section-head p{
  margin:20px auto;
  max-width:600px;
}
.section-btn{
  margin-top:30px;
}
.image-section img{
  max-width:100%;
}
@media (max-width:1200px){
  .container{
    width:100%;
    max-width:100%;
  }
}
@media (max-width:767px){
  .section-spacing{
    padding:40px 0;
  }
}
@media (max-width:575px){
  .section-spacing{
    padding:20px 0;
  }
}
/*SECTION END*/
/*LANDING PAGE START*/
/*Welcome*/
.lp-welcome{
  background-color:var(--site-theme-secondary);
}
.lp-welcome h1{
  margin:0 0 20px;
}
/*Sideshow*/
.banner-slideshow{
  position:relative;
}
.banner-slideshow .owl-stage-outer{
  overflow:hidden;
}
.banner-slideshow .owl-stage{
  display:flex;
}
.banner-slideshow .disabled{
  display:none !important;
}
.banner-slideshow .owl-dots{
  position:absolute;
  bottom:10px;
  left:0;
  width:100%;
  display:flex;
  justify-content:center;
  gap:10px;
}
.banner-slideshow .owl-dots > div{
  border-radius:50%;
  border:2px solid #fff;
  height:10px;
  width:10px;
}
.banner-slideshow .owl-dots > div.active{
  background-color:#fff;
}
.banner-slideshow .owl-nav div{
  background-color:rgba(255, 255, 255, 0.7);
  border-radius:50%;
  height:60px;
  width:60px;
  cursor:pointer;
  font-size:25px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
}
.banner-slideshow .owl-nav div:hover{
  background-color:#fff;
}
.banner-slideshow .owl-nav div.owl-prev{
  left:10px;
}
.banner-slideshow .owl-nav div.owl-next{
  right:10px;
}
.banner-slideshow-item img{
  width:100%;
  max-height:300px;
  object-fit:cover;
}
@media (min-width:1200px){
  .banner-slideshow-item img{
    max-height:400px;
  }
}
@media (min-width:1400px){
  .banner-slideshow-item img{
    max-height:500px;
  }
}
@media (min-width:1600px){
  .banner-slideshow-item img{
    max-height:550px;
  }
}
@media (max-width:767px){
  .banner-slideshow .owl-nav{
    display:none !important;
  }
}
/*About*/
.lp-about-img{
  text-align:center;
}
.lp-about-img img{
  max-width:100%;
  border-radius:50px 0 50px 0;
  border-width:0 8px 7px 0;
  border-style:solid;
  border-color:var(--site-theme-primary);
}
.habites{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.habites span{ 
  background-color:#ffffff;
  border:1px solid var(--site-theme-accent);
  border-radius:5px;
  padding:6px 10px;
  flex-shrink:190;
  flex-basis:24%;
  flex-grow:660;
}
.habites span b{
  display:block;
}
/*Mission Vision*/
.lp-mission-vision{
  background-attachment:fixed;
  background-position:center center;
  background-size:cover;
  position:relative;
  /* margin-bottom:200px; */
  display:flex;
}
.lp-mission-vision-overlay{
  background-color:#10104E;
  opacity:0.7;
  transition:background 0.3s, border-radius 0.3s, opacity 0.3s;
  inset:0;
  position:absolute;
}

.lp-mission-vision .row{
  position:relative;
  /* margin-bottom:-100px; */
}
.lp-mission-vision article{
  border:2px solid var(--site-theme-accent);
  box-shadow:0 0 30px -10px rgba(111, 110, 110, 0.5);
  background-color:#fff;
  border-radius:20px;
  height:100%;
  padding:25px;
}
.lp-mission-vision article .-head span{
  background-color:var(--site-theme-accent);
  color:#fff;
  font-weight:bold;
  font-size:20px;
  padding:10px 15px;
  display:inline-block;
  border-radius:5px;
}
.lp-mission-vision .-vision article .-head span{
  background-color:var(--site-theme-primary);
}
.lp-mission-vision article p{
  margin-top:20px;
}

/*BOD Section*/
.lp-bod-section{
  background-color:#3854a6;
  position:relative;
}
.lp-bod-section:before{
  content:"";
  background-color:rgba(0, 0, 0, 0.5);
  left:0;
  top:0;
  height:100%;
  width:100%;
}
.lp-bod-item article{
  border-radius:20px;
  padding:15px;
  background-color:#ffffff;
  border:4px solid #f4c71c;
  transition:var(--transition);
  position:relative;
}
.lp-bod-item article:hover{
  box-shadow:0 0 30px -10px rgba(111, 110, 110, 0.5);
  transform:translateY(-5px);
}
.faculty-page-main .lp-bod-item article{
  border-width:2px;
}
.lp-bod-item-thumb img{
  border-radius:20px;
  width:100%;
}
.lp-bod-item-info{
  margin-top:15px;
  text-align:center;
}
.lp-bod-item-info h4{
  font-size:20px;
  margin:0 0 5px;
  font-weight:700;
}
.lp-bod-item-info p{
  color:var(--site-theme-primary);
  font-weight:600;
  margin:0;
}
.lp-bod-item-info p:not(._title){
  font-size:var(--site-font-size-small);
  color:var(--site-body-text-light);
  font-weight:400;
}
/*Counters*/
.lp-counters-section{
  background-color:var(--site-theme-accent-light);
  background-position:bottom center;
  background-size:cover;
}

.lp-counters-item{
  color:#fff;
  text-align:center;
  background-color:var(--site-theme-accent-light);
  padding:20px;
  transition:var(--transition);
}
.lp-counters-item:hover{
  box-shadow:0 0 30px -10px rgba(111, 110, 110, 0.5);
}
.lp-counters-item h3{
  font-size:48px;
  margin-bottom:10px;
}
.lp-counters-item h4{
  font-size:18px;
  font-weight:600;
  text-transform:uppercase;
  color:#ffffff;
  letter-spacing:2px;
}

/*Testimonial*/
.lp-testimonial-section{
  background:var(--site-theme-primary);
  background-size:contain;
}
.lp-testimonial-item{
  padding:30px;
  background:#fff;
  border-radius:10px;
  margin-bottom:10px;
  height:100%;
}
.testimonial-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  height:100%;
}
.lp-testimonial-item-author img{
  height:154px;
  width:154px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid #fff;
}
.lp-testimonial-item-desc{
  font-family:var(--font-family-writing);
  font-size:24px;
  line-height:1.6;
  letter-spacing:0.3px;
  text-align:justify;
  margin-top:10px;
}
.lp-testimonial-item-author{
  text-align:center;
  margin-top:auto;
  padding-top:25px;
}
.lp-testimonial-item-author img{
  border:2px solid var(--site-theme-primary);
  height:50px;
  width:50px;
}
.lp-testimonial-item-author p{
  font-size:var(--site-font-size-small);
  color:var(--site-theme-primary);
  margin:10px 0 0;
}

.lp-testimonial-slider{
  position:relative;
  max-width:800px;
  margin:0 auto;
}
.lp-testimonial-slider .owl-stage-outer{
  border-radius:10px;
  overflow:hidden;
}
.lp-testimonial-slider .owl-stage{
  display:flex;
}
.lp-testimonial-slider .disabled{
  display:none !important;
}
.lp-testimonial-slider .owl-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:20px;
}
.lp-testimonial-slider .owl-dots div{
  border:1px solid #fff;
  border-radius:50%;
  height:8px;
  width:8px;
}
.lp-testimonial-slider .owl-dots div.active{
  border-radius:5px;
  background-color:#fff;
  width:15px;
}
.lp-testimonial-slider .owl-nav div{
  background-color:var(--site-theme-primary);
  border:2px solid #fff;
  color:#fff;
  border-radius:50%;
  cursor:pointer;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  height:40px;
  width:40px;
}
.lp-testimonial-slider .owl-nav div:hover{
  background-color:var(--site-theme-primary-dark);
}
.lp-testimonial-slider .owl-nav div.owl-prev{
  left:-20px;
}
.lp-testimonial-slider .owl-nav div.owl-next{
  right:-20px;
}
/*Gallery*/
.lp-gallery-item article{
  border-radius:20px;
  padding:15px;
  background-color:#fff;
  border:1px solid var(--site-theme-accent);
  transition:var(--transition);
  height:100%;
}
.lp-gallery-item article:hover{
  box-shadow:0 0 30px -10px rgba(111, 110, 110, 0.5);
}
.lp-gallery-item-thumb{
  aspect-ratio:10 / 7;
  border-radius:10px;
  overflow:hidden;
}
.lp-gallery-item-thumb img{
  object-fit:cover;
  height:100%;
  width:100%;
}
.lp-gallery-item-info{
  margin-top:15px;
  text-align:center;
}
.lp-gallery-item-info h4{
  font-size:20px;
  margin:0;
}
.lp-gallery-item-info h4 a{
  color:var(--site-body-text);
}
/*LANDING PAGE END*/
/*BANNER START*/
.site-banner-wrapper{
  background:var(--site-theme-primary);
  background:linear-gradient(0deg, rgba(56, 83, 165, 1) 0%, rgba(108, 126, 186, 1) 100%);
  position:relative;
  width:100%;
  height:250px;
  overflow:hidden;
}
.site-banner-wrapper img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.site-banner-wrapper .banner-content{
  background-color:#0000002e;
  position:absolute;
  top:0;
  height:100%;
  width:100%;
  color:#fff;
  font-size:2.5em;
  font-weight:600;
  text-shadow:2px 2px 6px rgba(0, 0, 0, 0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
}
.site-banner-wrapper .banner-content h1{
  text-transform:uppercase;
  letter-spacing:1px;
}
@media (max-width:1200px){
  .site-banner-wrapper .banner-content h1{
    font-size:2.5rem;
  }
}
@media (max-width:767px){
  .site-banner-wrapper{
    height:150px;
  }
  .site-banner-wrapper .banner-content h1{
    font-size:30px;
  }
}
/*BANNER END*/
/*GALLEY VIEW START*/
.gallery-view-header p{
  font-family:var(--font-family-writing);
  font-size:17px;
  max-width:600px;
  margin:20px auto 0;
}
.gallery-view-photo-item a{
  background-color:var(--site-theme-primary);
  display:block;
  cursor:pointer;
  aspect-ratio:10 / 8;
  border-radius:10px;
  overflow:hidden;
}
.gallery-view-photo-item a span{
  display:block;
  background-size:cover;
  height:100%;
  width:100%;
}
.gallery-view-photo-item a:hover span{
  opacity:.9;
}
/*GALLEY VIEW END*/
/*OUR VALUES START*/
.our-values-item article{
  background-color:#fff;
  padding:20px;
  height:100%;
  transition:var(--transition);
  position:relative;
  border-radius:10px;
  box-shadow:0 0 15px -10px rgba(0, 0, 0, .5);
}
.our-values-item article:hover{
  transform:translateY(-5px);
}
.our-values-item article:hover{
  box-shadow:0 0 30px -10px rgba(111, 110, 110, 0.5);
}
.our-values-item article i img{
  max-height:60px;    
}
.our-values-item article h3{
  margin:30px 0 10px;
  font-size:24px;
}
.our-values-item article p{
  margin:0;
  font-size:var(--site-font-size-small);
}
/*OUR VALUES END*/
/*FORM START*/
.form-errors,
.form-errors ul{
  list-style:none;
  padding:0;
  margin:0;
}
.form-errors{
  margin-bottom:30px;
}
.form-errors  > li{
  padding:10px 15px;
  border:1px solid #f5c6cb;
  border-radius:5px;
  background-color:#f8d7da;
  color:#721c24;
  text-align:left;
  margin-bottom:15px;
  font-weight:600;
}
.form-errors  > li:nth-last-child(1){
  margin-bottom:0;
}
.form-errors  > li li{
  font-size:var(--site-font-size-small);
  font-weight:400;
}
.global_form .form-wrapper{
  margin-bottom:20px;
}
.global_form .form-wrapper:nth-last-child(1){
  margin-bottom:0;
}
.global_form .form-label{
  text-align:left;
  font-weight:600;
}
.global_form input,
.global_form textarea{
  width:100%;
  padding:12px;
  font-size:1em;
  border:1px solid #ccc;
  border-radius:6px;
}
.global_form #submit-wrapper .form-label,
.global_form #submit_signup-wrapper .form-label{
  display:none;
}
.global_form #submit-wrapper button,
.global_form #submit_signup-wrapper button{
  background-color:var(--site-theme-primary);
  color:#fff;
  padding:14px;
  border:none;
  border-radius:6px;
  font-size:1em;
  cursor:pointer;
  transition:background-color 0.3s ease;
  width:100%;
}
.global_form #submit-wrapper button:hover,
.global_form #submit_signup-wrapper button:hover{
  background-color:var(--site-theme-primary-dark);
}
/*FORM END*/
/*CONTACT PAGE START*/
.contact-banner img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  max-height:250px;
}
.contact-section{
  background:#fff;
  border-radius:12px;
  padding:3rem;
  box-shadow:0 10px 30px rgba(0, 0, 0, 0.08);
  max-width:700px;
  width:100%;
  position:relative;
  overflow:hidden;
  transform:translateY(0);
  opacity:1;
  animation:fadeInUp 0.6s ease;
  text-align:center;
  margin:0 auto;
}
@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.contact-section h1{
  font-size:2.5em;
  margin-bottom:10px;
}
.contact-section p{
  margin-bottom:30px;
  font-size:1.1em;
  color:#555;
}
.contact-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-map iframe{
  border-width:0;
  padding:0;
  height:400px;
  width:100%;
}
.contact-card{
  background:#fff;
  border-radius:10px;
  box-shadow:0 4px 20px rgba(0, 0, 0, 0.1);
  padding:30px 20px;
  width:100%;
  text-align:center;
  height:100%;
  transition:transform 0.3s ease;
}
.contact-card:hover{
  transform:translateY(-5px);
}
.contact-card i{
  background-color:var(--site-theme-primary);
  font-size:30px;
  color:#fff;
  border-radius:50%;
  display:block;
  align-content:center;
  height:60px;
  width:60px;
  margin:0 auto 20px;
  transition:transform 0.3s ease;
}
.contact-card:hover i{
  background-color:var(--site-theme-accent);
}
.contact-card h3{
  margin:10px 0;
  font-size:1.3rem;
}
.contact-card p{
  font-size:var(--site-font-size-small);
  line-height:1.6;
}
.contact-card p + p{
  margin-top:5px;
}
@media (max-width:768px){
  .contact-page-middle{
    flex-direction:column;
    align-items:center;
  }
}
/*CONTACT PAGE END*/

/*PDF GRID START*/
.pdf-item article{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  background-color:#fff;
  padding:20px;
  height:100%;
  transition:var(--transition);
  position:relative;
  border-radius:10px;
  box-shadow:0 0 15px -10px rgba(0, 0, 0, .5);
}
.pdf-item article:hover{
  transform:translateY(-5px);
}
.pdf-icon{
  background-color:#ff4747;
  border-radius:50%;
  width:100px;
  height:100px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}
.pdf-icon i{
  color:#fff;
  font-size:36px;
}
.pdf-label{
  font-size:16px;
  font-weight:600;
}
.pdf-item article ._btn{
  padding-top:20px;
  margin-top:auto;
  width:100%;
}
.pdf-item article ._btn .btn{
  width:100%;
}
@media (max-width:575px){
  .pdf-item article{
    flex-direction:row;
    gap:15px;
  }
  .pdf-icon{
    width:60px;
    height:60px;
    margin:0;
  }
  .pdf-label{
    text-align:left;
    flex:1;
    margin:0;
  }
  .pdf-item article ._btn{
    width:auto;
    padding:0;
    margin:0;
  }
}
/*PDF GRID END/
/*See Structure Start*/
.fee-structure{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}
.fee-structure .accordion{
  background-color:#fff;
  border-radius:5px;
  overflow:hidden;
  box-shadow:0 0 8px rgba(0, 0, 0, 0.05);
}
.fee-structure .accordion-item{
  border-bottom:1px solid #eee;
}
.fee-structure .accordion-header{
  padding:15px 20px 15px 30px;
  background-color:#fff;
  cursor:pointer;
  text-align:left;
  font-weight:600;
  position:relative;
}
.fee-structure .accordion-header::before{
  content:'+';
  position:absolute;
  left:10px;
  color:var(--site-theme-primary);
  font-weight:bold;
}
.fee-structure .accordion-header.active::before{
  content:'-';
}
.fee-structure .accordion-content{
  display:none;
  padding:15px 20px;
  background-color:#fff;
  text-align:left;
  color:#333;
}
.fee-structure .note-box{
  margin-top:40px;
  border:1px solid var(--site-theme-primary);
  background-color:#fff;
}
.fee-structure .note-title{
  background-color:var(--site-theme-primary);
  color:#fff;
  padding:10px 15px;
  font-weight:600;
  text-align:left;
}
.fee-structure .note-content{
  padding:15px;
  font-size:15px;
  text-align:left;
}
.fee-structure .note-content p{
  margin-bottom:10px;
}
/*See Structure End*/

/*ADMIN LOGIN START*/
.custom_form{
  background:#fff;
  border-radius:12px;
  padding:3rem;
  box-shadow:0 10px 30px rgba(0, 0, 0, 0.08);
  max-width:700px;
  width:100%;
  position:relative;
  overflow:hidden;
  transform:translateY(0);
  opacity:1;
  animation:fadeInUp 0.6s ease;
  text-align:center;
  margin:0 auto;
}
.custom_form h3{
  margin-bottom:20px;
}
.required_login_form #forgot-label{
  display:none;
}

/*ADMIN LOGIN END*/

/*PAGES HTML START*/
.layout_websitepage_image_left > h3,
.layout_websitepage_image_right > h3,
.layout_websitepage_no_image > h3{
  display:none !important;
}

.habits{
  list-style-type:decimal;
}
.habits li{
  font-size:17px;
}
.habits li + li{
  margin-top:15px;
}
.html-block ul,
.html-block ol{
  padding-left:22px;
  margin-top:0;
}
.html-block ul li + li,
.html-block ol li + li{
  margin-top:10px;
}
.table_wrap table{
  background-color:#fff;
}
.table_wrap table th{
  background-color:var(--site-theme-primary);
  color:#fff;
  vertical-align:middle;
  line-height:1.2;
}
.table_wrap table th,
.table_wrap table td{
  border:1px solid #ddd;
  padding:5px  20px;
}
.layout_websitepage_no_image .container > .row > .col-lg-9{
  border:2px solid var(--site-theme-primary);
  background-color:#fff;
  padding:20px;
}
.layout_websitepage_no_image img{
  border-radius:10px;
}
.house-system{
  margin-bottom:20px;
}
.house-system article{
  border-radius:10px;
  color:#fff;
  padding:20px;
  height:100%;
}
.house-system  > div:nth-child(3) article{
  color: #000;
}
.house-system article p{
  margin:0;
}
.house-system article p._title{
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
/*PAGES HTML END*/