* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

:root {
    --primary: #034da1;
    --secondary: #ba4718;
    --light: #7196c0;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}


/*********************************** Section Heading Start  ***********************************/

.section-title h5 {
    color: var(--primary);
}

.section-title h1 {
    color: var(--secondary);
}

.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: var(--white);
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}


/*********************************** Section Heading End  ***********************************/


/*********************************** Button Start  ***********************************/


.button {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--primary);
    border: 2px solid var(--primary);
    background: none;
    transition: .3s;
    text-decoration: none;
}

.button:hover {
    color: var(--white);
    background: var(--secondary) !important;
    border: 2px solid var(--secondary);
    border: none;
}

/*********************************** Button End  ***********************************/


/*********************************** Navbar Start  ***********************************/

.nav-wrapper {
    width: 100%;
    position: sticky;
    top: 0;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 999;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .navbar-brand {
    width: 80px;
    justify-self: start;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: end;
}

.navbar .nav-item a {
    color: var(--primary);
    margin-left: 16px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease-out;
}

.navbar .nav-item a:hover {
    color: var(--secondary);
}


.navbar .dropdown-menu {
    display: flex;
    flex-direction: column;
    background: var(--light);
    box-shadow: var(--box-shadow);
}

.navbar .dropdown-menu .dropdown-item {
    background: var(--light);
    color: var(--white);
    margin-left: 0 !important;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background: var(--white);
}

.nav li.nav-item {
    position: relative;
}

.nav li.nav-item:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    height: auto;
    width: auto;
}

.nav li.nav-item .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transform: translateY(50px);
    transition: 0.4s all;
}


.bottom-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
}

.bottom-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.bottom-nav .nav-item a {
    text-decoration: none;
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
}

.bottom-nav .nav-item a:hover {
    color: var(--primary);
}

@media (min-width: 992px) and (max-width: 1024px) {
    .navbar ul li a {
        margin-left: 9px !important;
        font-size: 12px !important;
        font-weight: 500 !important;
    }

    .bottom-nav .nav-item a {
        text-decoration: none;
        color: var(--white);
        margin-left: 14px !important;
        font-size: 11px !important;
    }
}

/* MOBILE MENU & ANIMATION */

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.menu-toggle,
.mennu-toggle,
.search-toggle {
    justify-self: end;
    display: none;

}

.menu-toggle:hover {
    cursor: pointer;
}

#mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}


.search-box {
    background: #E8E8E4;
    position: absolute;
    top: 40px;
    right: 0px;
    width: 350px;
    box-shadow: var(--box-shadow);
    padding: 8px;
    border-top: 4px solid var(--primary);
    display: none;
    transition: .3s linear;
    z-index: 999;
}

.search-box input[type="text"] {
    width: 248px;
    padding: 5px 10px;
    border: 1px solid var(--primary);
    outline: none;
}

.search-box input[type="button"] {
    width: 80px;
    padding: 5px 0;
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    outline: none;
    cursor: pointer;
}

@media (min-width: 576px) and (max-width: 840px) {
    .search-toggle {
        margin-left: 475px !important;
    }

    .navbar ul,
    .bottom-nav ul {
        width: 50% !important;
    }

    .nav li.nav-item .dropdown-menu {
        height: auto !important;
        width: auto !important;
    }

    .search-box {
        top: 99px !important;
        right: 100px !important;
        width: 400px !important;
    }

    .search-box input[type="text"] {
        width: 275px !important;
    }

    .search-box input[type="button"] {
        width: 100px !important;
    }
}

@media screen and (max-width: 576px) {
    .search-toggle {
        margin-left: 60px !important;
    }

    .search-box {
        top: 99px !important;
        right: 5px !important;
        width: 351px !important;
    }

    .search-box input[type="text"] {
        width: 236px !important;
    }

    .search-box input[type="button"] {
        width: 90px !important;
    }
}

@media screen and (max-width: 840px) {
    .navbar {
        border-bottom: 1px solid var(--primary);
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        justify-content: start;
        top: 99px;
        background: #cad1ed;
        box-shadow: var(--box-shadow);
        width: 70%;
        height: 100vh;
        transform: translate(-101%);
        left: 0;
        transition: .3s linear;
        z-index: 999;
    }

    .navbar li,
    .bottom-nav ul li {
        padding: 15px;
    }

    .navbar li:first-child,
    .bottom-nav ul li:first-child {
        margin-top: 20px;
    }


    .menu-toggle,
    .menu-toggle,
    .mennu-toggle,
    .search-toggle,
    .bar {
        display: block;
        cursor: pointer;
        color: var(--primary);
        font-size: 25px;
    }

    .mobile-nav,
    .mobile-navv,
    .mobile-search {
        transform: translate(0%) !important;
    }

    .nav li.nav-item:hover .dropdown-menu {
        top: 50px;
        margin-left: 15px;
    }


    .bottom-nav ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        justify-content: start;
        align-items: flex-start;
        top: 99px;
        background: var(--secondary);
        box-shadow: var(--box-shadow);
        width: 70%;
        height: 100vh;
        transform: translate(-101%);
        left: 0;
        transition: .3s linear;
        z-index: 999;
    }

}

/*********************************** Navbar End  ***********************************/


/*********************************** Footer Start  ***********************************/

.footer {
    background: var(--light);
}

.footer h4 {
    color: var(--secondary);
}

.footer .btn-link,
.footer a {
    text-decoration: none;
    color: var(--white);
}

.footer .btn-link:hover,
.footer a:hover {
    color: var(--primary) !important;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--white);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--secondary) !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--white);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid var(--secondary);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--secondary) !important;
}

/*********************************** Footer End  ***********************************/



/*********************************** Counter Start  ***********************************/

.counter {
    font-family: 'Rubik', sans-serif;
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 1;
}

.counter .counter-icon {
    color: var(--secondary);
    background-color: var(--white);
    font-size: 30px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    margin: 0 0 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    position: absolute;
    left: 0;
    top: 0;
}

.counter .counter-content {
    padding: 40px 20px 20px;
    border: 5px solid var(--light);
    border-radius: 13px;
    box-shadow: 0 0 0 15px var(--white), 0 0 35px rgba(0, 0, 0, 0.7);
}

