@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
body{
    overflow-x: hidden;
}
.header {
    height: 109px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
}
.header .top-nav-bar {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
    height: 49px;
    width: 100%;
    background-color: #fff;
}
.header .top-nav-bar .follow-links {
    margin-right: -300px;
}
.header .top-nav-bar .top-nav-commitment {
    margin-left: -80px;
}
.header .top-nav-bar .top-nav-commitment .commitment {
    margin-bottom: 0px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
@media screen and (max-width: 1000px) {
    .header .top-nav-bar {
        display: none;
    }
}

.header .main-nav-bar {
    height: 60px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: end;
    background-color: #1f9548;
    border-bottom: 4px solid #faa61a;
}
.header .main-nav-bar .header-logo {
    background-color: #fff;
    width: 235px;
    height: 109px;
}
.header .main-nav-bar .header-logo img {
    width: 100%;
    height: 100%;
}
.header .main-nav-bar .menu-links {
    display: flex;
    flex-direction: row;
    column-gap: 60px;
    /* Dropdown menu styles */
    /* Show the dropdown menu on hover */
}
.header .main-nav-bar .menu-links .link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}
.header .main-nav-bar .menu-links .link .menu-icon {
    display: none;
}
.header .main-nav-bar .menu-links .social-link {
    display: none;
}
.header .main-nav-bar .menu-links .dropdown-content {
    background-color: #ffffff;
    display: block;
    position: absolute;
    border-radius: 2px;
    overflow: hidden;
    padding: 0px;
    z-index: 1;
    white-space: wrap;
    height: 0px;
    opacity: 0.7;
    transition: height 0.3s ease-in-out;
}
.header .main-nav-bar .menu-links .dropdown-content li {
    line-height: normal;
    border-bottom: 1px solid #000b3a;
    background-image: linear-gradient(
        125deg,
        #faa61a 50%,
        rgb(255, 255, 255) 0%,
        rgb(255, 255, 255) 100%
    );
    background-size: 220% 100%;
    background-position: 100% 0, 0 0;
    transition: background-position 0.71s ease;
}
.header .main-nav-bar .menu-links .dropdown-content li:hover {
    background-position: 0 0;
}
.header .main-nav-bar .menu-links .dropdown-content a {
    padding: 7px 10px;
    display: flex;
    flex-flow: column wrap;
    row-gap: 10px;
    text-decoration: none;
    color: #000b3a;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: normal;
    margin: 0px;
}
.header .main-nav-bar .menu-links .dropdown-content a:hover {
    color: #1900ff;
}
.header .main-nav-bar .menu-links .dropdown-content li {
    display: block;
}
.header .main-nav-bar .menu-links .desktop-view-dropdown {
    display: block;
}
.header
    .main-nav-bar
    .menu-links
    .desktop-view-dropdown.dropdown:hover
    .dropdown-content {
    display: block;

    height: auto;
}
.header .main-nav-bar .menu-links .mobile-view-dropdown {
    display: none;
}
@media screen and (max-width: 1000px) {
    .header .main-nav-bar .menu-links .desktop-view-dropdown {
        display: none !important;
    }
    .header .main-nav-bar .menu-links .mobile-view-dropdown {
        display: block;
        position: relative;
        height: 20px;
        transition: all 0.5s ease-in-out;
    }
    .header .main-nav-bar .menu-links .mobile-view-dropdown .dropdown-content {
        position: absolute;
        opacity: 1;
    }
    .header
        .main-nav-bar
        .menu-links
        .mobile-view-dropdown
        .dropdown-content
        li {
        border-color: #1f9548;
    }
    .header
        .main-nav-bar
        .menu-links
        .mobile-view-dropdown
        .dropdown-content
        a {
        color: #1f9548;
    }
    .header .main-nav-bar .menu-links .mobile-view-dropdown .icon-dropdown {
        cursor: pointer;
        color: #1f9548;
        transition: all 0.5s ease-in-out;
    }
}
@media screen and (max-width: 1100px) {
    .header .main-nav-bar .menu-links {
        column-gap: 40px;
    }
}
.header .main-nav-bar .close-open-btn {
    display: none;
}
@media screen and (max-width: 1000px) {
    .header .main-nav-bar {
        top: 0;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        height: 109px;
        background-color: #ffffff;
        border: none;
        position: fixed;
        z-index: 999;
    }
    .header .main-nav-bar .header-logo {
        height: 120px;
    }
    .header .main-nav-bar .header-logo img {
        width: 100%;
        height: 100%;
        padding: 6px;
    }
    .header .main-nav-bar .close-open-btn {
        display: inline;
        margin-top: -65px;
        margin-left: -25px;
    }
    .header .main-nav-bar .close-open-btn i {
        font-size: 2rem;
        color: #1f9548;
    }
    .header .main-nav-bar .close-open-btn .close-btn {
        display: none;
    }
    .header .main-nav-bar .menu-links {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        row-gap: 15px;
        background-color: #fff;
        width: 235px;
        height: 1000px;
        margin-left: -235px;
        margin-top: 30px;
        padding-top: 40px;
        transition: all 0.5s ease-in-out;
    }
    .header .main-nav-bar .menu-links .link {
        font-weight: 700;
        color: #1f9548;
    }
    .header .main-nav-bar .menu-links .link .menu-icon {
        display: inline;
    }
    .header .main-nav-bar .menu-links .dropdown-content {
        transform: translateX(0%) !important;
    }
    .header .main-nav-bar .menu-links .social-link {
        display: inline;
    }
}

.main-footer .main-footer-contain {
    border-top: 4px solid #faa61a;
    /* background-color: #1f9548; */
    background: linear-gradient(
            to bottom,
            rgba(126, 251, 255, 0.5) 50%,
            rgba(126, 251, 255, 0.5) 50%
        ),
        url("/assets/frontend/images/bottom-apply-now.jpg");
    background-size: cover;
    padding: 40px;
}
.main-footer .main-footer-contain .follow-us {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media screen and (max-width: 575px) {
    .main-footer .main-footer-contain .follow-us {
        align-items: center;
    }
}
.main-footer .main-footer-contain .follow-us .logo {
    min-width: 240px;
    max-width: 300px;
    margin-top: 0px;
    /* background-color: #fff; */
}
.main-footer .main-footer-contain .contact-info .title {
    border-bottom: 2px solid #000;
}
.main-footer .main-footer-contain .contact-info .title h2 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
}
.main-footer .main-footer-contain .contact-info .contact-detail {
    margin-top: 35px;
    row-gap: 30px;
}
.main-footer .main-footer-contain .contact-info .contact-detail a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.32px;
    display: flex;
    align-items: center;
}
.main-footer .main-footer-contain .contact-info .contact-detail a i {
    font-size: 1.3rem;
}
.main-footer .footer-copyright {
    padding: 18px 0px;
    background-color: #000;
    border: 1px solid #3d3d3d;
}
.main-footer .footer-copyright .copyright {
    text-align: center;
    padding: 0px;
    margin: 0px;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
}

