@import url('variables.css');
html{
    font-family: var(--font-family-base);
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-family-base);
    background-color: var(--background-body);
    font-size: var(--font-size-body);
    color: var(--color-dark);
	overflow-x:hidden;
}  
h1,h2,h3,h4,h5,h6{
    font-family: var(--font-family-base);
}
h1{
    font-family: var(--font-family-base);
    font-size: var(--font-size-h1);
    line-height: var(--line-height-h1);
    color: var(--color-title);
    font-weight: 700;
}
h2{
    font-family: var(--font-family-base);
    font-size: var(--font-size-h2);
    line-height: var(--line-height-h2);
    color: var(--color-title);
    font-weight: 700;
}
h3{
    font-family: var(--font-family-base);
    font-size: var(--font-size-h3);
    line-height: var(--line-height-h3);
    color: var(--color-title);
}
h4{
    font-family: var(--font-family-base);
    font-size: var(--font-size-h4);
    line-height: var(--line-height-h4);
    color: var(--color-title);
}
h5{
    font-family: var(--font-family-base);
    font-size: var(--font-size-h5);
    line-height: var(--line-height-h5);
}
h6{
    font-family: var(--font-family-base);
    font-size: var(--font-size-h6);
    line-height: var(--line-height-h6);
}
p{
    font-family: var(--font-family-base);
    font-size: var(--font-size-p);
    line-height: var(--line-height-p);
    color: var(--color-dark);
}
a{
    font-family: var(--font-family-base);
    font-size: var(--font-size-a);
    color: var(--color-dark);
    text-decoration: none;
}

.site_logo{
    width: 100px;
}
.primary_button {
    font-size: var(--font-size-button-primary);
    color: var(--font-color-button-primary);
    padding: var(--spacing-button-primary);
    border-radius: var(--radius-button-primary);
    border: var(--border-button-primary);
    background-color: var(--background-button-primary);
    font-weight: 700;
}
.primary_button:hover {
    background-color: var(--background-button-hover-primary);
    color: var(--font-color-button-hover-primary);
    border: var(--border-button-hover-primary);
}
.secondary_button {
    font-size: var(--font-size-button-secondary);
    color: var(--font-color-button-secondary);
    padding: var(--spacing-button-secondary);
    border-radius: var(--radius-button-secondary);
    border: var(--border-button-secondary);
    background-color: var(--background-button-secondary);
}
.secondary_button:hover {
    background-color: var(--background-button-hover-secondary);
    color: var(--font-color-button-hover-secondary);
    border: var(--border-button-hover-secondary);
}
.third_button {
    font-size: var(--font-size-button-third);
    color: var(--font-color-button-third);
    padding: var(--spacing-button-third);
    border-radius: var(--radius-button-third);
    border: var(--border-button-third);
    background-color: var(--background-button-third);
}
.third_button:hover {
    background-color: var(--background-button-hover-third);
    color: var(--font-color-button-hover-third);
    border: var(--border-button-hover-third);
}
.flex{
    display: flex;
}
.flex1{
    display: flex;
    flex-wrap: wrap;
}