.counter h3 {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.counter .counter-value {
    color: var(--primary);
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

.counter .fa-plus {
    color: var(--primary);
    font-size: 24px;
    margin-left: 5px;
}

@media screen and (max-width:990px) {
    .counter {
        margin-bottom: 40px;
    }
}

/*********************************** Counter End  ***********************************/




/*********************************** About Start  ***********************************/

.about {
    position: relative;
    width: 100%;
    /* padding: 45px 0; */
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {

    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: .5s;
}

.about .about-img::after {
    position: absolute;
    content: "";
    top: 60px;
    right: 60px;
    bottom: 60px;
    left: 60px;
    background: transparent;
    border: 30px solid;
    border-image: repeating-linear-gradient(45deg, rgba(0, 13, 255, 0.05), rgba(0, 8, 255, 0.05) .5%, rgba(0, 60, 255, 0.1) .5%, rgba(8, 0, 255, 0.1) 1%) 30;
    z-index: 1;
}

.about .about-img:hover::after {
    border-image: repeating-linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.1) .5%, rgba(237, 29, 29, 0.05) .5%, rgba(206, 2, 2, 0.05) 1%) 30;
}

.about .about-img-1 {
    position: relative;
    height: 100%;
    height: 100%;
    margin: 0 150px 150px 0;
}

.about .about-img-2 {
    position: absolute;
    height: 100%;
    height: 100%;
    top: 150px;
    left: 150px;
    z-index: 1;
}

.about .about-img-1 img,
.about .about-img-2 img {
    position: relative;
    width: 100%;
}

.about .about-text p {
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}

/*********************************** About End  ***********************************/



/*********************************** Features Start  ***********************************/

.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 2px solid var(--light) !important;
    padding: 15px;
    transition: 0.3s;
    color: var(--primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
    color: var(--secondary) !important;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.features .nav-link:hover {
    color: var(--secondary);
    border: 2px dashed var(--secondary) !important;
}

.features .nav-link:hover i {
    color: var(--primary) !important;
}

.features .nav-link.active {
    background: var(--secondary) !important;
    color: var(--white) !important;
    border-color: var(--secondary) !important;
}

.features .nav-link.active i {
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .features .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .features .nav-link {
        padding: 15px;
    }

    .features .nav-link i {
        font-size: 24px;
    }
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    font-weight: 600;
    font-size: 26px;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-bottom: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--secondary);
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}



/*********************************** Features End  ***********************************/



/*********************************** Services Start  ***********************************/

.services .box {
    background: var(--light);
    color: var(--secondary);
}

.services .services-box {
    background: #cad1ed;
}

.services .services-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 4px solid var(--white);
    margin-bottom: 10px;
    height: 75px;
    width: 75px;
}

.services .services-box h4 {
    color: var(--secondary);
}

.services .services-box p {
    color: var(--black);
}

.services .services-box .fa-check {
    color: var(--secondary);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--light) !important;
    border: 2px solid var(--primary) !important;
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--secondary) !important;
    border-color: var(--primary);
}


/*********************************** Services End  ***********************************/



/*********************************** Blog Start  ***********************************/
/* text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical; */

.blog .blog-card {
    border: 1px solid var(--light);
    box-shadow: var(--box-shadow);
}

.blog .blog-card h5 {
    font-weight: bold;
    color: var(--primary);
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog .blog-card .info {
    color: var(--secondary);
    margin-bottom: 16px;
    margin-top: 16px;
}

.blog .blog-card .info .border-end {
    border-right: 1px solid var(--light) !important;
}

.blog .blog-card .info .border-start {
    border-left: 1px solid var(--light) !important;
}

.blog .blog-card .text {
    color: var(--black);
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 16px;
}

/*********************************** Blog End  ***********************************/




/*********************************** Testimonial Start  ***********************************/

.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
    border-radius: 16px;
}

.testimonial-item {
    background: var(--light);
}

.testimonial-item i {
    color: var(--secondary);
    font-size: 60px;
}

.testimonial-item p {
    color: var(--white);
}

.testimonial-item h5 {
    color: var(--primary);
}

.testimonial-item span {
    color: var(--secondary);
}

/*********************************** Testimonial End  ***********************************/




/*********************************** FAQ Start  ***********************************/

@media (max-width: 991px) {
    .faq {
        padding: 0;
    }
}

.faq .img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
}

.faq .accordion-item {
    border: 0;
    margin-top: 15px;
    box-shadow: var(--box-shadow);
}

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button {
    padding: 15px 40px 15px 15px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    color: var(--primary);
    text-align: left;
    background: var(--white);
    box-shadow: none;
    border-radius: 5px;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--secondary);
    border-bottom: 0;
    box-shadow: none;
}

.faq .accordion-button:after {
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--secondary);
}

.faq .accordion-body {
    padding: 10px 30px 15px 15px;
    border: 0;
    border-radius: 5px;
    background: var(--white);
}


/*********************************** FAQ End  ***********************************/




/*********************************** Team Page Start  ***********************************/
.team .our-team {
    overflow: hidden;
    position: relative;
}

.team .our-team:after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(43, 193, 234, 0.6);
    position: absolute;
    top: -100%;
    left: 0;
    opacity: 0;
    transition: all 0.8s ease 0s;
}

.team .our-team:hover:after {
    top: 0;
    opacity: 1;
}

.team .our-team img {
    width: 100%;
    height: auto;
}

.team .our-team .social {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    top: -50%;
    left: 0;
    z-index: 1;
    transform: translateY(-50%) rotate(-12deg);
    transition: all 0.8s ease 0s;
}

.team .our-team:hover .social {
    top: 50%;
}

.team .our-team .social li {
    display: inline-block;
}

.team .our-team .social li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--primary);
    font-size: 18px;
    color: var(--white);
    margin: 0 5px;
    text-decoration: none;
}

.team .our-team .social li a:hover {
    color: var(--secondary);
    background: var(--white);
    border-radius: 50%;
    transition: .4s ease-in-out;
}

.team .our-team .team-content {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border-bottom: 3px solid var(--primary);
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.team .our-team:hover .team-content {
    background: var(--light);
}

.team .our-team .team-content:before {
    content: "";
    width: 100%;
    border-right: 420px solid var(--white);
    border-top: 60px solid transparent;
    position: absolute;
    top: -60px;
    left: 0;
}

.team .our-team:hover .team-content:before {
    border-right-color: var(--light);
}

.team .our-team .team-content:after {
    content: "";
    width: 3px;
    height: 50%;
    background: var(--primary);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.team .our-team .title {
    font-size: 18px;
    color: var(--secondary);
    margin: 0;
}

.team .our-team .post {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--black);
    margin-top: 3px;
}

@media only screen and (max-width: 990px) {
    .team .our-team {
        margin-bottom: 30px;
    }
}

/*********************************** Team Page End  ***********************************/




/*********************************** Contact Start  ***********************************/

.contact .info-box {
    color: var(--light);
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px 0 32px 0;
    border-radius: 4px;
}

.contact .info-box i {
    font-size: 32px;
    color: var(--secondary);
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #ba461895;
}

.contact .info-box h3 {
    font-size: 20px;
    color: var(--light);
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.74);
    padding: 30px;
    border-radius: 4px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
    margin-bottom: 25px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #111111;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: var(--secondary);
    border: 0;
    padding: 10px 32px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #e35052;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*********************************** Contact End  ***********************************/


/*********************************** Donate Start  ***********************************/

.donate .info h1 {
    color: var(--primary);
}


.donate-service .service-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    transition: .3s;
}

.donate-service .service-icon {
    width: 60px;
}

.donate-service .service-icon i {
    display: block;
    color: var(--secondary);
    font-size: 50px;
    line-height: 50px;
    margin-top: 5px;
}

.donate-service .service-text {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
}

.donate-service .service-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 10px);
    top: 5px;
    left: 0;
    background: var(--light);
}

.donate-service .service-text::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 40px;
    top: calc(50% - 20px);
    left: -1px;
    background: var(--primary);
}

.donate-service .service-text h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
}

.donate-service .service-text p {
    margin: 0;
}

.donate-box {
    background: linear-gradient(rgba(255, 106, 0, 0.81), rgba(1, 107, 255, 0.782)), url(image/donate.jpg);
    background-attachment: fixed;
}

.donate-box h1,
.donate-box p {
    color: var(--white);
}

.donate-box .info {
    background: var(--white);
}

.donate-box .info input {
    border: 2px solid var(--light);
}

.donate-box .info .btn-donate {
    background: var(--light);
    color: var(--primary);
    margin: 5px;
}