.banner {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.banner {
    margin-top: 50px;
    margin-bottom: 230px;
}
@media screen and (max-width: 991px) {
    .banner {
        margin-bottom: 100px;
    }
}
.banner .banner-contain {
    width: 100%;
    height: 100%;
    background-color: #62b57f;
}
.banner .banner-contain .contain {
    padding: 30px 30px;
}
.banner .banner-contain .contain .title {
    text-transform: uppercase;
    color: #282727;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: normal;
    word-break: break-all;
}
@media screen and (max-width: 991px) {
    .banner .banner-contain .contain .title {
        font-size: 2rem;
    }
}
@media screen and (max-width: 767px) {
    .banner .banner-contain .contain .title {
        font-size: 1.7rem;
    }
}
.banner .banner-contain .contain .sub-title {
    color: #282727;
    font-size: 2rem;
    font-weight: 500;
    line-height: normal;
}
.banner .banner-contain .contain .detail {
    margin-top: 10px;
    color: #282727;
    text-align: justify;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    padding-right: 0%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
}
@media screen and (min-width: 992px) {
    .banner .banner-contain .contain .detail {
        padding-right: 40%;
    }
}
@media screen and (min-width: 992px) {
    .banner .banner-contain .contain {
        padding: 80px 80px;
    }
}
@media screen and (min-width: 992px) {
    .banner .banner-contain {
        height: 450px;
    }
}
.banner .image-contain {
    position: relative;
}
.banner .image-contain .banner-image {
    width: 94%;
    margin-left: 3%;
    height: 100%;
}
.banner .image-contain .banner-image img {
    object-fit: cover;
}
@media screen and (min-width: 992px) {
    .banner .image-contain .banner-image {
        width: 90%;
        height: 336px;
        position: absolute;
        top: -150px;
    }
}
.banner .banner-page-name {
    margin-top: 40px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    column-gap: 20px;
    row-gap: 10px;
}
@media screen and (max-width: 460px) {
    .banner .banner-page-name {
        column-gap: 5px;
    }
}
.banner .banner-page-name .initial-page {
    padding: 8px 0px;
    border-top: 1px solid;
    border-bottom: 1px solid;
}
.banner .banner-page-name .initial-page span {
    padding: 0px;
    margin: 0px;
}
.banner .banner-page-name .initial-page span a {
    text-decoration: none;
    color: black;
}
.banner .banner-page-name .initial-page span a:hover {
    color: #1f9548;
}
@media screen and (max-width: 460px) {
    .banner .banner-page-name .initial-page {
        padding: 6px;
        height: 28px;
    }
    .banner .banner-page-name .initial-page span {
        font-size: 0.7rem;
    }
}
.banner .banner-page-name .divider {
    font-size: 1.4rem;
}
@media screen and (max-width: 460px) {
    .banner .banner-page-name .divider {
        font-size: 1rem;
    }
}
.banner .banner-page-name .current-page {
    padding: 8px 0px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    color: #1f9548;
}
.banner .banner-page-name .current-page span {
    padding: 0px;
    margin: 0px;
}
@media screen and (max-width: 460px) {
    .banner .banner-page-name .current-page {
        padding: 6px;
        height: 28px;
    }
    .banner .banner-page-name .current-page span {
        font-size: 0.7rem;
    }
}
.banner .news-upload-date {
    text-align: center;
    margin-top: 40px;
    color: #7e7d7d;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: "Lato", sans-serif;
}

.row-divider {
    height: 4px;
    width: 160px;
    border-radius: 10px;
    background-color: #1f9548;
}

.apply-program-form .title,
.visit-our-office .title,
.get-in-touch .title,
.frequently-ask-question .title,
.financial-details-and-support .title,
.course-contents .title,
.bim-introduction .title,
.gallery-main .title,
.news-and-updates .title,
.job-contain .title,
.careers-job-opening .title,
.notice-main .title,
.home-testimonials .title,
.home-upcoming-event .view-event .title,
.home-news-blogs .title,
.words-from-principal .contain .title,
.home-why-choose-us .contain .title,
.home-notice-board .title,
.home-about-sankalpa .contain .title,
.acedemic-programs .title {
    color: #4d4b4b;
    font-size: 2rem;
    font-weight: 700;
    line-height: normal;
}

.visit-our-office .detail,
.words-from-principal .contain .detail,
.home-why-choose-us .box .our-services p,
.home-why-choose-us .contain p,
.home-notice-board .notice-detail .notice-content .detail,
.home-about-sankalpa .contain .detail {
    color: #282727;
    text-align: justify;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}

.home-upcoming-event .card .card-body .card-text,
.home-news-blogs .contain .card .date,
.home-notice-board .notice-list .notice,
.acedemic-programs .card .card-text {
    color: #7e7d7d;
    font-size: 1rem;
    text-align: justify;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.home-upcoming-event .view-event .event .event-title .title,
.home-upcoming-event .card .card-body .card-title,
.home-news-blogs .contain .card .card-title,
.home-notice-board .notice-detail .notice-content .title {
    color: #282727;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: normal;
}

.follow-links .title {
    margin-top: 40px;
    border-bottom: 2px solid #000;
    max-width: 160px;
}
.follow-links .title h2 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
}
.follow-links .links {
    display: flex;
    column-gap: 10px;
}
.follow-links .links .social {
    text-decoration: none;
}
.follow-links .links .social i {
    display: grid;
    place-content: center;
    width: 27px;
    height: 26px;
    font-size: 1rem;
    clip-path: circle();
    color: #1f9548;
    background-color: #000000;
}

.pagination {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    column-gap: 10px;
}
.pagination .link {
    text-decoration: none;
    display: grid;
    place-content: center;
    background-color: #d9d9d9;
    color: #4d4b4b;
    font-weight: 600;
    width: 45px;
    height: 45px;
    clip-path: circle();
}
.pagination .link:hover {
    background-color: #1f9548;
    color: #ffffff;
}
.pagination .link.active {
    background-color: #1f9548;
    color: #ffffff;
}
.pagination .link:active {
    background-color: #126831;
}
@media screen and (max-width: 380px) {
    .pagination .three {
        display: none;
    }
    .pagination .link {
        width: 35px;
        height: 35px;
    }
}

.home-header .header {
    display: none;
}
@media screen and (max-width: 1000px) {
    .home-header .header {
        display: block;
    }
}
.home-header .main-header {
    position: relative;
    width: 100%;
    height: 651px;
    background-color: #000000;
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media screen and (max-width: 575px) {
    .home-header .main-header {
        height: 520px;
    }
}
.home-header .main-header .main-nav-bar {
    background-color: aliceblue;
    position: fixed;
    margin-bottom: 10% !important;
    transition: all 0.8s;
    height: 60px;
    width: 60px;
    overflow: hidden;
    z-index: 99;
}
@media screen and (max-width: 1000px) {
    .home-header .main-header .main-nav-bar {
        display: none;
    }
}
.home-header .main-header .main-nav-bar .main-transaction {
    height: 0px;
    width: 0px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    transition: all 1s;
    opacity: 0.4;
    z-index: 10;
}
.home-header .main-header .main-nav-bar .nav-image {
    width: 96%;
    height: 100px;
    z-index: -1;
}
.home-header .main-header .main-nav-bar .nav-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}
.home-header .main-header .main-nav-bar .nav-contain {
    margin-top: 40px;
    background-color: #1f9548;
    z-index: -999;
}
.home-header .main-header .main-nav-bar .nav-contain .nav-menu {
    padding: 0px;
    width: 100%;
}
.home-header
    .main-header
    .main-nav-bar
    .nav-contain
    .nav-menu
    .gradient-button {
    position: relative;
    background-color: transparent;
}
.home-header
    .main-header
    .main-nav-bar
    .nav-contain
    .nav-menu
    .gradient-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #faa61a;
    z-index: 0;
    transition: all 0.4s ease;
}
.home-header
    .main-header
    .main-nav-bar
    .nav-contain
    .nav-menu
    .gradient-button::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: #faa61a;
    z-index: 0;
    transition: all 0.4s ease;
}
.home-header
    .main-header
    .main-nav-bar
    .nav-contain
    .nav-menu
    .gradient-button:hover::before,
