.nav-list li {
    font-size: 20px;
    padding-left: 30px;
    font-size: 25px;
}

.nav-list .nav-item a:hover {
    color: red;
    background-color: yellow;
    border-radius: 10px;
}

.nav_top {
    box-shadow: 0px 3px 80px 0px rgba(0, 0, 0, .15);
    background-color: white;
}



.section-1 {
    padding-top: 20px;
    padding-left: 40px;
    background-image: url("images/section_1_bg.jpg");
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
}

.head-line {
    color: white;
    font-size: 30px;
}

.buttons {
    margin-top: 100px;
}

.buttons a {
    margin-left: 20px;
}

.about-us {
    padding-top: 30px;
    padding-bottom: 50px;
}

.about-header {
    text-align: center;
    padding-bottom: 20px;
}

.about-matter {
    padding: 0px 25px 0 25px;
    text-align: center;
    border: 1px solid black;
    border-radius: 10px;
    margin: 0 50px 0 50px;
}

.section-3 {
    background-image: url("images/bg_pic1.png");
    background-size: cover;
    opacity: 0.9;
    padding-top: 10px;
    padding-bottom: 30px;
}


.course_header {
    text-align: center;
    color: white;
}

.enroll-header {
    text-align: center;
}

.enroll-body {
    border: 1px solid black;
    border-radius: 10px;
}

.links a {
    color: white;
    text-decoration: none;

}

.intern-matter li {
    padding: 5px;
}

.moto-line {
    font-size: 50px;
    /* text-decoration: underline; */
}

.apply_button {
    margin-bottom: 20px;
}

.apply_button button:hover {
    color: red;
    background-color: yellow;
    font-size: larger;
}

.links a:hover {
    color: yellow;
}


@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink {
    animation: blink 1.5s infinite;
}

.animated-text {
    animation-duration: 1s;
}

.animated-text-delayed {
    animation-delay: 1s;
    /* Delay the animation by 1 second */
}

.animated-text-delayed2 {
    animation-delay: 2s;
    /* Delay the animation by 1 second */
}

.animated-text-delayed3 {
    animation-delay: 3s;
    /* Delay the animation by 1 second */
}

.animated-text-delayed4 {
    animation-delay: 4s;
    /* Delay the animation by 1 second */
}