.donate-box .info .btn-donate:hover {
    background-color: var(--white);
    border: 2px solid var(--secondary);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--white) !important;
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

/*********************************** Donate End  ***********************************/


/*********************************** about Start  ***********************************/

.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    width: 100%;
    height: 100vh;
}

.about .about-tab {
    width: 100%;
}

.about .about-tab .nav.nav-pills .nav-link {
    padding: 8px;
    font-weight: 600;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    transition: none;
}

.about .about-tab .nav.nav-pills .nav-link:hover,
.about .about-tab .nav.nav-pills .nav-link.active {
    color: var(--secondary);
    padding-bottom: 7px;
    border-bottom: 3px solid var(--secondary);
}

.about .about-tab .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.about .about-tab .tab-content .container {
    padding: 0;
}

@media (max-width: 991.98px) {
    .about .section-header {
        margin-top: 30px;
    }
}

/*********************************** about End  ***********************************/



/***********************************  campus life Start  ***********************************/


#campus {
    background-image: url(/image/campus_life_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#campus .image img {
    width: 100%;
}

#campus .service-img {
    position: relative;
    width: 100%;
}

#campus .service-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#campus .service-img::after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    background: transparent;
    border: 2px solid #ffffff;
    z-index: 1;
}


/***********************************  campus life End  ***********************************/




/***********************************  Partners Start  ***********************************/

.partner-one {
    background-image: url(image/partners.avif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 330px;
    width: 100%;
}

.partner-one .our {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 4px;
}

.partner-two {
    /* clip-path: polygon(40% 0, 100% 0%, 100% 100%, 20% 100%); */
    background-color: var(--secondary);
    height: 540px;
}

.partner-two .icon i {
    font-size: 30px;
    color: #ba4718;
}

.partner-two .Valueable {
    color: var(--primary);
    font-size: 30px;
    font-weight: 600;
}

.partner-four .Request {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary);
}

.partner-four p {
    text-align: justify;
}

.partner-four .four-btn {
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    font-weight: 600;
    border-radius: 10px;
    /* color: #fff !important; */

    /* float: right; */
}

/***********************************  Partners End  ***********************************/






/* <!-- ***********************************employee recruitment start***********************************  --> */
#employe .top p {
    /* border: 1px solid red; */
    border-radius: 15px;
    background: rgba(223, 117, 18, 0.09);
    color: #df8612;
}

#employe .heading h4 {
    font-weight: 600;
}

#employe .button-employe .btn-tertiary {
    border: 1px solid var(--primary);
    font-weight: 600;
    font-size: 20px;
    color: var(--primary) !important;
}

#employe .button-employe .btn-tertiary:hover {
    background: var(--secondary);
    color: var(--white) !important;
    border: none;
}

#employe .modal-dialog input {
    border-radius: 10px;
}

#employe .modal-dialog label {
    color: #111111;
    font-weight: 600;
}

#employe .modal-dialog select {
    border-radius: 10px;
}

#employe .modal-dialog .btn-submit {
    border: 1px solid var(--primary);
    font-weight: 600;
    border-radius: 10px;
    background-color: var(--white);
    color: var(--primary);
}

#employe .modal-dialog .btn-submit:hover {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
}

#employe .card:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/* <!-- *******************************employee recruitment end  *******************************--> */








/* *******************************-reskilling start*******************************-  */
#reskilling .top {
    background-image: linear-gradient(to right, #1f7a8c 0%, #053c5e 58%, #053c5e 100%),
        url(./skill.jpg);

}

#reskilling .personality {
    font-size: 40px;
    text-align: left;
    line-height: 54px;
    margin-bottom: 12px;
    font-weight: 600;
}

#reskilling .developement {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .5px;
}

#reskilling .button-skill .btn-tertiary {
    border: 1px solid var(--white);
    font-weight: 600;
    font-size: 20px;
    border-radius: 5px !important;
    color: #fff;
}

#reskilling .button-skill .btn-tertiary:hover {
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    color: #fff;
}

#reskilling .second-top {
    background-color: #f8f8f8;
}

#reskilling .second-top .two p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    /* text-align: justify; */
}

#reskilling .skill {
    font-size: 34px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 24px;
    color: #000;
}



#reskilling .three-top .serviceBox {
    color: #606060;
    padding: 0 10px 60px;
    background-color: #F9A11C;
    border: 1px solid transparent;
    border-radius: 20px;
    margin: 80px 0 30px;
    position: relative;
}

#reskilling .three-top .serviceBox .service-content {
    text-align: center;
    padding: 15px 20px 30px;
    margin-top: -80px;
    border-radius: 25px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s;
}

#reskilling .three-top .serviceBox .service-content:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

#reskilling .three-top .serviceBox .service-content:after {
    content: '';
    height: 50px;
    width: 50px;
    border: 25px solid transparent;
    border-top: 25px solid #fff;
    transform: translateX(-50%);
    position: absolute;
    bottom: -50px;
    left: 50%;
}

#reskilling .three-top .serviceBox .service-icon {
    display: inline-block;
    color: #F9A11C;
    font-size: 90px;
    margin-bottom: 10px;
    transition: all 0.3s ease 0s;
}

#reskilling .three-top .serviceBox:hover .service-icon {
    transform: rotateX(360deg);
}

#reskilling .three-top .serviceBox .title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
}

#reskilling .three-top .serviceBox .description {
    font-size: 15px;
    line-height: 25px;
    margin: 0;
}

#reskilling .three-top .serviceBox a {
    text-decoration: none;
}

#reskilling .three-top .serviceBox .read-more {
    display: block;
    width: 60%;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    padding: 10px 0;
    background-color: #6D4D42;
    border-radius: 15px;
    transform: translateX(-50%);
    transition: all 0.3s ease 0s;
    position: absolute;
    left: 50%;
    bottom: -20px;
}

#reskilling .three-top .serviceBox .read-more:hover {
    text-decoration: none;
    letter-spacing: 2px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

#reskilling .three-top .serviceBox.green {
    background-color: #44BB85;
}

#reskilling .three-top .serviceBox.green .service-icon {
    color: #44BB85;
}

#reskilling .three-top .serviceBox.green .read-more {
    background-color: #007A6D;
}

#reskilling .three-top .serviceBox.blue {
    background-color: #36BFC5;
}

#reskilling .three-top .serviceBox.blue .service-icon {
    color: #36BFC5;
}

#reskilling .three-top .serviceBox.blue .read-more {
    background-color: #015F65;
}

#reskilling .three-top .serviceBox.red {
    background-color: #f23d3a;
}

#reskilling .three-top .serviceBox.red .service-icon {
    color: #f23d3a;
}

#reskilling .three-top .serviceBox.red .read-more {
    background-color: #ad0e0c;
}

@media only screen and (max-width:990px) {
    #reskilling .three-top .serviceBox {
        margin-bottom: 60px;
    }

    #reskilling .three-top .serviceBox .service-content {
        padding: 20px 15px 30px;
    }
}

@media only screen and (max-width:767px) {
    #reskilling .three-top .serviceBox {
        margin-bottom: 130px;
    }
}


#reskilling .three-top .line_clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#reskilling .button-modal button {
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: var(--white);
    font-size: 18px;
    float: right;
    font-weight: 600;
}

#reskilling .button-modal button:hover {
    border: 1px solid var(--secondary);
    color: var(--white);
    background-color: var(--secondary);
}

