/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

.video-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    grid-gap: 15px;
}

.video-grid-wrapper .video-item{
    text-align: center;    
}

.video-grid-wrapper .video-item h3 {
    color: #292a85;
    font-size: 40px;
    font-weight: 700;
}

@media screen and (max-width: 500px){
    .video-grid-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .video-grid-wrapper .video-item h3 {
        font-size: 25px;
    }
}