/* Equal height columns */
.equal-height-row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .equal-height-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
  }
  
  /* Inner content box */
  .equal-box {
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  
/*Header Css*/
.header_top {
    background-color: #EAEAEA;
    padding: 12px 0px;
}
.header_top .carrer-main i{
	color:#fff;
	font-size:14px;
	
}
.header_top .carrer-main{
padding:3px 10px;	
}
.text-left{
    text-align: left;
}
.contact_link a{
    font-size: 14px;
    font-weight: 300;
}
.contact_link i{
    color: #54B452;
}
.social_icon{
    display: flex;
    justify-content: end;
    gap: 13px;
    align-items: center;
}
.social_icon i{
    color: #54B452;
    font-size: 30px;
}
.middle_header_title h2{
    color: #54B452;
    margin-bottom: 0;
}
.middle_header_title p{
    font-weight: 700;
    font-size: 14px;
    color: #000000;
    margin-bottom: 0;
}
.middle_header_title .last_text {
    font-weight: 800;
    color: #011A99;
    font-size: 15px;
}
.header_middle{
    padding: 20px 0;
}
.header_sec .navbar-nav {
    gap: 50px;
}
.header_sec{
    position: sticky;
    background-color: #54B452;
    top: 0;
    z-index: 999;
}
.blur_green_img{
    position: absolute;
    width: 100%;
    top: auto;
    left: 0;
}
.header_sec .nav-link{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/*Footer Css*/
.footer_sec{
    color: #fff;
    background-image: url(../img/footer-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: var(--spacing-lg);
    position: relative;
    z-index: 9;
   
}
.footer_top_img {
    width: 100%;
    margin-bottom: -2px;
}
.footer_sec p {
    color: white;
}
@media(max-width:991px){
	.footer_top_img {
    width: 100%;
    margin-bottom: -3px;
}
}
@media(max-width:767px){

.footer_top_img {
 
    margin-bottom: -20px;
}	
}
.footer_sec p{
    font-size: 16px;
}
.foot_social p{
    font-weight: 700;
    color: #fff;
}
.foot_social i{
    font-size: 25px;
    color: #fff;
}
.foot_social a{
    margin-right: 12px;
}
.foot_links{
    padding: 0;
    list-style: none;
}
.foot_links a{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    display: inline-block;
}
.foot_bottom{
    background-image: url(../img/foot_bottom_bg.png);
    background-size:contain;
        padding: 62px 0px 30px;
    width: 100%;
    background-position: bottom;
	    background-repeat: repeat-x;
	position:relative;
	z-index:11;
	margin-top:-50px;
}
.foot_white_shad {
    position: absolute;
    top: 49px;
    right: 0;
	z-index:-1;
}
/*Hero Section*/
.hero_sec{
    position: relative;
	
}
.hero_sec .swiper-slide{
	height:auto !important;
	display:unset !important;
}
.hero_sec .swiper-button-next:after, .hero_sec .swiper-button-prev:after{
	filter: brightness(0) invert(1) !important;
}
.hero_sec .banner-slider img{
	height:90vh;
	width:100%;
	object-fit:cover;
}
@media (min-height: 1200px) {
  .hero_sec .banner-slider img {
   height:50vh;
  }
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after
.grass_img {
    position: absolute;
    bottom: -1px;
    z-index: 999999;
    left: 0;
    width: 100%;
}
.icon_with_text{
    position: relative;
    text-align: center;
}
.icon_with_text h6{
    margin-top: 10px;
}
.icon_with_text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 40px; /* change this to control height */
    border-right: 1px solid #E0E0E0; /* or your desired color */
  }

  .row > .col-md-3:last-child .icon_with_text::after {
    display: none;
  }
.card_sec{
	position:relative;
	z-index:1;
}
  .card_sec .row{
    background: #fff;
    box-shadow: 0px 1px 0px 1px #EAEAEA;
    border-radius: 10px;
    padding: 20px 0px;
    position: relative;
    bottom: 60px;
  }

  /*About Section*/
  .about_sec{
    position: relative;
    padding: var(--spacing-lg);
  }
  img.img-fluid.left_pan {
    position: absolute;
    top: -32px;
    z-index: -999;
}
img.img-fluid.right_pan {
    position: absolute;
    top: -16%;
    right: 0;
    z-index: -9;
    width: 21%;
}
  .about_sec h2{
    font-weight: 400;
    height: auto;
  }
  .about_client h6{
    font-size: 16px;
    font-weight: 700;
    color: #101010;
    margin-top: 10px;
  }
 .about_client{
    background: #F1FFEB;
    border: 1px solid #A4DFA3;
    border-radius: 10px;
    padding: 50px 20px;
    margin-top: 15px;
 }
 .about_content2{
    background: #fff;
    border: 1px solid #A4DFA3;
    border-radius: 10px;
    padding: 40px 20px !important;
    margin-top: 15px;
 }
  .about_client p{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
  }
  .about_client h5{
    color: #54B452;
    font-weight: 700;
  }
  .about_content p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
  }
  .read_more {
    text-align: end;
  }
  .read_more a {
    color: #CC1100;
    border-bottom: 1px solid;
    font-weight: 700;
    font-size: 14px;
}
.blog_list li{
    font-size: 18px;
    color: #54B452;
    font-weight: 400;
}

.blog_list a{
    font-size: 18px;
    color: #54B452;
    font-weight: 400;
}
.blog_list li p{
    font-size: 14px;
    color: #000;
    font-weight: 400;
}
.c_flex{
    display: flex;
    gap: 30px;
}
.equal-box p.text-muted{
	color:#101010 !important;
}
/*Agricultural Section*/
.agricultural_sec{
    position: relative;
}
.agri_title_sec h2{
    font-weight: 300;
}
.agri_pan {
    position: absolute;
    top: -8%;
    right: 0;
    z-index: -9;
    width: 10%;
}
.agri_title_sec h5{
    font-weight: 400;
}
.flex-half > * {
    width: 49%;
}
.flex-half{
    justify-content: space-between;
}
.flex-half2 > * {
    width: 49%;
}
.flex-half2{
    justify-content: space-between;
}
.image_content {
    background: #F1FFEB;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.image_content a{
    font-size: 30px;
}
.image_content a:hover{
    color: #000;
}
.ppx-0{
    padding-left: 0;
    padding-right: 0;
}
.image_content2 {
    background: #54B452;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.image_content2 p {
    color: #fff;
}
.image_content2 a{
    font-size: 30px;
    color: #fff;
}
.image_content2 a:hover{
    color: #000;
}

.image_set {
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  
  .zoom-img {
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
	  object-fit:cover;
  }
  
  .image_set:hover .zoom-img {
    transform: scale(1.1);
  }

.video-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 98%;
    overflow: hidden;
    cursor: pointer;
  }

.video-wrapper iframe{
	height:100vh;
}

  .video-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
  }

  .video-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
  }

  .video-overlay h5 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-weight: 400;
}

  .video-overlay i {
    font-size: 3rem;
  }
  .video_sec{
   padding: var(--spacing-sm);
  }
  iframe {
    width: 100%;
    height: 100%;
  }

  /*Blog Section*/
  .blog{
    width: 100%;
  }
  .blog img{
    border-radius: 10px;
  }
  .blog h6{
    color: #54B452;
    font-weight: 700;
    margin-top: 10px;
  }
  .blog p{
    font-size: 14px;
  }
  .blog_sec{
    background-image: url('../img/blog_bg.png');
    background-size: cover;
    background-position: center;
    padding: var(--spacing-lg);
  }
  .roted-180{
    transform: rotate(-45deg);
    margin-left: 5px;
  }

  .blog_links li a{
    color: #54B452;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
  }
  .blog_links li p{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
  }
  .blog_links li {
    border-bottom: 1px solid #A4DFA3;
}
.blog_links li:last-child {
    border-bottom: 0;
}
.swiper-wrapper {
    height: auto;
    margin-bottom: 20px;
}
.swiper-pagination-bullet-active{
    background-color: #54B452E5;
}
.swiper-pagination-bullet{
    opacity: 1;
}
.pl-0{
    padding-left: 0;
}
.pr-0{
    padding-right: 0;
}
.fixd_btn {
    background: #59a84a;
    border: 0;
    padding: 15px 15px 15px 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 50%;
    z-index: 999999999999;

}
.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0;
    transition: var(--bs-navbar-toggler-transition);
    padding: 7px 13px;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.dropdown-toggle::after{
    display: none;
}