.home-header
    .main-header
    .main-nav-bar
    .nav-contain
    .nav-menu
    .gradient-button:hover::after {
    width: 55%;
}
.home-header .main-header .main-nav-bar .nav-contain .nav-menu .nav-link {
    margin-left: 0px;
    height: 35px;
    display: flex;
    align-items: center;
    border-top: 1px solid white;
    width: 100%;
}
.home-header
    .main-header
    .main-nav-bar
    .nav-contain
    .nav-menu
    .nav-link
    .dropdown-menu {
    opacity: 0.8;
}
.home-header
    .main-header
    .main-nav-bar
    .nav-contain
    .nav-menu
    .nav-link
    .dropdown-menu
    :not(:last-child) {
    border-bottom: 1px solid whitesmoke;
}
.home-header
    .main-header
    .main-nav-bar
    .nav-contain
    .nav-menu
    .nav-link
    .dropdown-menu
    .dropdown-link {
    height: 100%;
    padding: 3px 5px;
}
.home-header
    .main-header
    .main-nav-bar
    .nav-contain
    .nav-menu
    .nav-link
    .dropdown-menu
    .dropdown-link:hover {
    background-color: rgb(5, 5, 5);
}
.home-header .main-header .main-nav-bar .nav-contain .nav-menu .nav-link a {
    display: block;
    padding: 4px 1px;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: #fff;
    z-index: 1;
}
.home-header .main-header .main-nav-bar #bar {
    cursor: pointer;
    font-size: 2.5rem;
    color: #1f9548;
    font-weight: 900;
    padding: 10px 0px 0px 10px;
    height: 60px;
    width: 60px;
}
.home-header .main-header .main-nav-bar #close {
    cursor: pointer;
    margin-top: 10px;
    margin-left: 225px;
    display: none;
    font-size: 1.5rem;
    color: #1f9548;
    font-weight: 900;
    z-index: 100;
}
.home-header .main-header .main-banner {
    height: 100%;
    width: 100%;
    opacity: 0.87;
    background-image: linear-gradient(to top,rgba(255, 255, 255, 0) 70%,rgba(255, 255, 255, 0) 30%), url("/assets/frontend/images/home-banner.jpg");
    /* background-image: url("/assets/frontend/images/home-banner.png"); */
    background-position: 80% 40%; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: 100% 110%; /* Resize the background image to cover the entire container */
}

@media screen and (max-width: 450px) {
    .home-header .main-header .main-banner {
        background-size:cover;
        background-position: 90% 100%;
    }
}

@media screen and (max-width: 800px) {
    .home-header .main-header .main-banner {
        background-size:cover;
    }
}
.home-header .main-header .main-banner .banner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-header .main-header .main-banner .banner-logo img {
    width: 442px;
    height: 187px;
    object-fit: cover;
    margin-top: 30px;
}
@media screen and (max-width: 580px) {
    .home-header .main-header .main-banner .banner-logo{
        width: auto;
        height: auto;
    }
    .home-header .main-header .main-banner .banner-logo img{
        width: 80%;
        height: 100%;
    }
}
.home-header .main-header .main-banner .banner-contain {
    display: flex;
    flex-direction: column;
    align-items: end;
    row-gap: 20px;
    margin-top: 40px;
}
.home-header .main-header .main-banner .banner-contain .banner-link {
    display: flex;
    background-color: #ffa200;
    box-shadow: -6px 6px 0px 0px #1f9548;
    transition: all 0.19s ease-in-out;
    height: 33px;
}
.home-header .main-header .main-banner .banner-contain .banner-link a {
    width: 100%;
    padding-right: 20px;
    margin-top: 3px;
    text-decoration: none;
    color: #fff;
}
.home-header .main-header .main-banner .banner-contain .banner-link a:active {
    color: #e2d300;
}
.home-header .main-header .main-banner .banner-contain .banner-link:hover {
    background-color: #1f9548;
    box-shadow: -6px 6px 0px 0px #ffa200;
}

.acedemic-programs {
    margin-top: 100px;
}
.acedemic-programs .sub-title {
    color: #1f9548;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.acedemic-programs .card {
    border-radius: 0%;
    border: none;
    box-shadow: 0px 0px 10px 4px rgb(231, 231, 231);
}
.acedemic-programs .card img {
    object-fit: cover;
}
.acedemic-programs .card .card-title {
    color: #4d4b4b;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: normal;
}
.acedemic-programs .card .card-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.home-about-sankalpa {
    margin-top: 100px;
}
.home-about-sankalpa .image {
    width: 100%;
    height: 463px;
}
.home-about-sankalpa .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 576px) {
    .home-about-sankalpa .image {
        height: auto;
    }
}
.home-about-sankalpa .contain {
    background-color: rgba(231, 249, 206, 0.7);
}
.home-about-sankalpa .contain .sub-title {
    color: #1f9548;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.home-notice-board {
    margin-top: 100px;
}
.home-notice-board .sub-title {
    margin-top: 10px;
    color: #faa61a;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.home-notice-board .notice-list {
    margin-top: 50px;
}
.home-notice-board .notice-list :first-child.active {
    border-top: 1px solid #a3a3a3;
}
.home-notice-board .notice-list .notice-box {
    display: flex;
    flex-flow: row nowrap;
    border-bottom: 1px solid #a3a3a3;
    padding: 10px;
    cursor: pointer;
}
.home-notice-board .notice-list .active {
    border-left: 3px solid #faa61a;
}
.home-notice-board .notice-list .active .notice {
    color: #000000;
}
.home-notice-board .notice-list .notice {
    margin-top: 10px;
}
.home-notice-board .notice-list i {
    margin-top: 15px;
    color: #faa61a;
    font-size: 1.3rem;
}
.home-notice-board .notice-detail {
    border: 2px solid #1f9548;
    border-radius: 10px;
}
.home-notice-board .notice-detail .notice-content {
    padding: 20px;
}
.home-notice-board .notice-detail .notice-content .image {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(
            0deg,
            rgba(33, 32, 32, 0.3) 0%,
            rgba(33, 32, 32, 0.3) 100%
        )
        no-repeat;
}
.home-notice-board .notice-detail .notice-content .image img {
    max-height: 350px;
    opacity: 0.6;
    object-fit: cover;
}
.home-notice-board .notice-detail .notice-content .image .view-detail {
    position: absolute;
}

