/* The following styles are used to hide elements of the Apply Now drop down.*/

/* open house registration */
.cd-dropdown-content1 li:nth-of-type(1) {
    /* display: none;*/
}

/* online application */
.cd-dropdown-content1 li:nth-of-type(2) {
/*    display: none;*/
}

/* sample test */
.cd-dropdown-content1 li:nth-of-type(3) {
/*   display: none;*/
}

/* guide to applying */
.cd-dropdown-content1 li:nth-of-type(4) {
/*   display: none;*/
}

/* Hides the entire Apply Now drop down. */
a.apply-link {
/*    display: none; !important;*/
}

.like-acronym {
    font-weight:700;
}



/*Arrow Animation*/

.downArrow {
    background-color: transparent;
    margin-top: 20vh;
}
#arrow {
    height: 5vh;
}

.bounce {
    -moz-animation: bounce 12s;
    -webkit-animation: bounce 12s;
    animation: bounce 12s;
    animation-iteration-count: 2;
}

@-moz-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {

        -moz-transform: translateY(0);

        transform: translateY(0);

    }

    40% {

        -moz-transform: translateY(-30px);

        transform: translateY(-30px);

    }

    60% {

        -moz-transform: translateY(-15px);

        transform: translateY(-15px);

    }

}



@-webkit-keyframes bounce {

    0%,

    20%,

    50%,

    80%,

    100% {

        -webkit-transform: translateY(0);

        transform: translateY(0);

    }

    40% {

        -webkit-transform: translateY(-30px);

        transform: translateY(-30px);

    }

    60% {

        -webkit-transform: translateY(-15px);

        transform: translateY(-15px);

    }

}



@keyframes bounce {

    0%,

    20%,

    50%,

    80%,

    100% {

        -moz-transform: translateY(0);

        -ms-transform: translateY(0);

        -webkit-transform: translateY(0);

        transform: translateY(0);

    }

    40% {

        -moz-transform: translateY(-30px);

        -ms-transform: translateY(-30px);

        -webkit-transform: translateY(-30px);

        transform: translateY(-30px);

    }

    60% {

        -moz-transform: translateY(-15px);

        -ms-transform: translateY(-15px);

        -webkit-transform: translateY(-15px);

        transform: translateY(-15px);

    }

}


