.main-bg {
    background-color: #FFF;
    background-image: none;
}

.plus-icon {
    font-weight: 500;
    font-size: 3rem;
    vertical-align: middle;
}

.brand-logo {
    height: 60px;
}

.navexa-brand-logo {
    height: 50px;
}

.bg-nx-primary {
    background-color: #375a7f;
    color: #FFF;
    padding: 20px 0;
}

.lead {
    font-size: 1.6rem;
}

.minor-img {
    height: 80%;
}

.video-container {
    position: relative;

}

#perfDemoVideoPlayer {
    width: 100%;
    height: 100%;
}

.mp4-vid {
    max-height: 80vh;
    max-width: 100%
}

.overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* semi-transparent black background */
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.video-container:hover .overlay {
    display: flex;
}

.video-container.video-playing .overlay {
    display: none;
}

.play-icon {
    /* Style your play icon */
    font-size: 6em;
    z-index: 1;
    /* Example size */
}

.hover-text {
    /* Style your text */
    font-size: 3rem;
    z-index: 1;
}

/* Hide the overlay when the video is playing */
.video-playing .overlay {
    display: none;
}

.info-list {
    li {
        margin-bottom: 5px;
    }
}

.review-card {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    background-color: #fff;
}

.review-stars {
    color: #ffcc00;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-body {
    margin-top: 15px;
}