/* 🔹 Hide default Bootstrap caret */
.custom-toggle::after {
    display: none !important;
  }
  
  /* 🔹 Base dropdown styles */
  .custom-dropdown {
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    transition: all 0.3s ease;
  }
  
  /* 🔹 Dropdown items */
  .custom-dropdown .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
    position: relative;
  }
  
  .custom-dropdown .dropdown-item:hover {
    background-color: #f0f0f0;
    color: #007bff;
    padding-left: 25px;
  }
  
  /* 🔹 Hover effect for dropdown (desktop only) */
  @media (min-width: 992px) {
    .dropdown:hover .custom-dropdown {
      display: block !important;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  
    .custom-dropdown {
      display: block !important;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      position: absolute;
      z-index: 1000;
    }
  
    .dropdown:hover .fa-angle-down {
      transform: rotate(180deg);
      transition: 0.3s ease;
    }
  }
  
  .banner-section{
    background: var(--color-light);
    font-weight: 400;
}
.cms .grid{
    display:grid;
    gap: 25px;
    margin-bottom: 35px;
}
.cms .grid.object-fit img,.cms .grid.object-fit a{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cms .object-fit img,.cms .object-fit a{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.common-slider.swiper-initialized{
	padding-bottom: 30px;
}
.cms .grid.grid-2{
    grid-template-columns: 1fr 1fr;
}
.cms .grid.grid-3{
    grid-template-columns:1fr 1fr 1fr;
}
.cms .grid.grid-4{
    grid-template-columns:1fr 1fr 1fr 1fr;
}
.cms .column-2{
    column-count: 2;
	column-gap:30px;
}
@media(max-width:992px){
    .cms .grid.grid-4{
        grid-template-columns:1fr 1fr;
    }

}
@media(max-width:767px){
    .cms .column-2{
        column-count: 1;
    }
	.swiper-button-next:after, .swiper-button-prev:after{
		font-size: 30px;
	}
	.card_sec .col-md-3.col-6:nth-child(2) .icon_with_text::after{
		content:none;
	}
.video-wrapper .video-svg svg{
		    width: 40px !important;
    height: 40px !important;
	}

}
@media(max-width:575px){
    .cms .grid.grid-2{
        grid-template-columns: 1fr;
    }
    .cms .grid.grid-4{
        grid-template-columns:1fr;
    }
}

.cms .main-title,.about-content h2, .about-content .title{
    font-weight: 700;
    margin-bottom: 20px;
	font-size:30px;
	color:#469144;
}

.cms .sub-title{
    margin-bottom: 20px;
}
.cms table{
    width: 100% ;
    border-collapse: collapse;
}

.cms table td{
    padding: 15px;
    border: 1px solid rgba(82,180,130,0.3);
}

.cms table th{
    padding: 15px;
    background-color:var(--color-primary);
    color:#fff;
    border-left: 1px solid rgba(255, 255, 255, 0.5) !important;
}
@media (max-width: 1199.98px) {
    .cms .table-responsive table {
        min-width: 1000px;
    }
}

.img-txt .img img{
	max-width:240px;
	border-radius:15px;
}
.img-txt .right-text{
	padding-left:50px;
	margin-left:50px;
	border-left:1px solid #101010;
}
.img-txt .title{
	font-weight:400;
}

@media(max-width:1199px){
	.img-txt .right-text{
	padding-left:0px;
	margin-left:0px;
    margin-top:40px;
	border-left:none;
}
}
@media(max-width:991px){
	.cms .main-title{
	font-size:25px;
}
	.common-template .text p{
		font-size:18px;
	}
}
body .thumbnail-container,
body .thumbnail_container {
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 0;
}

body .thumbnail {
    margin: 0;
    display: block;
    padding: 0;
    border: none;
    height: 100%;
    width: 100%;
    position: absolute;
    background: 0 0;
}

body .thumbnail a,
body .thumbnail img {
    display: block;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
}
.common-slider .thumbnail-container{
	padding-bottom:67.67%;
	background:rgba(0,0,0,0.05);
}
.common-slider2{
	padding-bottom:20px;
}

.common-slider2 .thumbnail-container{
	padding-bottom:95%;
	background:rgba(0,0,0,0.05);
}
.common-slider2 .thumbnail-container img{
	object-fit:cover !important;
}
@media(max-width:767px){
	.gallery-section .common-slider2 + .gap-20{
	padding:10px 0;
}
}
.gap-30 + .gap-30 {
    padding: 0;
	display:none !important;
}
.gap-20 + .gap-20 {
    padding: 0;
	display:none !important;
}

.faculty-details {
    padding: 60px 0;
}
.faculty-details ul{
    padding-left: 20px;
}
.faculty-details .social-icon{
    list-style: none;
    align-items: center;
}
.faculty-details .social-icon li a img{
	height:35px !important;
	width:35px !important;
}
.faculty-inner-pages{
    display: flex;
    gap: 50px;
    align-items: start;
}
.faculty-inner-img img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: top;
}
.faculty-inner-content h3 {
    font-size: 24px;
    font-weight: 700;
}
.faculty-inner {
    margin-top: 25px;
}
  .semester {
      font-weight: bold;
      text-align: center;
    }
@media(max-width:767px){
    .faculty-inner-pages{
        display: block;
    }
    .faculty-inner-content{
        margin-top: 25px;
    }
	.about-section .content p{
		font-size:18px;
	}
	    .statement-box li, .statement-box p , .president-content  p, .right-text p, .bottom-text p, .text p, .admission-section p, .video_sec .image_content p, .image_content2 p, .agri_title_sec p{
        font-size: 18px !important;
    }
	 .image_content2 a {
        font-size: 20px !important;
    }
	.blog_links li a{
		    font-size: 16px !important;
	}
	.paragraph-text{
		font-size:16px;
	} 
}

.page-spacing{
	padding:80px 0;
}
@media(max-width:1199px){
.page-spacing{
	padding:70px 0;
}	
}
@media(max-width:767px){
.page-spacing{
	padding:40px 0;
}	
}
p:last-child {
    margin: 0;
}

/*Search CSS Start*/
   #search {
     position: fixed;
     top: 0px;
     left: 0px;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.7);
     -webkit-transition: all 0.5s ease-in-out;
     -moz-transition: all 0.5s ease-in-out;
     -o-transition: all 0.5s ease-in-out;
     -ms-transition: all 0.5s ease-in-out;
     transition: all 0.5s ease-in-out;
     -webkit-transform: translate(0px, -100%) scale(0, 0);
     -moz-transform: translate(0px, -100%) scale(0, 0);
     -o-transform: translate(0px, -100%) scale(0, 0);
     -ms-transform: translate(0px, -100%) scale(0, 0);
     transform: translate(0px, -100%) scale(0, 0);
     z-index: 99999;
     opacity: 0;
     -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
 #search input[type="search"] {
    width: 100%;
    color: #fff;
    background: rgba(0, 0, 0, 0);
    font-size: 23px;
    font-weight: 300;
    text-align: center;
    border: 1px solid #fff;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    border-radius: 50px;
    padding: 10px 53px;
    text-align: left;
}

