body{
    margin: 0;
    color: #252323;
    font-family: 'Roboto', 'Helvetica Neue';
}

.pt-70{
    padding-top: 70px;
}

.pb-70{
    padding-bottom: 70px;
}

.pt-50{
    padding-top: 50px;
}

.pb-50{
    padding-bottom: 50px;
}

ul{
    padding: 0;
}

h1,h2,h3,h4,h5,h6{
    color: #284fa7;
    font-family: 'Helvetica Neue';
}

a{
    text-decoration: none;
    font-family: 'Helvetica Neue';
    display: inline-block;
    color: #284fa7;
}

li{
    font-family: 'Helvetica Neue';
}

p{
    font-family: 'Roboto';
    line-height: 22px;
    font-size: 15px;
}

========================= Header Menu =================

.header-menu{
    background: #fff;
}

.header-menu.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 6px rgb(37 37 35 / 20%);
    z-index: 999;
}

.header-menu img{
    width: 150px;
}

.header-menu .navbar{
    padding: 0;
}

.header-menu .navbar-expand-lg .navbar-nav .nav-link {
    padding: 26px 8px;
    font-size: 16px;
    color: #284fa7;
    font-weight: 500;
}

.header-menu .navbar-nav .nav-link.active{
    color: #ed3237;
}

.navbar-nav .nav-link {
  color: #284fa7;
}

.dropdown-item{
    font-size: 15px;
    padding: 2px 12px;
    color: #284fa7;
}

.dropdown-item:hover {
    color: #ed3237;
}

.dropdown .dropdown-menu {
    display: none;
}

.dropdown:hover > .dropdown-menu {
    display: block;
    box-shadow: 0px 2px 6px rgb(37 35 35 / 20%);
    border-top: 4px solid #284fa7;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0;
    vertical-align: middle;
    content: "";
}

.top-header{
    position: relative;
    width: 80%;
    padding: 10px 30px 10px 40px;
    font-size: 20px;
    color: #FFF;
    background: #284fa7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header:after{
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #284fa7;
    transform-origin: bottom left;
    -ms-transform: skew(-30deg, 0deg);
    -webkit-transform: skew(-30deg, 0deg);
    transform: skew(-30deg, 0deg);
}

.top-header p{
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.top-header p a{
    color: #fff212;
}

.top-header ul{
    margin: 0;
}

.top-header li{
    display: inline-block;
    padding: 0px 3px;
}

.top-header li a{
    font-size: 15px;
    color: #284fa7;
    background: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: 0.4s ease-in-out;
}

.top-header li a:hover{
    color: #fff;
}

.top-header li a::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #ed3237;
    font-size: 14px;
    border-radius: 30px;
    z-index: -1;
    transition: 0.4s ease-in-out;
}

.top-header li a:hover::after{
    width: 100%;
}

/*======================== Main Css ======================*/

.hero-box{
    height: 500px;
    background-size: cover !important;
    background-position: center !important;
    width: 100%;
    position: relative;
}

/* .hero-box::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(37 37 35 / 50%);
} */

.hero-content{
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translate(0, -50%);
    width: 45%;
    color: #fff;
}

.hero-content p {
    font-size: 16px;
}

.hero-content p span{
    display: inline-block;
    background: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    box-shadow: 2px 2px 2px #252523;
    color: #252523;
    font-size: 16px;
}

.hero-content h1{
    color: #fff;
    text-shadow: 2px 2px 1px #284fa7;
    font-size: 42px;
}

.hero-content h1 span{
    color: #ed3237;
    text-shadow: 1px 1px 1px #fff;
}

.hero-btn{
    display: flex;
    column-gap: 15px;
    padding-top: 15px;
}

.hero-btn a{
    background: #fff;
    padding: 12px 24px;
    border-radius: 30px 30px 30px 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 15px;
    transition: 0.4s ease-in-out;
}

.hero-btn a:nth-child(1){
    background: #284fa7;
    color: #fff;
}

.hero-btn a:hover{
    background: #ed3237;
    color: #fff;
}

.hero-slider .slick-prev {
    left: 30px;
    z-index: 1;
}

.hero-slider .slick-prev, .hero-slider .slick-next {
    width: 45px;
    height: 45px;
    background: #252523;
    border-radius: 50%;
}

.hero-slider .slick-next {
    right: 25px;
}

.about-us-pic{
    display: flex;
    column-gap: 18px;
}

.about-left-pic{
    width: 50%;
}

.about-left-pic img{
    width: 100%;
    border-radius: 0px 50px 0px 50px;
    height: 390px;
    object-fit: cover;
    border: 1px solid #252523;
}

.total-program{
    background: #284fa7;
    text-align: center;
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
    padding: 30px 20px;
    border-radius: 50px 0px;
}

.total-program span{
    font-size: 35px;
    font-weight: 600;
}

.total-program p{
    margin: 0;
}

.about-right-pic{
    width: 50%;
}

.top-pic img{
    width: 100%;
    height: 266px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px dashed #284fa7;
    padding: 8px;
}

.bottom-pic img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 50px 0px 0px 0px;
}

.about-us-text p span{
    text-transform: uppercase;
    color: #ed3237;
    font-weight: 600;
    position: relative;
}

.about-us-text p span::before{
    content: "";
    display: inline-block;
    height: 2px;
    width: 40px;
    background: #ed3237;
    vertical-align: middle;
    margin-right: 8px;
}

.about-us-text h2{
    font-size: 32px;
}