#reskilling .basic {
    font-size: 20px;
    font-weight: 600;
    color: rgb(3, 3, 3);
}

#reskilling .we {
    /* font-size: px; */
    font-weight: 600;
    color: rgb(164, 154, 154) !important;
}

#reskilling .well {
    font-size: 12px;
    font-weight: 600;
    color: rgb(164, 154, 154) !important;
}

#reskilling label {
    color: rgb(54, 52, 51);
}

/* reskilling end  */


/* out_bound start  */
#out_bound .image img {
    width: 100%;
}

#out_bound .heading {
    font-size: 28px;
    font-weight: 600;
}

#out_bound .paragraph {
    /* font-size: 28px; */
    font-weight: 600;
}

/********************************- out_bound end *******************************- */




/* *******************************-<!-- online courses start  -->*******************************- */

.moretext {
    display: none;

}

#online-course a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
}

#online-course a:hover {
    cursor: pointer;
}

#online-course .card {
    box-shadow: var(--box-shadow);
    border: 1px solid var(--primary);
}

#online-course .line_clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#online-course .how {
    font-size: 20px;
    color: var(--secondary);
    font-weight: 600;

}

#online-course .hour {
    color: #b6acac;
    font-weight: 600;

}

/********************************- <!-- online courses end *******************************- --> */

/*******************************-* <!-- healthcare start *******************************- --> */
#healthcare {
    background-color: #f4f4f4;
}

#healthcare .image img {
    width: 100%;
    height: 439px;
}

#healthcare .number {
    font-weight: 800;
    font-size: 35px;
    color: #d0c7c7;
}

#healthcare .medical {
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary);
}

#healthcare .team {
    font-weight: 700;
    /* text-align: justify; */
}

/* *******************************-<!-- healthcare end  --> *******************************-*/








/* *******************************-<!-- collaboration start  *******************************---> */
#collaboration h3 {
    font-size: 42px;
    font-weight: 600;
    color: var(--primary);
}

@media(max-width:576px) {
    #collaboration h3 {
        font-size: 27px;
    }

    #collaboration p {
        font-size: 16px;
    }
}

#collaboration p {
    font-size: 18px;
    font-weight: 600;
    text-align: justify;
    color: grey;
}

#collaboration .right img {
    width: 100%;
    border-radius: 15px;
}


@media (max-width: 767px) {
    #collaboration .carousel-inner .carousel-item>div {
        display: none;
    }

    #collaboration .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

#collaboration .carousel-inner .carousel-item.active,
#collaboration .carousel-inner .carousel-item-next,
#collaboration .carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

    #collaboration .carousel-inner .carousel-item-end.active,
    #collaboration .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    #collaboration .carousel-inner .carousel-item-start.active,
    #collaboration .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

#collaboration .carousel-inner .carousel-item-end,
#collaboration .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

#collaboration .our-team {
    border: 1px solid #d3d3d3;
    position: relative;
    overflow: hidden;
}

#collaboration .our-team img {
    width: 100%;
    height: 250px;
}

#collaboration .our-team .team-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 18px;
    background: rgba(0, 0, 0, 0.7);
    transform: translateX(-100%);
    transition: all 0.20s ease 0s;
}

#collaboration .our-team:hover .team-content {
    transform: translateX(0);
}

#collaboration .our-team .team-content .post-title {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}

#collaboration .our-team .team-content .post {
    font-size: 14px;
    color: #cb95e1;
    display: block;
    margin-bottom: 20px;
}

#collaboration .our-team .description {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 20px;
}

#collaboration .our-team .team_social {
    margin: 0;
    padding: 0;
    list-style: none;
}

#collaboration .our-team .team_social li {
    display: inline-block;
    margin-right: 5px;
}

#collaboration .our-team .team_social li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #f5f5f5;
    font-size: 17px;
    color: #f5f5f5;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    transition: border 0.3s ease 0s;
}

#collaboration .our-team .team_social li a:hover {
    border-color: transparent;
}

#collaboration .our-team .team-prof {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: right;
    padding: 20px 16px;
    background: rgba(0, 0, 0, 0.7);
    transform: translateX(0);
    transition: all 0.20s ease 0s;
}

#collaboration .our-team:hover .team-prof {
    transform: translateX(100%);
}

#collaboration .our-team .team-prof .post-title {
    font-size: 18px;
    color: #fff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

#collaboration .our-team .team-prof .post {
    font-size: 14px;
    color: #cb95e1;
    margin-bottom: 0;
}

@media only screen and (max-width: 990px) {
    #collaboration .our-team {
        margin-bottom: 20px;
    }
}



#collaboration .fot-point {
    background-color: #e3e1e1;
}

#collaboration .fot-point .d-flex {
    /* border: 1px solid red; */
    background-color: #fff;
}

#collaboration .fot-point .d-flex i {
    font-size: 25px;
    color: var(--secondary);
}

/* <!--*******************************- collaboration end*******************************-  --> */




/* <!-*******************************-- funding start *******************************- --> */
#fund .funding-one {
    background-color: #000;
}

#fund .wrapper {
    width: 520px;
    max-width: 100%;
}

#fund .progress-bar {
    height: 13px;
    width: 100%;
    background-color: #BFADA3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 0 10px inset rgba(0, 0, 0, 0.2);
    position: relative;
}

#fund *+.progress-bar {
    margin-top: 30px;
}

#fund .bar {
    width: 0;
    height: 100%;
    background-color: rgb(61, 194, 61);
    /* background-color: linear-gradient(to right, #ffcc00 0%, #ff6666 100%); */

    /*Lollipop background gradient*/
    background-image: linear-gradient(-45deg,
            rgba(14, 202, 180, 0.425) 25%,
            transparent 25%,
            transparent 50%,
            rgba(232, 25, 25, 0.886) 50%,
            rgba(127, 212, 15, 0.892) 75%,
            transparent 75%,
            transparent);

    background-size: 30px 30px;
    animation: move 2s linear infinite;
    box-shadow: 2px 0 10px inset rgba(0, 0, 0, 0.2);
    transition: width 2s ease-out;
}

/*Lollipop background gradient animation*/
@keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 30px 30px;
    }
}

#fund .perc {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 12px;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
}

#fund .loader-name {
    margin-bottom: -23px;
}

#fund .funding-two .image img {
    width: 100%;
    height: 360px;
    border-radius: 20px;
    object-fit: cover;
}

#fund .funding-two .card h3 {
    /* color: #fff; */
    font-weight: 600;
}

#fund .funding-two .card p {
    /* color: #656b87; */
    font-weight: 600;
}

/********************************- <!-- funding end*******************************-  --> */






/* <!-*******************************- international skill training strart *******************************-  --> */