#live-search-form{
	 position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50px;
    padding: 10px 53px;
    text-align: left;
	 width: 67%;
}

#search:focus-visible{
    border: none;
}
::placeholder{
    color: #000;
}

 #search .btn {
      position: absolute;
    top: 55%;
    left: 50%;
    background-color: limegreen;
    border: black;
    padding: 10px 35px;
    font-size: 18px;
    transform: translate(-50%, -50%);
}

 #search .close {
     position: fixed;
     top: 15px;
     right: 15px;
     color: #fff;
     background-color: limegreen;
     border-color: green;
     opacity: 1;
     padding: 10px 17px;
     font-size: 27px;
}
 #search.open {
     -webkit-transform: translate(0px, 0px) scale(1, 1);
     -moz-transform: translate(0px, 0px) scale(1, 1);
     -o-transform: translate(0px, 0px) scale(1, 1);
     -ms-transform: translate(0px, 0px) scale(1, 1);
     transform: translate(0px, 0px) scale(1, 1);
     opacity: 1;
}
div#live-search-results {
    background: #c9d9c942;
    color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
}
#live-search-results a{
	color:#fff !important;
}
#live-search-results li{
	margin-bottom: 10px !important; 
    padding-bottom: 10px !important;
}
#live-search-results li span{
	color: #32cd32 !important;
	font-weight:600 !important;
}
@media (max-width: 768px) {
     #live-search-form{
        width: 100%;
        font-size: 20px;
     }
}
/*Search CSS End*/

