*{
    font-family: nunito;
}

body{
    background-color: #fefefe;
}

.btn-primary{
    border: none;
}

.active{
    border-bottom: 2px solid #57A863;
    font-weight: bold;
}

.nav-link:hover{
    color: #57A863;
}

.custom-px{
    padding: 0 10%;
}

.lgreen{
    color: #B3D599;
    font-weight: bold;
}

.card-title{
    font-size: 20px;
    font-weight: 900;
}

.card-text{
    font-size: 12px;
}

.month{
    color: #57A863;
    font-size: 20px;
    font-weight: 700;
}

.day{
    font-size: 32px;
    font-weight: 900;
    line-height: 10%;
}

.year{
    color: #57A863;
    font-size: 16px;
    font-weight: 700;
}

.doctorantimg{
    border: solid 3px #B3D599;
    border-radius: 20%;
}

.expert{
    color: #fefefe;
    background-color: #B3D599;
    padding: 6px 30px;
    width: 220px;
    margin: auto;
    font-size: 12px;
    font-weight: 900;
    border-radius: 20px;
    text-transform: uppercase;
}

.docdescription{
    font-size: 16px;
}

.doctorant{
    background-color: white;
    padding: 40px 40px;
    margin: 0px 30px;
    border-radius: 32px;
}

.gal{
    transition: .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    
}

.gal:hover{
    transform: scale(1.01);
}

/* Subs */

.subscribe-container {
    display: flex;
    align-items: center;
    background: white;
    padding: 5px;
    width: 32rem;
    margin: auto;
}
.subscribe-container input {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px;
    border-radius: 30px;
}
.subscribe-container button {
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.subscribe-container button i {
    margin-left: 5px;
}



/* Entrance Animation */


.hidden{
    opacity: 0;
    filter: blur(5px);
    transform: translateX(50px) translateY(0px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hidden2{
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-50px) translateY(0px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hidden3{
    opacity: 0;
    filter: blur(5px);
    transform: translateX(0px) translateY(30px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0px) translateY(0px);
}

.hidden:nth-child(1){
    transition-delay: 50ms;
}

.hidden:nth-child(2){
    transition-delay: 100ms;
}

.hidden:nth-child(3){
    transition-delay: 150ms;
}

.hidden:nth-child(4){
    transition-delay: 200ms;
}

.hidden:nth-child(5){
    transition-delay: 250ms;
}
.hidden:nth-child(6){
    transition-delay: 300ms;
}


.hidden2:nth-child(1){
    transition-delay: 50ms;
}

.hidden2:nth-child(2){
    transition-delay: 100ms;
}

.hidden2:nth-child(3){
    transition-delay: 150ms;
}

.hidden2:nth-child(4){
    transition-delay: 200ms;
}

.hidden2:nth-child(5){
    transition-delay: 250ms;
}
.hidden2:nth-child(6){
    transition-delay: 300ms;
}

.hidden3:nth-child(1){
    transition-delay: 50ms;
}

.hidden3:nth-child(2){
    transition-delay: 100ms;
}

.hidden3:nth-child(3){
    transition-delay: 150ms;
}

.hidden3:nth-child(4){
    transition-delay: 200ms;
}

.hidden3:nth-child(5){
    transition-delay: 250ms;
}
.hidden3:nth-child(6){
    transition-delay: 300ms;
}