#international-skill .skill-one {
    /* background-image: url(./image/skill-1.avif); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(to right, rgb(115 114 127 / 76%), rgb(45, 45, 49)), url(./image/skill-1.avif) !important;
    height: 350px;

}

@media(max-width:576px) {
    #international-skill .skill-one h2 {
        font-weight: 600;
        font-size: 24px !important;
        text-align: center;
    }

    #international-skill .skill-one .d-flex {
        font-weight: 600;
        font-size: 17px !important;
        color: #fff;
    }

    #international-skill .skill-counter .learn-head {
        font-weight: 600;
        font-size: 19px !important;
    }

    #international-skill .skill-counter .learn {
        font-weight: 600;
        font-size: 11px !important;
    }
}

#international-skill .skill-one h2 {
    font-weight: 600;
    font-size: 45px;
}

#international-skill .skill-one .d-flex {
    font-weight: 600;
    font-size: 25px;
    color: #fff;
}

#international-skill .skill-counter {
    background-color: #002333;
}

#international-skill .skill-counter .card {
    background-color: #003A55;
}

#international-skill .skill-counter .number {
    color: var(--secondary);
    font-size: 32px;
    font-weight: 600;
}

#international-skill .skill-counter .para {
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
}



#international-skill .skill-counter .card-body {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
}

#international-skill .skill-counter .d-flex {
    justify-content: space-between;
    font-size: 13px;
    text-align: initial;
    align-items: center;
    line-height: 24px;
    font-weight: 600;
}

#international-skill .skill-counter .card-body p {
    font-weight: 600;
}

#international-skill .skill-counter .learn-head {
    font-weight: 600;
    font-size: 40px;
}

#international-skill .skill-counter .learn {
    font-weight: 600;
    font-size: 20px;
}

#international-skill .skill-counter .skillshare {
    font-weight: 800;
    color: #fff;
}

#international-skill .skill-counter .set {
    font-weight: 600;
    color: #fff;
}

#international-skill .skill-counter .button {
    border: 1px solid #fff;
    color: #fff;
}


/* *******************************-<!-- international skill training end*******************************-   --> */



/* *******************************-<!-- faculty start  *******************************---> */
#faculty img {
    width: 100%;
    height: 450px;
}

/* *******************************-<!-- faculty end  --*******************************-> */





/*******************************-* <!-- coe start  *******************************---> */
#coe .main-timeline {
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
}

#coe .main-timeline:after {
    content: '';
    display: block;
    clear: both;
}

#coe .main-timeline:before {
    content: '';
    height: 100%;
    width: 7px;
    border-left: 7px dashed #999;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: 0;
}

#coe .main-timeline .timeline {
    width: 50%;
    padding: 0 0 0 40px;
    margin: 0 0 0 20px;
    float: right;
    position: relative;
}

#coe .main-timeline .timeline a {
    text-decoration: none;
}

#coe .main-timeline .timeline:after {
    content: '';
    background-color: #6044F0;
    height: 35px;
    width: 40px;
    position: absolute;
    left: 0;
    top: 60px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

#coe .main-timeline .timeline-content {
    color: #555;
    text-align: center;
    padding: 35px 40px 35px;
    display: block;
    position: relative;
    z-index: 1;
}

#coe .main-timeline .timeline-content:hover {
    text-decoration: none;
}

#coe .main-timeline .timeline-content:before,
#coe .main-timeline .timeline-content:after {
    content: '';
    background-color: #fff;
    border-radius: 50px 0;
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 0;
    top: 0;
    z-index: -1;
}

#coe .main-timeline .timeline-content:after {
    background-color: transparent;
    box-shadow: none;
    border: 2px solid #6044F0;
    left: 0;
    bottom: 0;
    right: 10px;
    top: 10px;
}

#coe .main-timeline .timeline-icon {
    color: #fff;
    background-color: #000;
    font-size: 25px;
    text-align: center;
    line-height: 50px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

#coe .main-timeline .title {
    color: #6044F0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px;
}

#coe .main-timeline .description {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 0 0 10px;
}

#coe .main-timeline .timeline:nth-child(even) {
    float: left;
    padding: 0 40px 0 0;
    margin: 0 20px 0 0;
}

#coe .main-timeline .timeline:nth-child(even):after {
    transform: rotateY(180deg);
    left: auto;
    right: 0;
}

#coe .main-timeline .timeline:nth-child(even) .timeline-content:before,
#coe .main-timeline .timeline:nth-child(even) .timeline-content:after {
    border-radius: 0 50px;
}

#coe .main-timeline .timeline:nth-child(even) .timeline-icon {
    left: auto;
    right: 0;
}

#coe .main-timeline .timeline:nth-child(4n+2):after {
    background-color: #FF3754;
}

#coe .main-timeline .timeline:nth-child(4n+2) .timeline-content:after {
    border-color: #FF3754;
}

#coe .main-timeline .timeline:nth-child(4n+2) .title {
    color: #FF3754;
}

#coe .main-timeline .timeline:nth-child(4n+3):after {
    background-color: #01C1E1;
}

#coe .main-timeline .timeline:nth-child(4n+3) .timeline-content:after {
    border-color: #01C1E1;
}

#coe .main-timeline .timeline:nth-child(4n+3) .title {
    color: #01C1E1;
}

#coe .main-timeline .timeline:nth-child(4n+4):after {
    background-color: #10B175;
}

#coe .main-timeline .timeline:nth-child(4n+4) .timeline-content:after {
    border-color: #10B175;
}

#coe .main-timeline .timeline:nth-child(4n+4) .title {
    color: #10B175;
}

@media screen and (max-width:767px) {
    #coe .main-timeline:before {
        display: none;
    }

    #coe .main-timeline .timeline,
    #coe .main-timeline .timeline:nth-child(even) {
        width: 100%;
        padding: 0 0 35px 0;
        margin: 0;
    }

    #coe .main-timeline .timeline:last-child {
        padding: 0;
    }

    #coe .main-timeline .timeline:after,
    #coe .main-timeline .timeline:nth-child(even):after {
        transform: translateX(-50%) rotate(-90deg);
        left: 50%;
        top: auto;
        bottom: 0;
    }

    #coe .main-timeline .timeline:last-child:after {
        display: none;
    }
}

@media screen and (max-width:576px) {
    #coe .main-timeline .title {
        font-size: 18px;
    }
}

/* <!-*******************************-- coe end*******************************-  --> */



/*******************************-* career start*******************************-  */

#career .bg-primary {
    /* background-image: url(image/admin.jpg); */
    background-image: linear-gradient(to right, rgb(10 47 95 / 81%), rgb(47 66 95 / 47%)), url(image/career.avif) !important;
    width: 100%;
    padding: 35px;
    height: 550px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#career .job-heading {
    font-size: 40px;
    font-weight: 600;
}

@media(max-width:576px) {

    #career .bg-primary {
        height: 509px !important;

        padding: 35px !important;
    }

    #career .owl-nav {
        display: none;
    }

    #career .job-heading {
        font-size: 20px !important;
        font-weight: 600;
    }

    #career .Each {
        font-size: 12px !important;
        font-weight: 600;
    }

    #career .Millions {
        font-size: 23px !important;
    }

    #career .Find {
        font-size: 33px !important;
    }
}

@media(max-width:768px) {
    #career .bg-primary {
        height: 436px !important;

        padding: 35px !important;
    }

    #career .job-heading {
        font-size: 29px;
        font-weight: 600;
    }

    #career .Each {
        font-size: 17px;
        font-weight: 600;
    }
}

#career .Each {
    font-size: 18px;
    font-weight: 600;
}

#career .btn {
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    color: var(--white);
}

#career .item {
    /* background-color: var(--primary); */
    color: var(--white);
    text-align: center;
}

#career .owl-carousel h6 {
    height: 8rem;
    background: #ef4a0714;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    /* font-size: 70px; */
    color: #000000;
    margin: 6px;
    border-radius: 10px;
    font-weight: 600;
}

#career .Millions {
    color: #999;
    font-size: 30px;
    font-weight: 600;
}