.announcement-item{
	border: 1px solid #52b559;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
	transition: all 0.3s linear;
}
.announcement-title {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    gap: 10px;
	padding: 15px 0px;
}
.announcement-item:hover .announcement-title {
    background: var(--color-primary);
    transition: all 0.3s linear;
}
.readmorearrow a {
    font-size: 14px;
    line-height: 26px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    align-items: center;
    gap: 5px;
    background-color: var(--color-primary);
    display: flex;
    aspect-ratio: 1 / 1;
    padding: 6px;
    border-radius: 500px;
    width: 21px;
}
.readmorearrow a, .readmorearrow a path {
    transition: all 0.3s linear;
}
.announcement-item:hover .readmorearrow a{
    background-color: var(--color-light);
}
.page-template-tpl-announcemnt .banner-section{
	    margin-bottom: 50px;
}
.contact_link a{
	    margin-right: 30px;
}
.section-spacing{
	padding:0;
	position:relative;
}
.section-spacing{
  padding:60px 0;
}

.section-spacing:nth-child(even)::after{
	content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
    top: 0;
    background: #a4dfa32e;
	z-index:-1;
}

@media(max-width:767px){
	.section-spacing{
		padding:30px 0;
	}
	    .cms .table-responsive table {
        min-width: 100%;
    }
}
.page-template-tpl-common .main-title,.page-template-tpl-admission .main-title{
	margin-bottom:10px;
}
.ul-space li + li{
	margin-top:10px;
}
.cms .main-title::before,.about-section .title::before{
	content:"- ";
}
.cms .main-title:empty,.about-section .title:empty{
	display:none;
}
.error-page .box{
	max-width:700px;
	margin:0 auto;
}
.error-page .num{
	color:#54b452;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:150px;
}
.error-page .num .icon{
	margin:-5px 6px 0 0;
}
.error-page .num svg{
	height:150px;
	width:150px;
}
.error-page .sub-title{
	font-size:35px;
	margin:20px 0 10px;
}
.error-page .btn-wrap{
	margin-top:35px;
}
.error-page .btn-wrap .primary_button{
	padding:10px 20px;
	font-size:18px;
}
.content p{
	text-align: justify;
}
.footer_sec iframe {
    height: 200px;
}
.foot_social{
	margin-bottom: 18px;
}
#wpcf7-f1373-o1 p:has(>.wpcf7-submit){
	margin-bottom:0;
}
#wpcf7-f1373-o1{
	  overflow: hidden;
    background: #ffffff7d;
    padding: 20px 15px;
	 border-radius: 7px;
}

