@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,500;1,100&amp;display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

:root {
    --darker-text-color: #212529;
    --dark-text-color: #384141;
    --light-text-color: #808080;
    --contrast-text-color: #24cdd5;
    --dark-bg-color: #04072f;
    --light-bg-color: #3d1f7e;
}

/* ANIMATIONS */
.doAnimationHere {
    transform: scale(0.8);
    opacity: 0.5;
    visibility: hidden;
    /* animation: animateTheCards 4s linear 1 forwards; */
    /* animation-delay: 4s; */
}

@keyframes animateTheCards {
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
}

.doDefaultAnimation {
    transform: scale(0.98);
    opacity: 0.8;
    transition: all 0.6s;
}

/* Utility Classes */
.topSpacing {height: 5vh;}
section {overflow-x: hidden;}

/* CHANGING SLICK UI FOR LANDING PAGE */
.landing .slick-dots {
    bottom: 12px;
}
.landing .slick-dots button {
    transform: scale(2.4);
}
.landing .slick-dots li.slick-active button:before {
    color: white;
}
.landing .slick-dots li button:before {
    color: white;
}

/* Website Design Classes */
.navbar-fixed-top {
    position: fixed;
    width: 100vw;
    z-index: 6;
}
.navbar-fixed-top>.appnav {
    margin-left: 0;
    margin-right: 0;
}
#mainNavbarContainer {
    transition: all 2ms;
}
.landing {
    position: relative;
}
.landingCarousel__banner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.landingBanner__content {
    position: relative;
}
.landingCarousel__banner>h1{
    position: absolute;
    width: 100vw;
    text-align: center;
    color: white;
    padding-inline: 1rem;
}
.landingCarousel__banner>h1:nth-child(1) {
    font-weight: bold;
    bottom: 30vh;
}
.landingCarousel__banner>h1:nth-child(2) {
    font-weight: 200;
    bottom:23vh;
    transform: scale(0.9);
}
#mainNavbarContainer {
    overflow: hidden;
}

.appnav {
    background-color: rgb(255, 255, 255);
    width: 80%;
    padding-bottom: 1rem;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 500px;
    font-family: 'Open Sans', sans-serif;
    position: absolute;
    top: 2rem;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2
}
.navview {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.button-toggle {
    display: none;
}
.nav-items {
    display: flex;
    list-style: none;
    justify-content: space-evenly;
    width: 80%;
    font-size: 1.2rem;
    margin-top: 1rem;
    align-items: center;
}
.nav-items>li {
    user-select: none;
    cursor: pointer;
    position: relative;
}


/* MOBILE NAVBAR */
.nav-items-mobile {
    list-style: none;
}
.nav-items-mobile>li {
    height: 3rem;
    user-select: none;
    cursor: pointer;
    font-weight: 600;
}
.navbarmobile {
    background-color: white;
    position: absolute;
    top: 4rem;
    width: 0%;
    overflow: hidden;
    transition: all 0.5s;
    border-radius: 10px;
    z-index: 1;
}
.nav-items>li.active::after {
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    background: #000;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 100%;
}
#navbarmenutoggle {
    transform: scale(1.3);
    cursor: pointer;
}
.appnav__logo {
    transform: scale(0.8);
}
.navview>p {
    font-size: 19px;
}

.socialLinks {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-right: 20px;
}
.socialLinks>svg {
    transform: scale(0.5);

}

.success-stories {
    padding-top: 5rem;
    padding-bottom: 3rem;
    background-color: #f6f7fb;
}
.success-stories .section-title h1 {
    color: var(--dark-text-color);
    font-weight: 600;
}
.success-stories .section-title h1 span {
    color: var(--contrast-text-color);
}
.success-stories .card {
    box-shadow: 0 0 10px rgba(170, 201, 255, 0.5);
    width: 30%;
}
.success-stories .card-img::before {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.4));
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.success-stories .card img {
    object-fit: cover;
    object-position: center center;
    height: 170px;
}
.success-stories .card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.read-more button {
    color: var(--dark-text-color);
    border: 1px solid var(--dark-text-color);
}


.featured_partner {
    padding-bottom: 5rem;
    margin-top: -10rem;
}
.featured_partner .featured_partner--box {
    box-shadow: 0 0 10px rgba(170, 201, 255, 0.5);
    font-family: 'Roboto', sans-serif;
    gap: 3rem;
}
.featured_partner .banner__leftArea h2 {
    color: var(--dark-text-color);
}
.featured_partner .banner__leftArea p {
    color: var(--dark-text-color);
}
.featured_partner .banner__rightArea img {
    width: 180px;
    height: auto;
}

@media only screen and (max-width: 1415px) {
    .programCards {
        justify-content: center !important;
    }
    .programCards__card {
        margin: 18px;
    }
    .success-stories {padding: 3rem 1rem;}
    .customCardStories {margin-top: 20px !important;}
}
@media screen and (max-width:767px){
    .success-stories .card {width: 100%;}
}

.recruitment_partners {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.recruitment_partners--left {
    flex: 0.7;
}
.recruitment_partners--left h2 {
    color: var(--dark-text-color);
    font-size: 32px;
}
.recruitment_partners--left>p {
    color: var(--light-text-color);
}
.recruitment_partners--right {
    flex: 1;
}
.recruitmentCards {
    transition: transform 0.3s;
    cursor: pointer;
}
.recruitmentCards:hover {
    transform: scale(1.1);
}
.recruitmentCards img {
    width: 8rem;
    height: 8rem;
    margin-right: 1rem;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
}
.recruitmentCards p {
    font-size: 14px;
}
@media screen and (max-width: 767px) {
    .recruitment_partners--container {flex-direction: column;}
    .recruitment_partners--left {text-align: center;}
    .recruitmentCards {flex-direction: column; align-items: flex-start !important;}
    .recruitmentCards img {width: 5rem; height: 5rem; border: 2px solid #fff;}
}

.placementPartners {background-color: #f6f7fb !important;}

/* MEDIA QUERIES */
@media only screen and (max-width: 960px) {
    .button-toggle {display: inline;}
    .navview>.nav-items {display: none;}
    .navview>svg>image {width: 13rem !important;}
    .appnav {padding-top: 0;padding-bottom: 0;}
    .navview {padding-top: 0.2rem;}
    .navview>.socialLinks {display: none;}
}

.slick-dots li {width: 14px !important; height: 14px !important;}
.slick-dots li button {width: 14px !important; height: 14px !important; padding: 0 !important;}
.slick-dots li button:before {font-size: 14px !important; line-height: 1 !important; width: 14px !important; height: 14px !important;}