#career .Find {
    color: #999;
    font-size: 45px;
    color: var(--primary);
    font-weight: 600;

}

#career .positions {
    color: #544e4e;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/********************************- career end *******************************- */






/* <!-*******************************-- technical intern training program start  *******************************---> */

#intern .image-intern img {
    width: 100%;
}


#intern .key img {
    width: 133px;
    height: 131px;
}

#intern .key .card {
    height: 350px;
}

#intern .significant p {
    font-size: 15px;
}

/*******************************-* <!-- technical intern training program end *******************************- --> */


/********************************- <!-- life skills start*******************************-  --> */
#life_skill a {
    cursor: pointer;
    /* border: 1px solid red !important; */
}

#life_skill h3 {
    color: var(--secondary);
    font-weight: 600;
}

#life_skill a:hover {
    color: var(--primary);
    /* text-decoration: underline; */
}

/* *******************************-<!-- life skills end  -*******************************--> */




/* *******************************-<!-- scholarship start  *******************************---> */
#scholarship .free {
    color: var(--primary);
    font-weight: 600;
    font-size: 35px;
}

#scholarship .image img {
    border-radius: 20px;
}

#scholarship .email-submit {
    /* border: 1px solid red; */
    border-radius: 10px;
    background-color: #e5dfdf;
}

#scholarship .email-submit input {
    /* border-radius: 10px; */
    background-color: #fff;
}

#scholarship .email-submit .btn {
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    color: var(--white);
}

#scholarship .email-submit .btn:hover {
    border: 1px solid var(--primary);
    background-color: var(--white);
    color: var(--secondary);
}

#scholarship .The {
    color: var(--primary);
    font-weight: 600;
    font-size: 35px;
}

#scholarship .benefit .icon i {
    /* border: 1px solid red; */
    border-radius: 20%;
    padding: 20px;
    color: var(--primary);
    background-color: #9bc0eb57;
    /* box-shadow: var(--box-shadow); */
}

#scholarship .button {
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    color: var(--white);
    /* border-radius: 20px; */
}

#scholarship .service .an {
    color: var(--primary);
    font-weight: 600;
    font-size: 25px;
}

#scholarship .scholarship .Category {
    font-size: 25px;
}

#scholarship .scholarship h5 {
    color: var(--primary);
    font-weight: 600;
}


#scholarship .scholarship .icon i {
    /* border: 1px solid red; */
    border-radius: 20%;
    padding: 20px;
    color: var(--primary);
    background-color: #9bc0eb57;
    /* box-shadow: var(--box-shadow); */
}

#scholarship .scholarship .card {
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

/*******************************-* <!-- scholarship end  -->*******************************- */





/*******************************-* <!-- training start *******************************- --> */
#training .training-one {
    background-image: url(image/training.jpg);
    width: 100%;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#training .button {
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    color: var(--white);
    /* border-radius: 20px; */
}

#training .Membership {
    font-size: 45px;
    font-weight: 600;
    color: var(--white);
}

#training .training-two img {
    width: 100%;
    height: 400px;
}

#training .training-three img {
    width: 100%;
    /* height: 150px; */
}

#training .three-para {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary);
}

#training .training-three .card {
    background-color: #e6e1e1;
}

#training .training-four {
    background: linear-gradient(to right, #ff6600 0%, #0066ff 100%);
}

#training .training-four .card {
    /* background: transparent !important; */
    background-color: rgba(136, 134, 134, 0.5);
    /* -webkit-filter: blur(7px); */
    color: var(--white);
}

#training .training-four i {
    font-size: 25px;
}

#training .training-four img {
    width: 100%;
    height: 525px;
}



#training .playful figure {
    cursor: pointer;
    float: left;
    margin: 10px 1%;
    max-height: 305px;
    max-width: 480px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: 100%;
}

#training .playful figure figcaption,
#training .playful figure figcaption>a {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#training .playful figure figcaption {
    backface-visibility: hidden;
    color: #fff;
    font-size: 1.25em;
    text-transform: uppercase;
}

#training .playful figure h4,
#training .playful figure p {
    margin: 0;
}

#training .playful figure h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    word-spacing: -0.15em;
}

#training .playful figure p {
    font-size: 18px;
    font-weight: 100;
    color: #fff;
    letter-spacing: 1px;
}

#training .playful figure h2,
#training .playful figure p {
    margin: 0;
}

#training .playful figure.softeffect {
    background: none repeat scroll 0 0 #000000;
}

#training .playful figure.softeffect img {
    transition: opacity .35s ease 0s, transform .35s ease 0s;
}

#training figure.softeffect:hover img {
    opacity: 0.35;
    transform: scale(1);
}

#training .playful figure.softeffect figcaption:before,
#training .playful figure.softeffect p {
    opacity: 0;
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
}

#training .playful figure.softeffect h4 {
    opacity: 0;
    padding: 20% 0 20px;
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
}

#training .playful figure.softeffect p {
    margin: 0 auto;
    max-width: 200px;
    transform: scale(1.5);
}

#training .playful figure.softeffect:hover figcaption:before,
#training .playful figure.softeffect:hover p {
    opacity: 1;
    transform: scale(1);
}

#training .playful figure.softeffect:hover h4 {
    opacity: 1;
    transform: scale(1);
}

#training .playful figure img {
    display: block;
    max-width: 100%;
    min-height: 100%;
    opacity: 1;
    position: relative;
}

#training figure.softeffect {
    background: none repeat scroll 0 0 transparent;
}

#training figure.softeffect:hover {
    background: none repeat scroll 0 0 #000000;
    /* Cyan: #00aeef */
}

#training figure.softeffect img {
    transform: scale(1);
    transition: opacity .35s ease 0s, transform .35s ease 0s;
}

#training figure.softeffect:hover img {
    opacity: 0.40;
    transform: scale(1.15);
    filter: blur(2px);
}

/* *******************************-<!-- training end  *******************************---> */


/* *******************************-<!-- get involved start*******************************-  --> */

#get_involved .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
}

@media only screen and (min-width: 767px) {
    #get_involved .grid {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1.5rem;
    }
}

#get_involved .article {
    position: relative;
    cursor: pointer;
}

#get_involved .article:hover:before {
    opacity: 1;
}

#get_involved .article:hover .article__cover {
    transform: translateX(-2rem) scale(1.05);
}

#get_involved .article:hover .article__title,
#get_involved .article:hover .article__info {
    opacity: 1;
    transform: translateX(0);
}

#get_involved .article:hover .article__title {
    transition-delay: 0s;
}

#get_involved .article:hover .article__info {
    transition-delay: 0.1s;
}

#get_involved .article:before {
    content: "";
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.47);
    transition: opacity 0.3s ease-in-out;
}

#get_involved .article__figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    height: 0;
    padding-bottom: 100%;
}

@media only screen and (min-width: 500px) {
    #get_involved .article__figure {
        padding-bottom: 50%;
    }
}

@media only screen and (min-width: 767px) {
    #get_involved .article__figure {
        padding-bottom: 66.6%;
    }
}

@media only screen and (min-width: 1200px) {
    #get_involved .article__figure {
        padding-bottom: 50%;
    }
}

#get_involved .article__cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -2rem;
    width: calc(100% + 2rem);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: translateX(0);
    transition: transform 0.55s ease-in-out;
}

#get_involved .article__caption {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 90%;
}