.notice-detail .notice-content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-why-choose-us {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 150px 0px;
    /* height: 10%; */
    background-image: url("/assets/frontend/images/wave-why-choose-us.png");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
}

@media screen and (max-width: 767px) {
    .home-why-choose-us {
        background-image: unset;
        background-color: #effbdd;
        padding: 20px 0px;
        height: 100%;
        margin-top: 80px;
        margin-bottom: 80px;
    }
}


.home-why-choose-us .contain {
    margin-top: 100px;
}
.home-why-choose-us .contain .sub-title {
    color: #1f9548;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.home-why-choose-us .box {
    text-align: center;
    box-shadow: 0px 0px 10px 4px rgb(223, 223, 223);
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
}
.home-why-choose-us .box .image {
    display: grid;
    place-content: center;
    width: 100%;
    height: 80px;
    background-image: url("/assets/frontend/images/Vector 6.svg");
    background-repeat: no-repeat;
    background-size: contain; /* Adjust as needed */
    background-position: center; /* Center the inner image within the outer container */
}
.home-why-choose-us .box .image1 {
    display: grid;
    place-content: center;
    width: 100%;
    height: 80px;
    background-image: url("/assets/frontend/images/Vector 5.svg");
    background-repeat: no-repeat;
    background-size: contain; /* Adjust as needed */
    background-position: center; /* Center the inner image within the outer container */
}
.home-why-choose-us .box .our-services .title {
    margin-top: 10px;
    color: #000;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
}
.home-why-choose-us .box .our-services p {
    margin-top: 10px;
    font-size: 0.875rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.words-from-principal .image {
    width: 100%;
    height: 463px;
}
.words-from-principal .image img {
    height: 100%;
    width: 100%;
}
@media screen and (max-width: 576px) {
    .words-from-principal .image {
        height: auto;
    }
}
.words-from-principal .contain {
    background-color: rgba(231, 249, 206, 0.7);
}
.words-from-principal .contain .sub-title {
    color: #1f9548;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.words-from-principal .principal-name {
    color: #282727;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
}
.words-from-principal .position {
    color: #faa61a;
    font-size: 1rem;
    font-style: italic;
    font-weight: 600;
}

.home-news-blogs {
    margin-top: 100px;
}
.home-news-blogs .sub-title {
    margin-top: 10px;
    color: #faa61a;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.home-news-blogs .contain .card {
    border: none;
}
.home-news-blogs .contain .card .card-body {
    padding: 20px 0px;
}
.home-news-blogs .contain .card .card-body a:hover .card-title {
    color: #ffab19;
}
@media screen and (max-width: 1199px) {
    .home-news-blogs .contain .card .card-body {
        padding: 0%;
    }
    .home-news-blogs .contain .card .date {
        margin-top: 10px !important;
    }
}
@media screen and (max-width: 400px) {
    .home-news-blogs .contain .card .date {
        margin-top: 5px !important;
        padding: 0px !important;
        font-size: 0.6rem !important;
    }
    .home-news-blogs .contain .card .card-title {
        font-size: 0.8rem !important;
    }
}
.home-news-blogs .contain .card .date {
    margin-top: -10px;
}
.home-news-blogs .contain .card .card-title {
    font-size: 1.125rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media screen and (min-width: 767px) and (max-width: 991px) {
    .home-news-blogs .contain .card .date {
        font-size: 0.7rem;
    }
    .home-news-blogs .contain .card .card-title {
        font-size: 0.8rem;
    }
}
@media screen and (max-width: 450px) {
    .home-news-blogs .contain .card .date {
        font-size: 0.7rem;
    }
    .home-news-blogs .contain .card .card-title {
        font-size: 0.8rem;
    }
}

.home-upcoming-event {
    margin-top: 100px;
}
.home-upcoming-event .card {
    border: none;
    border-radius: 0%;
}
.home-upcoming-event .card .card-body {
    padding: 0px;
}
.home-upcoming-event .card .card-body .card-title {
    font-size: 1.1rem;
    margin-top: 10px;
    overflow: hidden;
}
.home-upcoming-event .card .card-body .card-text {
    text-align: justify;
    line-height: normal;
    color: #252525;
}
.home-upcoming-event .view-event .sub-title {
    margin-top: 10px;
    color: #faa61a;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.home-upcoming-event .view-event .event {
    margin-top: 20px;
}
.home-upcoming-event .view-event .event .event-title .title {
    font-size: 1.125rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.home-upcoming-event .view-event .event .event-time .time {
    color: #1f9548;
    font-size: 0.875rem;
    font-weight: 600;
}
.home-upcoming-event .view-event .event .event-location .location {
    color: #1f9548;
    font-size: 0.875rem;
    font-weight: 600;
}
.home-upcoming-event .view-event .event .date {
    border-bottom: 3px solid #faa61a;
}
.home-upcoming-event .view-event .event .date .day {
    color: #faa61a;
    font-size: 2rem;
    font-weight: 800;
}
.home-upcoming-event .view-event .event .date .month {
    color: #4d4b4b;
    font-size: 1.3rem;
    font-weight: 700;
}

.home-testimonials {
    margin-top: 100px;
    position: relative;
    z-index: 9;
}
.home-testimonials .sub-title {
    color: #1f9548;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.home-testimonials .tns-controls {
    position: absolute;
    bottom: -18%;
    left: 35%;
    margin-top: 60px;
    padding: 45px;
    text-align: center;
    background-color: #faa61a;
    clip-path: circle();
    z-index: -2;
    opacity: 0.6;
}
.home-testimonials .tns-controls button {
    z-index: 999;
    color: #faa61a;
    font-weight: 700;
    font-size: 2rem;
    margin-top: 80px;
    padding: 8px;
    font-size: 2rem;
    border: none;
    margin-left: 20px;
    clip-path: circle();
}
@media screen and (min-width: 1400px) {
    .home-testimonials .tns-controls {
        bottom: -24%;
        left: 35%;
    }
}
@media screen and (max-width: 1199px) {
    .home-testimonials .tns-controls {
        bottom: -28%;
        left: 35%;
    }
}
@media screen and (max-width: 991px) {
    .home-testimonials .tns-controls {
        bottom: -18%;
        left: 28%;
    }
}
@media screen and (max-width: 767px) {
    .home-testimonials .tns-controls {
        bottom: -10%;
        left: 15%;
    }
    .home-testimonials .tns-controls button {
        margin-right: 15px;
    }
}
.home-testimonials .testimonial-slider .item .testimonial-box {
    padding: 0px 18%;
}
@media screen and (max-width: 1199px) {
    .home-testimonials .testimonial-slider .item .testimonial-box {
        padding: 0px;
    }
}
.home-testimonials .testimonial-slider .item .testimonial-image img {
    object-fit: cover;
}
.home-testimonials .testimonial-contain i {
    font-size: 40px;
    color: lightgray;
}
.home-testimonials .testimonial-contain .std-name .name {
    color: #282727;
    font-size: 1.3rem;
    font-weight: 700;
}
.home-testimonials .testimonial-contain .std-batch .batch {
    color: #7e7d7d;
    font-size: 1.3rem;
    font-weight: 400;
}
.home-testimonials .testimonial-contain .std-position .position {
    color: #4d4b4b;
    font-size: 1.3rem;
    font-weight: 500;
}
.home-testimonials .testimonial-contain .std-detail .detail {
    margin-top: 10px;
    color: #282727;
    text-align: justify;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
}

.bottom-apply-now {
    margin-top: 100px;
    height: 350px;
    background: linear-gradient(
            to bottom,
            rgba(188, 222, 222, 0.6) 50%,
            rgba(188, 221, 222, 0.6) 50%
        ),
        url("/assets/frontend/images/bottom-apply-now.jpg");
    background-size: cover;
}
@media screen and (max-width: 380px) {
    .bottom-apply-now {
        height: auto;
        padding-bottom: 10px;
    }
}
.bottom-apply-now .contain {
    max-width: 900px;
    margin-top: 10%;
}
.bottom-apply-now .contain .apply-msg {
    color: #4d4b4b;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}
.bottom-apply-now .contain .my-buttons {
    margin-top: 40px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 20px;
}
.bottom-apply-now .contain .visit-us {
    padding: 10px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: #fff;
}
.bottom-apply-now .contain .apply-now {
    padding: 10px 40px;
    font-size: 1.2rem;
    font-weight: 600;
}

.reason-to-choose-sankalpa .accordion {
    --bs-accordion-bg: none;
}
.reason-to-choose-sankalpa .accordion-item {
    border: none;
}
.reason-to-choose-sankalpa .accordion-item .accordion-button {
    color: #1f9548;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: normal;
}
.reason-to-choose-sankalpa .accordion-item .accordion-button::after {
    background-image: none;
}
.reason-to-choose-sankalpa .accordion-item .accordion-body p {
    text-align: justify;
}

.notice-main {
    margin-top: 100px;
}
.notice-main .sub-title {
    color: #1f9548;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.notice-main .notice-list .box {
    border-radius: 10px;
    box-shadow: 0px 0px 20px 1px rgb(230, 230, 230);
    min-height: 300px;
}
@media screen and (max-width: 767px) {
    .notice-main .notice-list .box {
        min-height: auto;
    }
}
.notice-main .notice-list .box .notice {
    padding: 20px 20px 10px 20px;
}
.notice-main .notice-list .box .notice-image {
    height: 230px;
    overflow: hidden;
}
.notice-main .notice-list .box .notice-image .img {
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .notice-main .notice-list .box .notice-image {
        height: auto;
    }
}
.notice-main .notice-list .box .notice-title a {
    text-decoration: none;
    color: #282727;
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
}
.notice-main .notice-list .box .notice-title a:hover {
    color: #1f9548;
}

.careers-job-opening {
    margin-top: 100px;
    margin-bottom: 100px;
}
.careers-job-opening .sub-title {
    color: #1f9548;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.careers-job-opening .job-list {
    margin-top: 50px;
}
.careers-job-opening .job-list .job-box {
    padding: 0px 40px;
}
.careers-job-opening .job-list .job-box .box {
    box-shadow: 0px 0px 20px 1px rgb(236, 236, 236);
    border-radius: 6px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    padding: 20px 0px;
}
.careers-job-opening .job-list .job-box .box .job-image img {
    margin-left: -50px;
    min-height: 100px;
    min-width: 100px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 575px) {
    .careers-job-opening .job-list .job-box .box .job-image img {
        margin-left: -30px;
    }
}
@media screen and (max-width: 510px) {
    .careers-job-opening .job-list .job-box .box .job-image img {
        min-height: 75px;
        min-width: 75px;
    }
}
.careers-job-opening .job-list .job-box .box .job-date span {
    color: #7e7d7d;
    font-family: Lato;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
}
.careers-job-opening .job-list .job-box .box .job-date span strong {
    color: #000000;
    margin-left: 3px;
}
@media screen and (max-width: 510px) {
    .careers-job-opening .job-list .job-box .box .job-date span {
        font-size: 12px;
        margin-left: 30px;
    }
}
.careers-job-opening .job-list .job-box .box .job-contain .title {
    color: #4d4b4b;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: normal;
}
@media screen and (max-width: 510px) {
    .careers-job-opening .job-list .job-box .box .job-contain .title {
        font-size: 16px;
    }
}
.careers-job-opening .job-list .job-box .box .job-contain .job-detail p {
    color: #7e7d7d;
    text-align: justify;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
}
@media screen and (max-width: 510px) {
    .careers-job-opening .job-list .job-box .box .job-contain .job-detail p {
        font-size: 12px;
    }
}
.careers-job-opening .job-list .job-box .box .job-contain .job-position {
    display: flex;
    flex-flow: row wrap;
    row-gap: 10px;
    column-gap: 10px;
}
.careers-job-opening
    .job-list
    .job-box
    .box
    .job-contain
    .job-position
    .requirement {
    padding: 5px 5px;
    border-radius: 5px;
    background: rgba(205, 236, 160, 0.7);
}
.careers-job-opening
    .job-list
    .job-box
    .box
    .job-contain
    .job-position
    .requirement
    span {
    text-align: center;
    margin: 0px;
    color: #282727;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}
@media screen and (max-width: 510px) {
    .careers-job-opening
        .job-list
        .job-box
        .box
        .job-contain
        .job-position
        .requirement
        span {
        font-size: 10px;
    }
}
@media screen and (max-width: 510px) {
    .careers-job-opening .job-list .job-box .box .job-contain .job-position {
        justify-content: center;
    }
}
.careers-job-opening .job-list .job-box .box .job-contain .apply-detail-btn {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    row-gap: 20px;
    column-gap: 20px;
}
@media screen and (max-width: 510px) {
    .careers-job-opening
        .job-list
        .job-box
        .box
        .job-contain
        .apply-detail-btn {
        row-gap: 8px;
        column-gap: 8px;
    }
    .careers-job-opening
        .job-list
        .job-box
        .box
        .job-contain
        .apply-detail-btn
        a {
        font-size: 10px;
        padding: 3px;
    }
}
@media screen and (max-width: 378px) {
    .careers-job-opening
        .job-list
        .job-box
        .box
        .job-contain
        .apply-detail-btn {
        justify-content: center;
    }
}

.job-contain {
    padding-right: 20px;
}
@media screen and (max-width: 767px) {
    .job-contain {
        padding-right: 10px;
    }
}
.job-contain .sub-title {
    color: #1f9548;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.job-contain .description p {
    color: #282727;
    text-align: justify;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.job-contain .job-requirements {
    margin-top: 40px;
}
.job-contain .job-requirements .requirements-lists li {
    color: #424242;
    text-align: justify;
    font-size: 1rem;
}

.apply-job {
    padding: 20px;
    box-shadow: 0px 0px 20px 1px rgb(231, 231, 231);
}
.apply-job .job-date span {
    margin-bottom: 20px;
    color: #7e7d7d;
    font-family: Lato;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
}
.apply-job .job-date span strong {
    color: #000000;
    margin-left: 3px;
}
@media screen and (max-width: 510px) {
    .apply-job .job-date h6 {
        font-size: 12px;
        margin-left: 30px;
    }
}
.apply-job .job-position {
    display: flex;
    flex-flow: row wrap;
    row-gap: 10px;
    column-gap: 10px;
}
.apply-job .job-position .requirement {
    padding: 5px 5px;
    border-radius: 5px;
    background: rgba(205, 236, 160, 0.7);
}
.apply-job .job-position .requirement span {
    text-align: center;
    margin: 0px;
    color: #282727;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}
@media screen and (max-width: 510px) {
    .apply-job .job-position .requirement span {
        font-size: 10px;
    }
}
@media screen and (max-width: 510px) {
    .apply-job .job-position {
        justify-content: center;
    }
}
.apply-job .apply-detail-btn {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.apply-job .apply-detail-btn a {
    margin-top: 20px;
    padding: 8px 60px;
}
@media screen and (max-width: 510px) {
    .apply-job .apply-detail-btn {
        row-gap: 8px;
        column-gap: 8px;
    }
    .apply-job .apply-detail-btn a {
        font-size: 10px;
        padding: 3px;
    }
}
@media screen and (max-width: 378px) {
    .apply-job .apply-detail-btn {
        justify-content: center;
    }
}

.explore-other-vacancies {
    box-shadow: 0px 0px 10px 2px rgb(236, 236, 236);
    border-radius: 10px;
}
.explore-other-vacancies .title {
    margin-top: 30px;
    color: #282727;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}
.explore-other-vacancies > :not(:last-child):not(:first-child) {
    border-bottom: 2px solid #c0c0c0;
}
.explore-other-vacancies .box {
    padding: 20px 10px;
    overflow: hidden;
}
.explore-other-vacancies .box img {
    height: 80px;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .explore-other-vacancies .box img {
        height: 100%;
    }
}
.explore-other-vacancies .box .vacancy-detail {
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
}
.explore-other-vacancies .box .vacancy-detail a {
    color: #424242;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: normal;
}
.explore-other-vacancies .box .vacancy-detail a:hover {
    color: #1f9548;
}
.explore-other-vacancies .box .vacancy-detail h6 {
    color: #424242;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.news-and-updates {
    margin-bottom: 100px;
}
.news-and-updates .sub-title {
    color: #1f9548;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.news-and-updates .news-list .news-image {
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    max-height: 450px;
}
.news-and-updates .news-list .news-image img {
    height: 110%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.news-and-updates .news-list .news-image img:hover {
    transform: scale(1.1);
}
.news-and-updates .news-list .news-title {
    margin-top: 16px;
    color: #4d4b4b;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.news-and-updates .news-list .date {
    color: #7e7d7d;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.news-and-updates .news-list .detail p {
    margin-top: 16px;
    color: #282727;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.news-and-updates .news-list .read-more-btn {
    margin-top: 30px;
}
.news-and-updates .recent-news .title {
    background-color: #eaeaea;
    padding: 10px;
}
.news-and-updates .recent-news .title .popular-news {
    margin-bottom: 0px;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
}
.news-and-updates .recent-news .news-detail {
    height: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
}
.news-and-updates .recent-news .news-title a .resent-news-title {
    color: #4d4b4b;
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
}
.news-and-updates .recent-news .news-title a:hover h5 {
    color: #087c32;
}
.news-and-updates .recent-news .news-title h5 {
    color: #4d4b4b;
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
}
.news-and-updates .recent-news .news-date .date {
    color: #7e7d7d;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.news-and-updates .recent-news .news-image {
    height: 100%;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}
.news-and-updates .recent-news .news-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.notice-detail-main .detail {
    color: #282727;
    text-align: justify;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.notice-detail-main .notice-images {
    margin-top: 50px;
    margin-bottom: 100px;
}
.notice-detail-main .notice-images .image {
    border: 1px solid rgb(235, 235, 235);
    padding: 50px;
}
.notice-detail-main .notice-images .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.notice-detail-main .notice-images .image img:hover {
    transform: scale(1.3);
}

.news-detail-main {
    margin-top: -100px;
    margin-bottom: 100px;
}
.news-detail-main .detail {
    color: #4d4b4b;
    text-align: justify;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.news-detail-main .image {
    height: 100%;
    width: 100%;
}
.news-detail-main .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.news-detail-main .next-prev-btn {
    margin-top: 80px;
    display: flex;
    flex-direction: row wrap;
    justify-content: center;
}
.news-detail-main .next-prev-btn .my-btns {
    padding-bottom: 25px;
    width: 65%;
    display: flex;
    flex-direction: row wrap;
    justify-content: space-between;
    border-bottom: 1px solid #b9b9b9;
}
.news-detail-main .next-prev-btn .my-btns a {
    text-decoration: none;
    color: #7e7d7d;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.news-detail-main .next-prev-btn .my-btns a:hover {
    color: #087c32;
}

.gallery-main {
    margin-bottom: 100px;
}
.gallery-main .sub-title {
    color: #1f9548;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.gallery-main .gallery {
    height: 100%;
    width: 100%;
    position: relative;
    margin-top: 50px;
    overflow: hidden;
}
.gallery-main .gallery .image {
    height: 100%;
    width: 100%;
}
.gallery-main .gallery .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.gallery-main .gallery:hover .image img {
    transform: scale(1.1) rotate(2deg);
}
.gallery-main .gallery .gallery-contain {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -1px;
    background-image: url("../images/gallery-vector.png");
    background-position: bottom;
    background-size: 101% 60%;
    background-repeat: no-repeat;
    display: flex;
    flex-flow: column wrap;
    justify-content: end;
}
.gallery-main .gallery .gallery-contain .gallery-title {
    text-align: center;
    margin-bottom: 16px;
}
.gallery-main .gallery .gallery-contain .gallery-title .title {
    color: #282727;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.gallery-main .gallery .gallery-contain .gallery-title .date {
    color: #4d4b4b;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media screen and (max-width: 350px) {
    .gallery-main .gallery .gallery-contain .gallery-title .title {
        font-size: 0.8rem;
    }
    .gallery-main .gallery .gallery-contain .gallery-title .date {
        font-size: 0.7rem;
    }
}
@media screen and (max-width: 767px) {
    .gallery-main .gallery .gallery-contain .gallery-title {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 400px) {
    .gallery-main .gallery .gallery-contain .gallery-title {
        margin-bottom: 10px;
    }
}

.gallery-details-main {
    margin-bottom: 100px;
}
.gallery-details-main .img-div {
    overflow: hidden;
}
.gallery-details-main .img-div img {
    transition: all 0.3s ease;
}
.gallery-details-main .img-div img:hover {
    opacity: 0.9;
    transform: scale(1.009);
}
.gallery-details-main .main-image {
    height: 400px;
    width: 100%;
}
.gallery-details-main .main-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 400px) {
    .gallery-details-main .main-image {
        height: 100%;
    }
}
.gallery-details-main .program-contain .detail {
    height: 100%;
    background-color: rgba(31, 149, 72, 0.5);
    padding: 55px;
}
@media screen and (max-width: 400px) {
    .gallery-details-main .program-contain .detail {
        padding: 40px 20px;
    }
}
.gallery-details-main .program-contain .detail .program-title .title {
    text-align: center;
    color: #282727;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.gallery-details-main .program-contain .detail .program-detail p {
    color: #282727;
    text-align: justify;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bim-introduction {
    margin-bottom: 100px;
}
.bim-introduction .detail {
    color: #282727;
    text-align: justify;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.bim-introduction .course-composition {
    background: rgba(250, 166, 26, 0.5);
    padding: 20px 40px;
}
.bim-introduction .course-composition .composition-title {
    color: #000;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.bim-introduction .course-composition .composition-lists {
    margin-top: 20px;
}
.bim-introduction .course-composition .composition-lists .list {
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.bim-introduction .introduction-image {
    margin-top: 20px;
    width: 100%;
}
.bim-introduction .introduction-image img {
    width: 100%;
    max-height: 205px;
    object-fit: cover;
}
.bim-introduction .curricular-info {
    background: rgba(31, 149, 72, 0.5);
    padding: 30px;
}
.bim-introduction .curricular-info .title {
    color: #282727;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.bim-introduction .curricular-info .info {
    display: flex;
    flex-flow: row nowrap;
    column-gap: 10px;
}
.bim-introduction .curricular-info .info i {
    font-weight: 400;
    font-size: 1.3rem;
}
.bim-introduction .curricular-info .info p {
    color: #000;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0px;
}
.bim-introduction .curricular-info .info p strong {
    font-weight: 600;
}
.bim-introduction .what-after-bim-box {
    background: linear-gradient(
            to bottom,
            rgba(180, 180, 180, 0.5) 100%,
            rgb(161, 161, 161) 80%
        ),
        url("/assets/frontend/images/what-after-bim-box.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
}
.bim-introduction .what-after-bim .sub-title {
    color: #282727;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.bim-introduction .what-after-bim .job-prospects-list {
    color: #282727;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    list-style-type: decimal;
}

.course-contents {
    margin-bottom: 100px;
}
.course-contents .semesters-courses .yearly-btn {
    display: flex;
    flex-flow: row nowrap;
    column-gap: 10px;
}
.course-contents .semesters-courses .yearly-btn a:hover {
    background-color: #087c32;
    color: #fff;
}
.course-contents .semesters-courses .accordion .accordion-item {
    border-color: #087c32;
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.course-contents
    .semesters-courses
    .accordion
    .accordion-item
    .accordion-header
    .accordion-button {
    background-color: #1f9548;
    color: #fff;
    padding: 20px 10px;
}
.course-contents
    .semesters-courses
    .accordion
    .accordion-item
    .accordion-header
    .accordion-button::after {
    font-size: 40px !important;
}
.course-contents
    .semesters-courses
    .accordion
    .accordion-item
    .accordion-body
    .subject-list
    .subject {
    padding: 5px;
    list-style-type: none;
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
}

.financial-details-and-support {
    margin-bottom: 100px;
}
.financial-details-and-support .sub-title {
    color: var(--text-dark, #4d4b4b);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.financial-details-and-support .fd-contain {
    position: relative;
}

.financial-details-and-support .fd-contain span{
    font-size: 1rem;
}

.financial-details-and-support .fd-contain .fd-btns {
    display: flex;
    row-gap: 10px;
    column-gap: 10px;
    flex-flow: row wrap;
    position: absolute;
    top: 0px;
}
@media screen and (max-width: 526px) {
    .financial-details-and-support .fd-contain .fd-btns {
        position: unset;
    }
}
.financial-details-and-support .fd-contain .fd-btns .my-btn {
    padding: 9px 20px;
    text-decoration: none;
    border-radius: 5px 5px 0px 0px;
    background-color: #087c32;
    border: 1px solid #087c32;
    color: white;
    font-size: 1rem;
    transition: all 0.15s ease-in-out;
}
.financial-details-and-support .fd-contain .fd-btns .my-btn.active {
    background-color: white;
    border-bottom: 0px;
    padding-bottom: 11px;
    color: #087c32;
}
@media screen and (max-width: 526px) {
    .financial-details-and-support .fd-contain .fd-btns .my-btn.active {
        border-bottom: 1px solid #087c32;
        padding-bottom: 9px;
    }
}
.financial-details-and-support .fd-contain .detail {
    margin-top: 44px;
    z-index: -99;
}
@media screen and (max-width: 526px) {
    .financial-details-and-support .fd-contain .detail {
        margin-top: 0px;
    }
}
.financial-details-and-support .fd-contain .detail .fee-structure {
    padding-top: 20px;
    border: 1px solid #087c32;
}
.financial-details-and-support
    .fd-contain
    .detail
    .fee-structure
    .scholarship-detail-list
    .list {
    color: #000;
    font-size: 1rem;
    font-weight: 400;
    list-style-type: decimal;
    text-align: justify;
}

.frequently-ask-question {
    margin-bottom: 100px;
}
.frequently-ask-question .accordion-button {
    color: your-desired-text-color;
}
.frequently-ask-question .accordion-button .bi-chevron-down,
.frequently-ask-question .accordion-button .bi-chevron-up {
    color: red;
}
.frequently-ask-question .sub-title {
    margin-top: 10px;
    color: #087c32;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.frequently-ask-question .accordion .accordion-item {
    margin-top: 5px;
    border: none;
}
.frequently-ask-question
    .accordion
    .accordion-item
    .accordion-header
    .accordion-button {
    background-color: #fff;
    padding: 5px;
}
.frequently-ask-question .accordion .accordion-item .accordion-body {
    padding: 5px 5px;
}
.frequently-ask-question .accordion .accordion-item .accordion-body p {
    color: #7e7d7d;
    text-align: justify;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.get-in-touch {
    margin-bottom: 150px;
}
.get-in-touch .sub-title {
    color: #087c32;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.get-in-touch .detail p {
    color: #282727;
    text-align: justify;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.get-in-touch .contact-form {
    box-shadow: 0px 0px 10px 2px rgb(236, 236, 236);
    border-radius: 20px;
}
.get-in-touch .contact-form input,
.get-in-touch .contact-form textarea {
    background-color: #b2dcb5;
}
.get-in-touch .contact-form input::placeholder,
.get-in-touch .contact-form textarea::placeholder {
    font-size: 1rem;
}
.get-in-touch .contact-detail {
    margin-top: 100px;
}
.get-in-touch .contact-detail .box {
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0px 0px 20px 1px rgb(228, 228, 228);
}

.visit-our-office {
    margin-bottom: 100px;
}
.visit-our-office .sub-title {
    color: #087c32;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.visit-our-office .available-time {
    position: relative;
    height: 199px;
    width: 70%;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    background-color: #7fe3a2;
    border-radius: 20px;
}
@media screen and (max-width: 767px) {
    .visit-our-office .available-time {
        margin-top: 20px;
        width: 260px;
        height: 199px;
    }
}
.visit-our-office .available-time .time {
    color: #fff;
    font-size: 16px;
}
.visit-our-office .available-time .week {
    color: #282727;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.visit-our-office .available-time .shift {
    color: #7e7d7d;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.visit-our-office .available-time .hour {
    background-color: #faa61a;
    padding: 6px 50px;
    position: absolute;
    top: -18px;
    border-radius: 25px;
}

.apply-program-form {
    margin-bottom: 100px;
}
.apply-program-form .sub-title {
    color: #087c32;
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
}
.apply-program-form .detail {
    color: #000;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.apply-program-form .contact-box a {
    text-decoration: none;
    color: #4d4b4b;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
    word-break: break-all;
}
.apply-program-form .contact-box a i {
    font-size: 26px;
}
.apply-program-form .apply-form {
    box-shadow: 0px 0px 10px 3px rgb(230, 230, 230);
    padding: 30px;
    border-radius: 10px;
}
.apply-program-form .apply-form .form-control {
    background-color: #efefef;
    border: none;
}
.apply-program-form .apply-form .form-control::placeholder {
    color: #7e7d7d;
    font-size: 16px;
}
.apply-program-form .apply-form .form-select {
    background-color: #efefef;
    border: none;
    color: #7e7d7d;
    font-size: 16px;
    padding: 13px 13px;
}
.apply-program-form .apply-form .form-select .dropdown-item {
    color: #7e7d7d;
    font-size: 16px;
}
.apply-program-form .apply-form .custom-file-input {
    color: transparent;
    width: 100%;
}
.apply-program-form .apply-form .custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}
.apply-program-form .apply-form .custom-file-input::before {
    content: "Upload";
    color: #087c32;
    display: inline-block;
    border: 1px solid #087c32;
    border-radius: 5px;
    padding: 8px 40px;
    outline: none;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 500;
    font-size: 12pt;
    transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 991px) {
    .apply-program-form .apply-form .custom-file-input::before {
        padding: 8px 20px;
    }
}
.apply-program-form .apply-form .custom-file-input:hover::before {
    color: #fff;
    background: #087c32 !important;
}
.apply-program-form .apply-form .custom-file-input:active {
    outline: 0;
}
.apply-program-form .apply-form .custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}
.apply-program-form .apply-form .file-upload {
    position: relative;
}
.apply-program-form .apply-form .selected-file-display {
    margin-top: 10px;
    display: none;
}
.apply-program-form .apply-form .selected-file-display img {
    max-width: 100%;
    max-height: 200px;
}

/*# sourceMappingURL=style.css.map */

/*//////////////--Add Page CSS Start--/////////////////*/

.add-page-hero {
    width: 100%;
    height: 559px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(201, 201, 201, 0) 100%
    );
    /* background-image: url('/assets/images/add-hero.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.add-page-hero .add-logo {
    max-width: 450px;
    max-height: 250px;
}

.add-page-hero .add-logo img {
    width: 100%;
    height: 100%;
}

.add-page-hero .hero-title .title {
    width: 641px;
    color: #000;
    font-size: 64px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 0.64px;
}

.add-page-hero .hero-sub-title .sub-title {
    margin-top: 12px;
    width: 560px;
    font-weight: 600;
    color: #000;
}

.add-page-hero .get-start-btn a {
    padding: 10px 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.add-earn-your-degree .title-detail .detail {
    font-size: 1.2rem;
    width: 80%;
}

@media screen and (max-width: 991px) {
    .add-earn-your-degree .title-detail .detail {
        font-size: 1rem;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .add-page-hero {
        width: 100%;
        height: 100%;
        padding-bottom: 24px;
    }

    .add-page-hero .hero-title .title {
        width: 100%;
        font-size: 44px;
        text-align: center;
    }

    .add-page-hero .hero-sub-title .sub-title {
        width: 100%;
        font-size: 18px;
        text-align: center;
    }

    .add-page-hero .get-start-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.education-build-for-you {
    margin-top: 100px;
    background: linear-gradient(
            0deg,
            rgb(165, 216, 155) 0%,
            rgb(165, 216, 155, 0.5) 100%
        ),
        url("/assets/frontend/images/bottom-apply-now.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.education-build-for-you .edu-build-img {
    height: 100%;
}

.education-build-for-you .edu-build-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.education-build-for-you .detail {
    color: #000;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    /* overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9; */
}

.add-main-footer {
    margin-top: 00px;
    background: linear-gradient(
            0deg,
            rgb(165, 216, 155) 0%,
            rgb(165, 216, 155, 0.5) 100%
        ),
        url("/assets/frontend/images/add-footer-background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.add-main-footer .main-footer-contain .add-footer-detail .detail {
    color: #000;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
}
.add-fqa .accordion-button:not(.collapsed)::after {
    background-image: url("/assets/frontend/images/minus-circle.svg");
}

.add-fqa .accordion-button::after {
    background-image: url("/assets/frontend/images/plus-circle.svg");
}

.side-sticky-form {
    position: fixed;
    top: 35%;
    right: 0px;
    background-color: white;
    height: 60px;
    width: 60px;
    overflow: scroll;

    box-shadow: 0px 0px 8px 1px rgb(212, 212, 212);
    animation: animate 4s linear 0s infinite;

    z-index: 999;
    transition: all 0.6s ease-in-out;
}

.side-sticky-form:hover {
    animation: animate 0.5s linear 1;
    /* animation: animate 1s linear 1s infinite alternate; */
}

@keyframes animate {
    0% {
        box-shadow: 0px 0px 8px 1px rgb(212, 212, 212);
    }
    25% {
        box-shadow: 0px 0px 8px 1px rgb(212, 212, 212);
    }
    50% {
        box-shadow: 0px 0px 8px 1px rgb(212, 212, 212);
    }
    75% {
        box-shadow: 0px 0px 8px 1px rgb(212, 212, 212);
    }
    100% {
        box-shadow: 0px 0px 15px 40px rgba(255, 142, 142, 0);
    }
}

.side-sticky-add-form {
    margin-top: 0px;
    margin-left: 60px;
    margin-right: 20px;
    width: auto;
    height: 400px;
}

@media screen and (max-width: 500px) {
    .side-sticky-add-form {
        margin-top: 10px;
        margin-left: 40px;
        margin-right: 15px;
    }
}

@media screen and (max-height: 615px) {
    .side-sticky-form {
        top: 30%;
    }
}

@media screen and (max-height: 575px) {
    .side-sticky-form {
        top: 20%;
    }
}

.side-sticky-form .bar-icon i {
    font-size: 42px;
    color: #126831;
    padding: 9px 12px;
}

.side-sticky-add-form .apply-form {
    margin-bottom: 60px;
}

.side-sticky-add-form .apply-form input::placeholder {
    font-size: 16px;
}

@media screen and (max-width: 515px) {
    .add-page-hero .add-logo img {
        height: 100%;
        width: 100%;
    }

    .add-page-hero .hero-title .title {
        font-size: 34px;
    }
}


.about-our-values .value{
    list-style-type: decimal;
    font-size: 1.1rem;
    font-weight: 500;
}

/*//////////////--Add Page CSS End--/////////////////*/

/*# sourceMappingURL=style.css.map */