.text-linear{
    background: linear-gradient(90deg, #ed3237 0%, #00a859 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-us-text ul{
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
}

.about-us-text li{
    width: 49%;
    list-style-type: none;
    padding: 10px 10px;
    border-left: 4px solid #252523;
    box-shadow: 2px 2px 6px rgb(37 37 35 / 20%);
}

.about-us-text li::before{
    content: "";
}

.commn-btn a{
    background: #284fa7;
    color: #fff;
    padding: 10px 20px;
    letter-spacing: 1px;
    font-weight: 500;
    box-shadow: 4px 5px 1px #252523;
}

.text-linear-black{
    background: linear-gradient(90deg, #ed3237 0%, #fff212 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.commn-bg{
    background: #252523;
    padding: 70px 0px;
}

.commn-heading{
    width: 80%;
    margin: 0 auto 35px;
}

.commn-heading h2{
    font-size: 32px;
}

.commn-heading p{
    font-size: 16px;
}

.our-programs-box{
    background: #fff;
    text-align: center;
    height: 100%;
    padding: 12px 12px;
    border-bottom: 5px solid #ed3237;
}

.our-programs-box h3{
    margin: 10px 0px 12px;
}

.our-programs-box h3 a{
    font-size: 18px;
    transition: 0.4s ease-in-out;
}

.our-programs-box:hover a{
    color: #ed3237;
}

.our-programs-box figure{
    margin: 0;
}

.our-programs-box img{
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.event-box{
    box-shadow: 0px 2px 6px rgb(37 37 35 / 20%);
    padding: 20px 16px;
    border-radius: 5px;
    margin: 10px 10px;
    height: 400px;
    transition: 0.5s ease-in-out;
}

.event-box img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: 0.4s ease-in-out;
}

.event-text ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.event-text li{
    list-style-type: none;
}

.event-text li span{
    color: #284fa7;
}

.event-text h3{
    font-size: 20px;
}

.event-btn a{
    background: #284fa7;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px 30px 30px 0px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.4s ease-in-out;
}

.event-btn a:after{
    content: "\f178";
    font-family: 'FontAwesome';
    font-size: 14px;
    margin-left: 6px;
}

.event-box:hover img{
    filter: grayscale(100%);
}

.event-box:hover .event-btn a{
    background: #284fa7;
}

.event-slider .slick-prev {
    z-index: 1;
}

.event-slider .slick-prev, .event-slider .slick-next{
    width: 45px;
    height: 45px;
    background: #284fa7;
}

.starex-legacy-bg{
    background: rgb(37 37 35 / 5%);
    padding: 70px 0px;
}

.starex-legacy-card{
    position: relative;
    text-align: -webkit-center;
    padding: 10px 10px;
    height: 100%;
    transition: 0.4s ease-in-out;
}

.starex-legacy-card::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #284fa7;
    z-index: -1;
    border-radius: 5px 5px 5px 5px;
    transition: 0.4s ease-in-out;
}

.starex-legacy-card:hover::before{
    background: #ed3237;
}

.starex-legacy-box{
    box-shadow: 0px 1px 6px rgb(37 37 35 / 30%);
    background: #fff;
    padding: 20px 10px;
    height: 100%;
    border-radius: 5px;
}

.starex-legacy-box span{
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translate(-50%, 0px);
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #284fa7;
    border-radius: 50%;
    transition: 0.4s ease-in-out;
}

.starex-legacy-card:hover .starex-legacy-box span{
    background: #ed3237;
    border-radius: 5px;
}

.starex-legacy-box img{
    width: 35px;
    filter: invert(1);
}

.starex-legacy-text{
    padding-top: 25px;
}

.starex-legacy-text h3{
    font-size: 18px;
}

.starex-legacy-text p{
    margin: 0;
}

.gallery-box img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0px 1px 6px rgb(37 37 35 / 40%);
}