#get_involved .article__title,
#get_involved .article__info {
    opacity: 0;
    max-width: 25rem;
    padding: 0.85rem 1rem;
    transform: translateX(50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#get_involved .article__title {
    background-color: rgba(51, 51, 51, 0.5);
    font-weight: 300;
    color: var(--white);
    transition-delay: 0.1s;
}

#get_involved .article__info {
    background-color: rgba(51, 51, 51, 0.7);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--white);
}

/*******************************-* <!-- get involved end*******************************-  --> */




/********************************- <!-- event and work shop start  -*******************************--> */

#eventworkshop .left {
    background-color: var(--primary);
    border-radius: 20px 0 0 0;
    color: var(--white);
}

#eventworkshop .right {
    border-radius: 20px 0 0 0;
}

#eventworkshop .right img {
    border-radius: 50%;
}

#eventworkshop .card {
    border-radius: 20px;
}

#eventworkshop .day {
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 20px;
}

#eventworkshop .line_clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    text-align: justify;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#eventworkshop a {
    text-decoration: none;
}

#eventworkshop .business {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}

#eventworkshop .left-one {
    color: var(--white);
    border-radius: 10px;
}

#eventworkshop .event-one {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
    border-radius: 10px 0 0 10px;
}

#eventworkshop .event-two {
    display: flex;
    justify-content: center;
    align-items: center;
}

#eventworkshop .card {
    border-radius: 10px 10px 10px 10px;
}

/*******************************-* <!-- event and work shop end  *******************************---> */




/********************************- <!-- COE START  *******************************---> */

#coe .first {
    background-color: #f6f6f9;
}

#coe .What {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

#coe .card-image {
    background: rgb(6, 6, 217)
}

#coe .first .image img {
    width: 100%;
    height: 200px;
}

#coe .second .Defining {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary);
}

#coe .second p {
    text-align: justify;
}

#coe a {
    text-decoration: none;
}

#coe .coe-one i {
    font-size: 30px;
}

#coe .third {
    background-color: #f6f6f9;
}

#coe .third p {
    text-align: justify;
}

#coe .Roles {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary);
}

#coe .fourth p {
    text-align: justify;
}

#coe .Maturing {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary);
}

#coe .five {
    background-color: #f6f6f9;
}

#coe .five p {
    text-align: justify;
}

#coe .Communicating {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary);
}

#coe .margin-bottom {
    font-weight: 600;
    font-size: 13px !important;
    color: var(--primary);
    border-bottom: 1px solid rgb(218, 212, 212);
}

/********************************- <!-- COE END *******************************- --> */


/* <*****************!-- school dropouts start  --***********************> */
#school_dropout .School {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary);
}

#school_dropout .What {
    /* font-size: 25px; */
    font-weight: 600;
    color: var(--primary);
}

#school_dropout p {
    text-align: justify;
}

/* *******************************-<!-- school dropouts end  -*******************************--> */


/* *******************************-<!-- CSR PARTNERSHIP START  --*******************************-> */

#csr_partnership .partner img {
    border: 1px solid rgb(192, 190, 190);
    /* padding: 15px; */
}

#csr_partnership .partner img:hover {
    border: 1px solid rgb(238, 99, 6);
}

#csr_partnership .apply img {
    width: 100%;
    height: 588px;
    border: 5px solid var(--primary);
}

#csr_partnership .purpose {
    font-weight: 600;
}

#csr_partnership .address {
    font-weight: 600;
    font-size: 25px;
    text-transform: uppercase;
    color: var(--primary);
}

#csr_partnership .apply .card .button {
    border: 1px solid var(--secondary);
    background-color: #fff !important;
    font-weight: 600;
    float: right;
    color: var(--secondary) !important;
}

/* **************************<!-- CSR PARTNERSHIP END  -->**************** */





/* ***********************<!-- apprentiship start  -*********************************-> */

.shape-box {
    display: inline-block;
    position: relative;
    z-index: 1;
    /* max-width: 500px; */
    height: 430px;
    /* margin: 30px 10px 30px; */
    box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.12);
    overflow: hidden;
    /* width: 23.333%; */
}

.shape-box_half {
    overflow: hidden;
    text-align: left;
}

.shape-box_half:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: skewY(53.5deg);
    transform-origin: top left;
    transition: \transform0.4s;
    background: #fff;
    z-index: 1;
}

.shape-box>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bg-black {
    background-color: #000;
}

.shape-box_half figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 30px 30px;
    transition: \transform0.4s;
    transform: translateY(100%);
    z-index: 3;
}

.shape-box_half figcaption .show-cont {
    position: absolute;
    bottom: calc(100% + 30px);
    left: 30px;
    right: 30px;
    transition: bottom 0.4s;
}

.card-no {
    font-size: 28px;
    color: var(--secondary);
    padding: 0;
    margin: 10px 0;
}

.card-main-title {
    margin-top: 8px;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #292b2c;
}

.card-content {
    color: #9f9f9f;
    margin-top: 20px;
    line-height: 22px;
    font-size: 15px;
}

.read-more-btn {
    border: 2px solid var(--primary);
    font-size: 14px;
    cursor: pointer;
    padding: 10px 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background: var(--primary);
    color: #fff;
    border-radius: 2px;
    margin-top: 25px;
    text-decoration: none;
}

.read-more-btn:hover {
    background: transparent;
    color: var(--primary);
}

.shape-box_half>.after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(rgb(199, 103, 55),rgb(57, 74, 199)); */
    opacity: 0;
    transition: opacity 0.4s;
}

/*On hover*/
.shape-box_half:hover:before {
    transform: skewY(35deg);
}

.shape-box_half:hover figcaption {
    transform: translateY(0);
}

.shape-box_half:hover figcaption .show-cont {
    bottom: 100%;
}

.shape-box_half:hover>.after {
    opacity: 1;
}

/***************************** <!-- apprentiship end  --> *************************/






/*******************************-* <!-- jkc start  -->******************************** */
#jkc .jkc-one img {
    width: 100%;
    height: 350px;
}

#jkc .Jagadguru {
    text-align: center;
    color: var(--secondary);
    font-size: 35px;
    font-weight: 600;
}

#jkc .inspiration {
    font-size: 20px;
    text-align: justify;
}

#jkc .jkc-three img {
    width: 100%;
}

#jkc .jkc-three {
    background-color: #e48f6e24;
}

#jkc .jkc-three .Bed {
    text-align: center;
    font-size: 30px;
    color: var(--secondary);
}

#jkc .jkc-four img {
    width: 100%;
    height: 350px;
}

#jkc .jkc-four p {
    text-align: center;
    font-size: 26px;
    color: var(--secondary);
}

#jkc .jkc-five {
    background-color: #e48f6e24;

}

#jkc .jkc-five .remodelled {
    line-height: 30px;
    text-align: justify;
}

#jkc .jkc-seven {
    background-color: #e48f6e24;

}

#jkc .jkc-nine p {
    font-size: 25px;
    font-weight: 600;
}

/********************************- <!-- jkc end  -->******************************** */



/* *******************************-<!-- maharaj start  -->************************************* */
#maharaj .maharaj img {
    width: 100%;
}

#maharaj .Jagadguru {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    color: var(--secondary);
}

#maharaj .Shree {
    line-height: 23px;
    font-size: 19px;
    text-align: justify;
}

#maharaj .maharaj-two {
    background-color: #e48f6e24;
}