input {
       padding: 5px 10px;
    width: 100%;
    border: 1px solid #b3c5b0;
    border-radius: 6px;
    font-size: 14px;
	    border-radius: 7px;
}

textarea {
    resize: vertical;
    width: 100%;
    height: 101px;
    padding: 10px;
	border: 1px solid #b3c5b0;
    border-radius: 6px;
    font-size: 14px;
}
.wpcf7-submit:hover{
   background:#54B452;
	color:#fff;
	transition:0.5s;
}
.wpcf7 form .wpcf7-response-output{
	    color: black;
    font-size: 14px;
	    margin: 0;
}
.wpcf7 .wpcf7-spinner{
	display:none;
}
@media(max-width:767px){
	.error-page .sub-title{
		font-size:22px;
	}
	.error-page .num svg{
	height:100px;
	width:100px;
}
	.error-page .num{
		font-size:100px;
	}
}
.link-text li + li{
	margin-top:15px;
	padding-top:15px;
	border-top:1px solid rgba(0,0,0,0.1);
}
.link-text .link a{
	
	color:#011A99;
	transition:0.5s;
}
.link-text .link a:hover{
	color:#59a84a;
}
.banner-section + .common-template{
	padding-top:60px;
}
.common-template:has(+.f-img){
	padding-bottom:60px;
}
.College-main-image img{
	    height: 100%;
    object-fit: cover;
    padding-right: 20px;
}
.College-main-image h5{
	display:none;
}
@media(max-width:767px){
.banner-section + .common-template{
	padding-top:30px;
}
	.common-template:has(+.f-img){
	padding-bottom:30px;
}
}
.grid-wrap-main{
	display:grid;
	grid-template-columns:1fr 1fr 1fr 1fr;
	gap:25px;
}
.grid-wrap-main .thumbnail-container{
	padding-bottom:75%;
	background:#a4dfa326;
}
@media(max-width:1199px){
.grid-wrap-main{

	grid-template-columns:1fr 1fr 1fr;

}
	.image_content2, .image_content{
		padding: 18px 16px;
	}
	.image_content a, .image_content2 a {
    font-size: 22px;
}
}
@media(max-width:991px){
.grid-wrap-main{

	grid-template-columns:1fr 1fr;

}	
	.primary_button{
		font-size: 14px;
        padding: 12px;
	}
	
}
@media(max-width:575px){
.grid-wrap-main{
    gap:15px;
	grid-template-columns:1fr;

}	
}
.right-text p, .bottom-text p, .text p, .admission-section p, .admission-section li{
	text-align:justify;
}
.live-visitors-count{
	    font-family: var(--font-family-base);
    font-size: 18px;
    line-height: var(--line-height-p);
    color: white;	
    display: inline-block;
    padding: 2px 22px;
    font-weight: 900;
}
.fb-icon i{
	color:#1877F2;
}

