#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: solid; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: white; /* Set a background color */
    color: #E91C16; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
	border-color: #E91C16;
}

/*#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}*/

.carousel-indicators.active
{
	background: red;
}

/* The animation code */
@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* The element to apply the animation to */
.i1 {
    -webkit-animation: blink 5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation: blink 5s;
    -moz-animation-iteration-count: infinite;    
}

.student-pic {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	/*overflow: hidden;
	position: relative;
	display: inline-block;
	margin-bottom: 40px;*/
}