#maharaj .maharaj-two img {
    border-radius: 50%;
}

#maharaj .maharaj-four {
    background-color: #e48f6e24;
}

#maharaj .maharaj-four img {
    border-radius: 50%;
}

#maharaj .maharaj-six {
    background-color: #e48f6e24;
}

#maharaj .Philanthropic {
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary);
}

#maharaj .maharaj-seven .card {
    border: 2px solid white;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

#maharaj .maharaj-seven .line_clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    text-align: justify;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#maharaj a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;

}

#maharaj .maharaj-seven .Activities {
    font-weight: 600;
    color: var(--secondary);
    font-size: 25px;
}

/********************************- <!-- maharaj end  -->**************************** */


/* *******************************-<!-- JKYNHRC START  -->************************************* */
#jkynhrc .jkynhrc-one {
    background-image: linear-gradient(to right, rgb(10 47 95 / 81%), rgb(47 66 95 / 47%)), url(image/nhrc-main.jpg) !important;
    /* background-image: url(image/nhrc-main.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    color: var(--white);
    justify-content: center;
    display: flex;
    align-items: center;
}

#jkynhrc .Certified {
    font-size: 22px;
    font-weight: 600;
}

#jkynhrc .Jagadguru {
    font-weight: 600;
    font-size: 30px;
}

#jkynhrc .NUTROPATHY {
    font-size: 45px;
}

#jkynhrc .jkynhrc-two img {
    border-radius: 20px;
}

#jkynhrc .jkynhrc-two .card {
    background-color: #acdaef42;
}

#jkynhrc .NATURAL {
    font-size: 20px;
    /* text-align: justify; */
    font-weight: 600;
    color: var(--secondary);
}

#jkynhrc .jky-para {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
}

#jkynhrc a {
    text-decoration: none;
}

#jkynhrc .jkynhrc-six .card-body {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

@media (max-width: 767px) {
    #jkynhrc .carousel-inner .carousel-item>div {
        display: none;
    }

    #jkynhrc .carousel-inner .carousel-item>div:first-child {
        display: block;
    }
}

#jkynhrc .carousel-inner .carousel-item.active,
#jkynhrc .carousel-inner .carousel-item-next,
#jkynhrc .carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

    #jkynhrc .carousel-inner .carousel-item-end.active,
    #jkynhrc .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    #jkynhrc .carousel-inner .carousel-item-start.active,
    #jkynhrc .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

#jkynhrc .carousel-inner .carousel-item-end,
#jkynhrc .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

#jkynhrc .jky-seven {
    background-color: #f7bda65b;
}

#jkynhrc .jkynhrc-seven .NATURE {
    font-size: 20px;
    /* text-align: justify; */
    font-weight: 600;
    color: var(--secondary);
}

#jkynhrc .jkynhrc-seven i {
    border: 2px solid var(--primary);
    border-radius: 50px;
}

#jkynhrc .jkynhrc-seven .icon i {
    font-size: 35px;
    color: var(--primary);
}

#jkynhrc .jkynhrc-seven .obj {
    font-weight: 600;
    font-size: 20px;
    color: var(--secondary);
}

#jkynhrc .jkynhrc-seven .seven-card-main .icon i:hover {
    border: 2px solid var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

#jkynhrc .jkynhrc-eight {
    background-color: #6f8db067;
}

#jkynhrc .jkynhrc-eight .Naturopathy {
    color: var(--secondary);
    font-size: 22px;
    font-weight: 600;
}

#jkynhrc .jkynhrc-eight img {
    width: 30%;
}

#jkynhrc .jkynhrc-eight .eight-para:hover {
    background-color: #0066ff;
    color: var(--white);
}

/* *******************************-<!-- JKYNHRC END  -->**************************************** */


/********************************- internship start*******************************-  */
#internship .post-slide {
    margin: 0 10px;
    background: #fff;
}

#internship .post-slide .post-img {
    overflow: hidden;
    position: relative;
}

#internship .post-slide .post-img img {
    width: 100%;
    height: auto;
    transform: scale(1, 1);
    transition: all 0.30s ease 0s;
}

#internship .post-slide:hover .post-img img {
    transform: scale(1.2, 1.2);
}

#internship .post-slide .over-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    text-align: center;
    background: rgba(68, 67, 64, 0.9);
    transition: all 0.50s linear;
}

#internship .post-slide:hover .over-layer {
    opacity: 1;
}

#internship .post-slide .post-link {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    top: 45%;
}

#internship .post-slide .post-link li {
    display: inline-block;
    margin-right: 10px;
}

#internship .post-slide .post-link li a {
    width: 60px;
    height: 60px;
    line-height: 59px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    background: #333;
    font-size: 20px;
    transform: scale(1, 1);
    transition: all 0.20s linear;
}

#internship .post-slide .post-link li a:hover {
    text-decoration: none;
    transform: scale(1.1, 1.1);
}

#internship .post-slide .post-review {
    padding: 15px 0;

    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

#internship .post-slide .post-review a {
    text-decoration: none;
}

#internship .post-slide .post-title {
    margin-top: 0;
}

#internship .post-slide .post-title a {
    display: block;
    color: #333;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.50s ease 0s;
}

#internship .post-slide .post-title a:hover {
    text-decoration: none;
    color: #1f80bb;
}

#internship .post-slide .post-info {
    list-style: none;
    padding: 10px 0 0 0;
    margin: 0 0 7px 0;
    text-align: center;
    border-top: 1px solid #d3d3d3;
}

#internship .post-slide .post-info li {
    display: inline-block;
    margin-right: 13px;
}

#internship .post-slide .tag-info {
    margin: 0;
    padding: 0 0 10px 0;
    text-align: center;
    border-bottom: 1px solid #d3d3d3;
}

#internship .post-slide .tag-info li {
    list-style: none;
    display: inline-block;
}

#internship .post-slide .tag-info li a {
    color: #808080;
    text-decoration: none;
    text-transform: capitalize;
}

#internship .post-slide .tag-info li a:hover {
    color: #1f80bb;
    text-decoration: none;
}

#internship .post-slide .post-description {
    color: #828282;
    font-size: 14px;
    padding: 5px 17px;

    line-height: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#internship .post-slide .read-more {
    color: #333;
    float: right;
    font-weight: bold;
    margin-right: 25px;
    text-transform: capitalize;
}

#internship .post-slide .read-more:hover {
    color: #1f80bb;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    #internship .post-slide .post-link li a {
        width: 40px;
        height: 40px;
        line-height: 39px;
        font-size: 13px;
    }

    #internship .post-slide .post-title a {
        font-size: 14px;
    }
}

/*******************************-* internship end *******************************- */


/********************************- <!-- institution registration start  *******************************---> */
#institute_registration .btn {
    border: 1px solid var(--secondary) !important;
    font-weight: 600;
    color: var(--secondary);
}


#institute_registration input[type=text],
#institute_registration input[type=email],
#institute_registration input[type=number],
#institute_registration textarea {
    padding: 16px;
    border-radius: 3px;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
    line-height: 24px;
    background: #f9f9f9;
    transition: all 0.2s ease-in-out 0s;
}

#institute_registration .institute-one {
    background-image: linear-gradient(to right, rgb(10 47 95 / 81%), rgb(47 66 95 / 47%)), url(image/registration.jpg) !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
    color: #fff;
}

/********************************- <!-- institution registration end *******************************- --> */