.page-id-1148 .cms .main-title{
	margin-top: 25px;
}
@media(max-width:500px){
	.hero_sec .banner-slider img{
			height: 45vh;
	}
}

.visitor-count {
    color: #f0f0f0 !important;
	font-weight: bold;
	    font-size: 20px;
}
.page-template-tpl-announcemnt .announcement-title, .page-template-tpl-events .announcement-title, .page-template-tpl-news  .announcement-title{
	    padding: 15px 20px;
}
.page-id-1674 .text h3, .page-id-1688 .text h3{
	color: var(--web-black);
    font-size: 22px;
    line-height: 26px;
    font-weight: 800;
    font-family: var(--web-font-family);
    margin-bottom: 22px;
}
@media(max-width:1199px){
	.message-section h2 {
        font-size: 45px !important;
        line-height: 58px !important;
    }
	.foot_bottom{
		margin-top:-60px;
	}
}
@media(max-width:991px){
	.foot_bottom{
		background-image:none;
		background-color:#4CA34B;
		padding:30px 0;
		margin-top:-2px;
	}
}
.page-template-tpl-events .announcement-image img, .page-template-tpl-news .announcement-image img{
    height: 250px;
    object-fit: cover;
}
.page-template-tpl-events .announcement-title h2, .page-template-tpl-news .announcement-title h2, .page-template-tpl-announcemnt .announcement-title h2{
line-height: 22px;
}
.page-template-tpl-events .announcement-item:hover .announcement-title a, .page-template-tpl-news .announcement-item:hover .announcement-title a, .page-template-tpl-announcemnt .announcement-item:hover .announcement-title a  {
	    color: var(--color-dark);
}

.common-box .box{
	border-radius:15px;
	height:100%;
	background:#a4dfa329;
	padding:20px;
	    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	
}
.common-box .box .sm-title{
	font-size:20px;
	line-height: 130%;
}
.common-box .box p{
	font-size:16px;
	text-align:start;
}