.lb-nav a.lb-prev::before {
    content: "\f104";
    font-family: fontawesome;
    position: absolute;
    top: 50%;
    left: 8px;
    font-size: 30px;
    background: rgb(33 37 41 / 70%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    transform: translate(0, -50%);
    color: #ed3237;
    opacity: 1;
    transition: 0.4s ease-in-out;
}

.lb-nav a.lb-next::after {
    content: "\f105";
    font-family: fontawesome;
    position: absolute;
    top: 50%;
    right: 8px;
    font-size: 30px;
    background: rgb(33 37 41 / 70%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    transform: translate(0, -50%);
    color: #ed3237;
    opacity: 1;
    transition: 0.4s ease-in-out;
}

.lb-data .lb-close::after {
    float: right;
    content: "\f00d";
    font-family: fontawesome;
    font-size: 30px;
    color: #fff;
    margin-top: 8px;
}

.recognition-approvals-box{
    background: #fff;
    padding: 20px 12px;
    border-left: 5px solid #ed3237;
    text-align: center;
    height: 100%;
}

.approvals-logo img{
    height: 135px;
    object-fit: cover;
}

.approvals-text h3{
    font-size: 20px;
}

.approvals-text p{
    margin: 0;
    font-size: 15px;
}

.review-bg{
    background: rgb(37 37 35 / 5%);
    padding: 70px 0px;
}

.review-box{
    background: #fff;
    box-shadow: 0px 1px 6px rgb(37 37 35 / 40%);
    padding: 30px 20px;
    margin: 10px 10px;
    border-radius: 45px 0px 0px 0px;
    height: 270px;
}

.rating-icon span i{
    color: #ffc107;
}

.review-text{
    padding-top: 10px;
}

.student-profile{
    display: flex;
    column-gap: 15px;
    align-items: center;
}

.student-profile figure{
    margin: 0;
}

.student-profile img{
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px dashed #284fa7;
    padding: 5px;
}

.student-profile span{
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: linear-gradient(45deg, #252523, #284fa7);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
}

.student-info h3{
    font-size: 22px;
    margin-bottom: 2px;
}

.student-info h4{
    font-size: 18px;
    color: #252523;
    margin: 0;
}

.review-slider .slick-prev, .review-slider .slick-next{
    display: none !important;
}

.blog-box{
    border: 1px solid #252523;
    border-radius: 0px 0px 5px 5px;
    height: 100%;
    transition: 0.4s ease-in-out;
}

.blog-box:hover{
    border-image: linear-gradient(to right, #284fa7 0%, #ed3237 100%) 1;
}

.blog-pic{
    position: relative;
}

.blog-pic img{
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.date{
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #284fa7;
    text-align: center;
    padding: 15px 10px;
    color: #fff;
    border-radius: 30px 0px 0px 0px;
}

.date span{
    font-size: 24px;
    font-weight: 600;
}

.date p{
    margin: 0;
}

.blog-text{
    padding: 0px 15px;
    text-align: center;
}

.blog-text h3 a{
    font-size: 20px;
}

.blog-bottom{
    display: flex;
    justify-content: space-between;
    padding: 10px 0px 10px 15px;
    border-top: 1px solid #252523;
    align-items: center;
}

.blog-bottom p{
    margin: 0;
}

.blog-btn a{
    background: #252523;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px 0px 0px 0px;
    transition: 0.4s ease-in-out;
}

.blog-box:hover .blog-btn a{
    background: #ed3237;
}

/*========================About Us===============================*/

.inner-hero-bg{
    position: relative;
}

.inner-hero-bg figure{
    margin: 0;
}

.inner-hero-bg figure img{
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* .inner-hero-bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(37 37 35 / 30%);
} */

.about-hero{
    width: 40% !important;
}

.inner-hero-text{
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translate(0, -50%);
    width: 50%;
}

.inner-hero-text h1{
    color: #fff;
    font-size: 38px;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px #ed3237;
}

.inner-hero-text h1 span{
    color: #fff212;
}

.inner-hero-text p{
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.inner-hero-text ul{
    margin: 0;
}

.inner-hero-text li{
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.inner-hero-text a{
    color: #fff;
}

.call-usbtn{
    display: flex;
    column-gap: 12px;
    margin-top: 20px;
}

.call-usbtn a{
    background: #fff;
    color: #252523;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.overview-bg{
    background: rgb(37 37 35 / 5%);
    padding: 50px 0px;
}

.mission-vission-box{
    box-shadow: 2px 2px 6px rgb(37 37 35 / 30%);
    padding: 15px 15px;
    border-radius: 5px;
    margin-bottom: 35px;
}

.mission-vission-pic figure{
    margin: 0;
}

.mission-vission-pic img{
    width: 100%;
    border-radius: 5px;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease-in-out;
}

.mission-vission-box:hover .mission-vission-pic img{
    filter: grayscale(100%);
}

.mission-vission-text h2{
    font-size: 25px;
}

.mission-vission-text p:nth-last-child(1){
    margin: 0;
}

.mission-vission-section .container .mission-vission-box:nth-child(even) .row{
    flex-direction: row-reverse;
}

.mission-vission-section .container .mission-vission-box:nth-last-child(1){
    margin: 0;
}

.mission-vission-text ul{
    padding-left: 18px;
    margin: 0;
}

.mission-vission-text li{
    padding-bottom: 4px;
}

.starex-info-bg{
    background: url(../img/about-us/info-bg.webp);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    padding: 60px 0px;
}

.starex-info-bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(37 37 35 / 50%);
    z-index: -1;
}

.our-starex-info{
    text-align: center;
    background: rgb(37 37 35 / 90%);
    padding: 25px 12px;
}

.our-starex-info span{
    display: inline-block;
    background: #fff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 30px 0px 0px 0px;
    margin-bottom: 14px;
}

.our-starex-info img{
    width: 40px;
}

.our-starex-info h2{
    color: #fff;
    font-size: 36px;
}

.our-starex-info h3{
    margin: 0;
    font-size: 20px;
    color: #fff;
}

.teacher-box{
    box-shadow: 0px 2px 6px rgb(37 37 35 / 40%);
    border-radius: 5px;
    text-align: center;
    position: relative;
    border-bottom: 4px solid #252323;
    height: 100%;
    transition: 0.5s ease-in-out;
}

.teacher-pic img{
    width: 100%;
    border-radius: 5px 5px 0px 0px;
    height: 250px;
    object-fit: cover;
}

.teacher-info{
    padding: 0px 15px 15px;
}

.teacher-info h3{
    font-size: 20px;
}

.teacher-info h4{
    font-size: 16px;
    color: #252523;
    margin: 0;
}

.teacher-details{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background: rgb(37 37 35 / 80%);
    color: #fff;
    overflow: hidden;
    text-align: left;
    transition: 0.5s ease-in-out;
}

.teacher-details p{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 20px 15px;
}

.teacher-box:hover .teacher-details{
    height: 100%;
}

.recruiters-bg{
    background: rgb(37 37 35 / 10%);
    padding: 50px 0px;
}

.recruiters-box{
    margin: 10px 10px;
    background: #fff;
    padding: 12px 12px;
    border-radius: 5px;
    box-shadow: 0px 0px 6px rgb(37 37 35 / 40%);
}

.recruiters-box img{
    width: 100%;
}

.recruiters-slider .slick-prev, .recruiters-slider .slick-next{
    display: none !important;
}

/*========================Chansellor Css==========================*/

.chancellor-pic figure{
    margin: 0px 25px 25px 0px;
    background: #284fa7;
}

.chancellor-pic img{
    width: 100%;
    margin: 25px 0px -25px 25px;
    height: 400px;
    object-fit: cover;
}

.chancellor-message-text{
    box-shadow: 0px 2px 6px rgb(37 37 35 / 20%);
    padding: 20px 16px;
    background: rgb(37 37 35 / 5%);
    border-right: 5px solid #252523;
}

.chancellor-name{
    text-align: right;
}

.chancellor-name h2{
    font-size: 28px;
}

.chancellor-name h3{
    margin: 0;
    font-size: 20px;
}

.chancellor-content{
    padding-top: 30px;
}

.chancellor-message-section .container .row:nth-child(even){
    flex-direction: row-reverse;
}

.chancellor-message-section .container .row:nth-child(even) .chancellor-pic figure{
    margin: 0px 0px 0px 21px;
}

.chancellor-message-section .container .row:nth-child(even) .chancellor-pic img{
    margin: 30px 0px 30px -30px;
}

.chancellor-message-section .container .row:nth-child(even) .chancellor-message-text{
    border-left: 5px solid #252523;
}

.chancellor-message-section .container .row:nth-child(even) .chancellor-message-text{
    border-left: 5px solid #252523;
}

.chancellor-message-section .container .row:nth-child(even) .chancellor-name{
    text-align: left;
}

.registrar-pic figure{
    margin: 0;
}

.registrar-pic img{
    width: 100%;
}

.registrar-message-box{
    background: #fff;
    box-shadow: 2px 0px 6px rgb(37 37 35 / 20%);
    margin-left: -40px;
    padding: 30px 30px;
}

/*========================Governance Css=========================*/

.governance-box{
    box-shadow: 0px 2px 6px rgb(37 37 35 / 20%);
    text-align: center;
    padding: 30px 15px;
    border-bottom: 4px solid #284fa7;
    height: 100%;
}

.governance-box h3{
    font-size: 18px;
    margin-bottom: 30px;
}

.click-here a{
    background: #284fa7;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    letter-spacing: 1px;
    font-weight: 500;
}

/*========================Schools Css=============================*/


.computer-science-text h2{
    font-size: 32px;
    color: #fff;
}

.computer-science-text h3{
    color: #fff;
    font-size: 22px;
}


.computer-science-box figure{
    margin: 0;
}

.computer-science-box img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.computer-science-slider .slick-prev, .computer-science-slider .slick-next{
    display: none !important;
}

.schools-program-text h2{
    font-size: 24px;
    margin-bottom: 15px;
}

.schools-program-box{
    box-shadow: 0px 2px 6px rgb(37 37 35 / 20%);
    border-left: 4px solid #252523;
    padding: 15px 12px;
    margin-bottom: 20px;
}

.schools-program-box:nth-last-child(1){
    margin-bottom: 0;
}

.schools-program-box h3{
    font-size: 18px;
}

.schools-program-box p{
    margin: 0;
    font-size: 15px;
}

.schools-program-pic{
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    column-gap: 10px;
}

.schools-program-pic figure{
    margin: 0;
    width: 50%;
}

.schools-program-pic img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 50px 0px 50px 0px;
}

.program-pic-left{
    width: 50%;
}

.school-top-pic{
    width: 100% !important;
    margin-bottom: 15px !important;
}

.school-top-pic img{
    height: 300px;
    border-radius: 50px 0px 0px 0px;
}

.school-bottom-pic{
    position: absolute;
    bottom: -30px;
    left: 40px;
}

.school-bottom-pic img{
    height: 250px;
    border: 2px solid #284fa7;
    width: 350px;
    object-fit: cover;
    border-radius: 50px 0px 50px 0px;
}

.agri-program-pic img{
    width: 100%;
}

.schools-program-section .container .row{
    margin-bottom: 80px;
}

.schools-program-section .container .row:nth-child(even){
    flex-direction: row-reverse;
}

.schools-program-section .container .row:nth-last-child(1){
    margin-bottom: 0;
}

.about-school-bg{
    background: rgb(37 37 35 / 10%);
    padding: 60px 0px;
}

.facilities-programme-text{
    padding: 20px 20px;
}

.facilities-programme-text h2{
    font-size: 24px;
}

.facilities-programme-text ul{
    padding-left: 16px;
}

.facilities-programme-text li{
    padding-bottom: 5px;
}

.facilities-programme-pic figure{
    margin: 0;
}

.facilities-programme-pic img{
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.classroom-bg{
    background: #284fa7;
    padding: 50px 0px;
}

.classroom-box{
    background: #fff;
    height: 100%;
}

.classroom-pic figure{
    margin: 0;
}

.facilities-programme .container .row{
    margin-bottom: 60px;
}

.facilities-programme .container .row:nth-last-child(1){
    margin-bottom: 0;
}

.facilities-programme .container .row:nth-child(odd){
    flex-direction: row-reverse;
}

.classroom-pic img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.classroom-text{
    text-align: center;
    padding: 20px 15px;
}

.classroom-text h3{
    font-size: 18px;
}

.classroom-text p{
    margin: 0;
}

.tech-career-box{
    display: flex;
    align-items: center;
    column-gap: 14px;
    box-shadow: 0px 2px 6px rgb(37 37 35 / 20%);
    padding: 16px 12px;
    margin-bottom: 18px;
    border-left: 5px solid #252523;
}

.tech-career-box img{
    width: 40px;
}

.tech-career-box h3{
    font-size: 18px;
    margin: 0;
    color: #252523;
}

.tech-career-middle figure{
    margin: 0;
}

.tech-career-middle img{
    width: 100%;
}

.tech-career-right .tech-career-box{
    flex-direction: row-reverse;
    border-left: none;
    border-right: 5px solid #252523;
}

.schools-program-text ul{
    padding-left: 16px;
    margin: 0;
}

.schools-program-text li{
    padding-bottom: 5px;
    font-weight: 500;
    font-size: 15px;
}

.commn-blue-bg{
    background: #284fa7;
    padding: 60px 0px;
}

.admission-process-box{
    background: #fff;
    padding: 20px 10px;
    text-align: center;
    height: 100%;
    border-bottom: 5px solid #252523;
    transition: 0.4s ease-in-out;
}

.admission-process-box span{
    display: inline-block;
    background: linear-gradient(45deg, #284fa7, #252523);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 30px 0px 30px 0px;
    transition: 0.4s ease-in-out;
}

.admission-process-box:hover span{
    border-radius: 0;
    background: linear-gradient(45deg, #252523, #252523);
}

.admission-process-box img{
    width: 40px;
    filter: invert(1);
}

.admission-process-box h3{
    font-size: 17px;
    margin: 18px 0px 0px;
    transition: 0.4s ease-in-out;
}

.admission-process-box:hover h3{
    color: #252523;
}

.structure-highlights-box{
    box-shadow: 0px 2px 10px rgb(37 37 35 / 20%);
    padding: 25px 20px;
    height: 100%;
    border-right: 5px solid #252523;
}

.structure-highlights-section .container .row .col-lg-6:nth-last-child(1) .structure-highlights-box{
    border-right: none;
    border-left: 5px solid #252523;
}

.structure-highlights-box h3{
    font-size: 22px;
    margin-bottom: 15px;
}

.structure-highlights-box ul{
    padding-left: 16px;
    margin: 0;
}

.structure-highlights-box li{
    font-weight: 500;
    padding-bottom: 5px;
}

.learning-heading{
    margin-bottom: 30px;
}

.learning-heading h2{
    font-size: 30px;
}

.learning-methodology-box{
    box-shadow: 0px 2px 6px rgb(37 37 35 / 20%);
    position: relative;
}

.learning-methodology-box figure{
    margin: 0;
}

.learning-methodology-box img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.learning-methodology-text{
    text-align: center;
    position: absolute;
    bottom: 0;
    background: rgb(37 37 35 / 80%);
    left: 0;
    width: 100%;
    padding: 10px 15px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.learning-methodology-text h3{
    font-size: 18px;
    margin: 0;
    color: #fff;
    font-weight: 400;
}

.faculty-info{
    background: #fff;
    padding: 20px 16px;
    border-left: 5px solid #252523;
}

.faculty-info h4{
    font-size: 22px;
}

.faculty-info p{
    margin: 0;
}

.career-opportunities-box{
    box-shadow: 0px 0px 6px rgb(37 37 35 / 20%);
    padding: 20px 15px;
    border-bottom: 5px solid #252523;
    height: 100%;
    border-radius: 5px 5px 0px 0px;
    background: #284fa7;
}

.career-opportunities-section .container .row .col-lg-4:nth-child(2) .career-opportunities-box{
    background: #252323;
    border-bottom: 5px solid #ffc107;
}

.career-opportunities-section .container .row .col-lg-4:nth-child(3) .career-opportunities-box{
    background: #ed3237;
    border-bottom: 5px solid #252523;
}

.career-opportunities-box h3{
    font-size: 22px;
    color: #fff;
    margin: 0;
}

.career-opportunities-box ul{
    padding-left: 16px;
    margin: 0;
}

.career-opportunities-box li{
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 8px;
    list-style-type: none;
    color: #fff;
    padding-left: 12px;
    position: relative;
}

.career-opportunities-box li::before{
    content: "\f0a4";
    font-family: 'FontAwesome';
    position: absolute;
    left: -12px;
    color: #ffc107;
}

.career-opportunities-heading{
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 15px;
}

.career-opportunities-heading span{
    display: inline-block;
    background: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
}

.career-opportunities-heading img{
    width: 30px;
}

.facilities-programme-box{
    box-shadow: 0px 2px 6px rgb(37 37 35 / 20%);
    border-bottom: 5px solid #252523;
    height: 100%;
    padding: 20px 20px;
}

.facilities-programme-box h3{
    font-size: 22px;
}

.facilities-programme-box p{
    margin: 0;
}

.facilities-programme-box ul{
    padding-left: 16px;
    margin: 0;
}

/*=================================Programme Css============================*/

.join-school-bg{
    background: rgb(37 37 35 / 10%);
    padding: 60px 0px;
}

.join-school-table table{
    display: table;
    width: 100%;
    border: 1px solid #252523;
    background: #fff;
}

.join-school-table tr th{
    border: 1px solid #252523;
    padding: 10px 16px;
    background: #284fa7;
    color: #fff;
    font-weight: normal;
}

.join-school-table tr td{
    border: 1px solid #252523;
    padding: 10px 16px;
    font-size: 14px;
}

.join-school-table td ul{
    padding-left: 16px;
    margin: 0;
}

.join-school-table td ul li{
    padding: 3px 0px;
}

.join-school-table tbody tr:nth-child(even){
    background: rgb(37 37 35 / 10%);
}

.join-school-table td a{
    font-size: 14px;
}

.join-school-table a i{
    color: #ed3237;
}

.applyBtn{
    text-align: center;
    margin-top: 30px;
}

.applyBtn a{
    background: #252523;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    letter-spacing: 1px;
    font-weight: 500;
}

.applyBtn .form-control{
    border: 1px solid #252523;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.applyBtn .form-select{
    border: 1px solid #252523;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.form-control:focus, .form-select:focus{
    box-shadow: none;
    border-color: #ed3237;
}

.submitbtn{
    width: 100%;
    border: 1px solid #252523;
    background: #252523;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0px;
    border-radius: 4px;
}

.course-bg{
    background: #252523 !important;
    font-size: 20px;
}

/*========================Examination Css=========================*/

.coe-pic{}

.coe-pic figure{
    margin: 0;
}

.coe-details{}

.coe-details h2{
    font-size: 28px;
}

.coe-note{
    margin-top: 35px;
    box-shadow: 0px 2px 6px rgb(37 37 35 / 20%);
    border-left: 5px solid #252523;
    padding: 20px 20px;
    background: rgb(37 37 35 / 10%);
    font-weight: 600;
}

.coe-note p{
    font-size: 16px;
}

.coe-note h3{
    font-size: 22px;
    text-align: right;
    margin-bottom: 2px;
}

.coe-note h4{
    font-size: 18px;
    text-align: right;
    margin: 0;
}

.datesheet-section .governance-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.examination-form-bg{
    background: rgb(37 37 35 / 20%);
    padding: 70px 0px;
}

.examination-form{
    background: #fff;
    padding: 30px 22px;
    box-shadow: 0px 1px 6px rgb(37 37 35 / 40%);
    border-radius: 5px;
}

.examination-form h2{
    text-align: center;
    margin-bottom: 30px;
}

.examination-form .form-label{
    margin-bottom: 3px;
}

.examination-form .form-control, .examination-form .form-select{
    border: 1px solid #252523;
    padding: 8px 10px;
    border-radius: 5px;
}

.submit{
    background: #252523;
    border: 1px solid #252523;
    color: #fff;
    padding: 8px 25px;
    border-radius: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/*========================Facility Css===========================*/

.library-slider .slick-next {
    right: 0px;
}

.library-slider .slick-prev {
    left: 0px;
    z-index: 2;
}

.library-slider .slick-prev, .library-slider .slick-next{
    font-size: 0;
    width: 40px;
    height: 45px;
    background: #284fa7;
}

.library-slider .slick-prev:hover, 
.library-slider .slick-prev:focus, 
.library-slider .slick-next:hover, 
.library-slider .slick-next:focus {
    background: #ed3237;
}

.library-service-box{
    background: #fff;
    padding: 10px 10px 20px;
    height: 100%;
    text-align: center;
}

.library-service-box img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.library-service-box h3{
    margin: 0;
    font-size: 17px;
}

.library-bg{
    background: rgb(37 37 35 / 10%);
    padding: 70px 0px;
}

.library-section-box{
    background: #fff;
    border: 1px solid rgb(37 37 35 / 40%);
    text-align: center;
    padding: 25px 15px;
    height: 100%;
    margin-right: -1px;
}

.library-section-box span{
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(45deg, #252523, #284fa7);
    border-radius: 50%;
    margin-bottom: 20px;
}

.library-section-box img{
    width: 40px;
    filter: invert(1);
}

.library-section-box h3{
    font-size: 18px;
    margin: 0;
}

.library-bg .col{
    margin-top: -1px;
}

.about-librarian-pic figure{
    margin: 0;
}

.about-librarian-pic img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-librarian-info{
    background: #fff;
    width: 70%;
    margin: -70px auto 0;
    position: relative;
    padding: 20px 20px;
    box-shadow: 0px 2px 6px rgb(37 37 35 / 40%);
    text-align: center;
}

.about-librarian-info h3{
    font-size: 20px;
}

.about-librarian-info h4{
    font-size: 16px;
}

.about-librarian-info h4:nth-last-child(1){
    margin-bottom: 0;
}

.hostel-pic img{
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.about-hostel h2{
    font-size: 38px;
}

.about-hostel h3{
    font-size: 22px;
}

.about-hostel-box{
    box-shadow: 0px 1px 6px rgb(37 37 35 / 20%);
    padding: 20px 15px;
    border-left: 5px solid #284fa7;
    margin: 20px 0px 0px;
}

.about-hostel-box h4{
    font-size: 20px;
}

.about-hostel-box p{
    margin: 0;
}

.hostel-service-box{
    background: #fff;
    text-align: center;
    height: 100%;
    padding: 20px 15px;
    border-bottom: 5px solid #284fa7;
}

.hostel-service-box span{
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(45deg, #252523, #284fa7);
    border-radius: 30px 0px 30px 0px;
    margin-bottom: 20px;
}

.hostel-service-box img{
    width: 40px;
    filter: invert(1);
}

.hostel-service-box h3{
    font-size: 18px;
}

.hostel-service-box p{
    margin: 0;
}

.campus-safety-text{
    box-shadow: 0px 2px 6px rgb(37 37 35 / 20%);
    height: 100%;
    padding: 20px 20px;
    border-left: 5px solid #252523;
}

.campus-safety-heading{
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding-bottom: 12px;
}

.campus-safety-heading img{
    width: 50px;
}

.campus-safety-text h3{
    font-size: 24px;
    margin: 0;
}

.campus-safety-text p{
    margin: 0;
}

.hostel-fee-bg{
    background: rgb(37 37 35 / 10%);
    padding: 70px 0px;
}

.hostel-fee-table table{
    display: table;
    width: 100%;
    border: 1px solid #252523;
    background: #fff;
}

.hostel-fee-table thead tr th{
    border: 1px solid #252523;
    padding: 10px 16px;
    background: #284fa7;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}

.hostel-fee-table tbody tr td{
    border: 1px solid #252523;
    padding: 10px 16px;
    font-size: 16px;
}

.hostel-fee-table tbody tr:nth-child(even) {
    background: rgb(37 37 35 / 10%);
}

.hostel-heading th{
    text-align: center;
    font-size: 22px;
}

.wi-fi-campus-about{
    box-shadow: 0px 0px 6px rgb(37 37 35 / 40%);
    padding: 15px 12px;
    border-left: 5px solid #252523;
    margin-top: 20px;
}

.wi-fi-campus-about h3{
    font-size: 22px;
}

.wi-fi-campus-about p{
    margin: 0;
}

.about-library-text h2{
    font-size: 30px;
}

.about-library-text h2 span{
    color: #ed3237;
}

.transport-facility-bg{
    background: rgb(37 37 35 / 10%);
    padding: 70px 0px;
}

.transport-facility-box{
    background: linear-gradient(45deg, #252523, #284fa7);
    height: 100%;
    padding: 25px 20px;
    text-align: center;
}

.transport-facility-box span{
    display: inline-block;
    background: #fff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.transport-facility-box img{
    width: 40px;
}

.transport-facility-box h3{
    font-size: 20px;
    color: #fff;
}

.transport-facility-box p{
    margin: 0;
    color: #d9d9d9;
}

.playground-box img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/*========================Contact Us Css==========================*/

.our-map iframe{
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.contact-detail{
    box-shadow: 0px 2px 6px rgb(37 37 35 / 20%);
    padding: 20px 20px;
}

.contact-detail h2{
    font-size: 28px;
    text-align: center;
}

.contact-info{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-top: 24px;
    box-shadow: 0px 0px 6px rgb(37 37 35 / 20%);
    padding: 20px 15px;
    border-left: 5px solid #252523;
    border-radius: 5px;
    height: 100%;
}

.contact-icon span{
    display: inline-block;
    background: #252523;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
}

.contact-icon img{
    width: 28px;
    filter: invert(1);
}

.contact-text h3{
    font-size: 20px;
    margin: 0;
}

.contact-text a{
    font-size: 18px;
    font-weight: 500;
    color: #252523;
}

.banner-social-icon{
    position: absolute;
    bottom: 26px;
    display: flex;
    column-gap: 12px;
    left: 50px;
    align-items: center;
}

.banner-social-icon a{
    background: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 2px 2px 6px #ed3237;
}

.banner-social-icon img{
    width: 22px;
}

.banner-social-icon span{
    color: #fff;
    padding-left: 5px;
}

/*========================Footer Css==============================*/

.footer{
    background: #252523;
    padding: 50px 0px 0px;
    color: #fff;
}

.footer h4{
    color: #fff;
    font-size: 22px;
}

.about-footer img{
    width: 150px;
    margin-bottom: 15px;
}

.footer-link ul{
    padding-left: 15px;
}

.footer-link li{
    padding: 4px 0px;
}

.footer-link li a{
    color: #fff;
    position: relative;
    font-size: 15px;
}

.footer-link a::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: #fff;
    transition: 0.4s ease-in-out;
}

.footer-link a:hover::before{
    width: 100%;
}

.our-address li{
    list-style-type: none;
    padding: 4px 0px;
    display: flex;
    column-gap: 8px;
    align-items: center;
}

.our-address span i{
    border: 1px solid #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    font-size: 15px;
}

.our-address li a{
    color: #fff;
}

.social-media{
    margin-top: 25px;
}

.social-media a{
    border-radius: 15px 0px 15px 0px;
    width: 40px;
    height: 40px;
    line-height: 42px;
    background: #fff;
    text-align: center;
    color: #000;
    font-size: 18px;
    margin-right: 8px;
    transition: 0.4s ease-in-out;
}

.social-media a img{
    width: 35px;
    transition: 0.4s ease-in-out;
}

.social-media a:hover{
    background: #ed3237;
    color: #fff;
    border-radius: 50%;
}

.social-media a:hover img{
    filter: invert(1);
}

.footer-bottom{
    background: #284fa7;
    display: flex;
    justify-content: center;
    padding: 18px 70px;
    align-items: center;
    margin-top: 20px;
}

.footer-bottom p{
    margin: 0;
}

.footer-bottom p a{
    color: #fff;
    text-decoration: underline;
}

.footer-bottom ul{
    display: flex;
    column-gap: 30px;
    margin: 0;
}

.footer-bottom li a{
    color: #fff;
    font-size: 15px;
}

/*=======================Scroll Button Css=====================*/

#button.show {
    opacity: 1;
    visibility: visible;
}

#button {
    display: inline-block;
    background-color: #284fa7;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 25px;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #ed3237;
}

/*========================Responsive Css==========================*/

/* @media (min-width: 1400px) {
    .custom-container{
        max-width: 1240px;;
    }
} */

@media (min-width: 1352px) {
    .inner-hero-bg figure img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: center;
    }
}

@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
}

@media(max-width:1024px){
    .top-header {
        width: 95%;
    }
    .header-menu .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 14px;
        padding: 10px 5px;
    }
    .header-menu img {
        width: 130px;
    }
    .about-us-text li {
        width: 48%;
    }
}

@media(max-width: 991px){
    .header-menu .navbar-expand-lg .navbar-nav .nav-link {
        padding: 2px 8px;
    }
    .top-header p {
        display: none;
    }
    .starex-legacy-bg .container .row .col-md-4{
        margin-bottom: 50px;
    }
    .starex-legacy-bg .container .row .col-md-4:nth-last-child(1){
        margin-bottom: 0;
    }
    .review-box{
        height: 350px;
    }
    .commn-heading{
        width: 100%;
    }
    .schools-program-pic {
        margin-top: 20px;
    }
    .classroom-box {
        height: 330px;
        margin-bottom: 24px;
    }
    .our-facility-lab-section .classroom-box{
        margin: 0;
    }
    .inner-hero-text h1 {
        font-size: 30px;
    }
    .schools-program-pic{
        margin-bottom: 50px;
    }
    .facilities-programme-text {
        padding: 20px 0px 0px;
    }
    .admission-process-box {
        height: 210px;
        margin-bottom: 24px;
    }
    .career-opportunities-box {
        height: 390px;
        margin-bottom: 24px;
    }
    .law-career-section .career-opportunities-box {
        height: auto;
        margin-bottom: 24px;
    }
    .facilities-programme-box{
        height: auto;
        margin-bottom: 24px;
    }
    .post-graduate-section .mb-4{
        margin: 0 !important;
    }
}

@media(max-width:767px){
    .top-header {
        padding: 10px 0px 10px 15px;
    }
    .top-header li a {
        font-size: 14px;
        padding: 5px 10px;
    }
    .hero-content {
        width: 75%;
    }
    .gallery-box img {
        height: auto;
    }
    .review-box{
        height: auto;
    }
    .event-slider .slick-prev, .event-slider .slick-next{
        display: none !important;
    }
    .top-header {
        width: 87%;
    }
    .footer-link{
        margin-top: 24px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content {
        width: 90%;
        left: 20px;
    }
    .hero-box {
        height: 400px;
        background-position: unset !important;
    }
    .event-box{
        height: 440px;
    }
    .inner-hero-bg figure img {
        height: 360px;
        object-position: left;
    }
    .inner-hero-text {
        width: 90%;
        left: 30px;
    }
    .inner-hero-text h1 {
        font-size: 24px;
    }
    .call-usbtn a {
        padding: 8px 14px;
    }
    .classroom-box {
        height: auto;
    }
    .classroom-pic img {
        height: auto;
    }
    .admission-process-box {
        height: auto;
    }
    .structure-highlights-box {
        height: auto;
        border-right: none;
        border-left: 5px solid #252523;
        margin-bottom: 24px;
    }
    .career-opportunities-box {
        height: auto;
    }
    .banner-social-icon span {
        display: none;
    }
    .banner-social-icon {
        bottom: 15px;
        left: 30px;
    }
}

@media(max-width:480px){
    .event-box{
        height: auto;
    }
    .top-header li {
        padding: 3px 3px;
    }
    .about-us-pic {
        column-gap: 0;
        flex-wrap: wrap;
    }
    .about-left-pic {
        width: 100%;
    }
    .about-right-pic {
        width: 100%;
        margin-top: 20px;
    }
    .top-pic img {
        height: 300px;
    }
    .about-us-text li {
        width: 100%;
    }
    .commn-heading h2 {
        font-size: 25px;
    }
    .footer-bottom {
        padding: 18px 18px;
    }
    .about-left-pic img {
        height: 300px;
    }
    .about-us-text h2 {
        font-size: 25px;
    }
    .recruiters-box img{
        height: 100px;
    }
    .commn-bg {
        padding: 50px 0px;
    }
    .review-bg {
        padding: 50px 0px;
    }
    .top-header {
        width: 84%;
    }
}

@media(max-width:400px){
    .schools-program-pic {
        flex-wrap: wrap;
        row-gap: 10px;
    }
    .school-bottom-pic img {
        width: 94%;
    }
    .schools-program-pic figure {
        width: 100%;
    }
    .school-bottom-pic {
        bottom: -110px;
        left: 28px;
    }
    .program-pic-left {
        width: 100%;
    }
    .facilities-programme-box h3 {
        font-size: 16px;
    }
    .contact-info {
        display: block;
        height: auto;
        text-align: center;
    }
    .contact-icon{
        margin-bottom: 10px;
    }
    .contact-text a {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 26px;
    }
    .hero-btn a {
        padding: 10px 15px;
        font-size: 14px;
    }
    .student-profile {
        column-gap: 8px;
    }
    .student-profile span {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 20px;
    }
    .student-info h3 {
        font-size: 20px;
    }
    .student-info h4 {
        font-size: 15px;
    }
    .social-media a {
        width: 36px;
        height: 36px;
        line-height: 37px;
        font-size: 15px;
    }
    .social-media a img {
        width: 30px;
    }
    .our-address span i {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
    }
    .our-address li {
        font-size: 14px;
    }
    .header-menu img {
        width: 120px;
    }
    .commn-heading h2 {
        font-size: 22px;
    }
    .about-us-text h2 {
        font-size: 22px;
    }
    .call-usbtn {
        flex-wrap: wrap;
        row-gap: 12px;
    }
    .inner-hero-text h1 {
        font-size: 22px;
    }
    .inner-hero-text p {
        font-size: 16px;
    }
    .inner-hero-text {
        left: 20px;
    }
}