@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,700&display=swap");
.active{
    color: #fdd807;
}
*{
    font-family: "Nunito Sans", Helvetica, Arial, sans-serif !important;
}
.nav-link{
    color: #fff !important;
}


.custom-play-button {
width: 60px;
height: 60px;
/* Green background */
border-radius: 50%;
position: relative;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transition: background 0.3s ease;
}

.custom-play-button::before {
content: '';
position: absolute;
left: 22px;
top: 17px;
width: 0;
height: 0;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-left: 20px solid white; /* Triangle play symbol */
}


