.live-streaming-section--heading-top {
    background: var(--camstreamer-gradient);
    padding: 105px 0 50px;
}
.live-streaming-section--heading-middle {
    background-color: var(--camstreamer-dark-color);
}
.live-streaming-section--heading-bottom {
    background-color: var(--mid-blue-color);
}

.videoInNotebook {
    position: relative;

}
.videoInNotebook iframe {
    position: absolute;
    top: 9%;
    left: 14.5%;
    width: 71%;
    height: 76.5%;
}
@media (min-width: 992px){
    .videoInNotebook.videoInNotebook--move{
        position: absolute;
        right: 0;
        bottom: -130px;
    }
    .videoInNotebook.services__img-wrapper iframe {
        top: 6%;
    }
}


.cards-section {
    padding-block: 60px;
}
.cards-section .solution-product-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.cards-section .solution-product-cards {
    display: grid;
    gap: 30px;
    justify-items: center;
}

.category-section {
    padding-bottom: 80px;
}
.category-section .category__heading {
    margin-bottom: 40px;
}
.category-section .category-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}
.category-section .category-gallery img {
    width: 100%;
}
.category-section .category__img-container {
    position: relative;
}
.category-section .category__img-overlay {
    position: absolute;
    background-color: rgba(14, 66, 115, 0.7);
    /* opacity: 0.7; */
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    max-height: auto;
    color: #fff;
    top: unset;
}
.category-section .category__img-container:hover > .category__img-overlay {
    top: 0;
    max-height: 100%;
}
.category-section .category__img-container > .category__img-overlay > .img-overlay--default,
.category-section .category__img-container:hover > .category__img-overlay > .img-overlay--hover {
    display: flex;
}
.category-section .category__img-container:hover > .category__img-overlay > .img-overlay--default,
.category-section .category__img-container > .category__img-overlay > .img-overlay--hover {
    display: none;
}

.category-section .img-overlay--hover {
    flex-direction: column;
    gap: 20px;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
}

@media (max-width: 500px) {
    .category-section .category__img-overlay {
        padding: 10px;
    }
    .category-section .img-overlay--hover {
        gap: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cards-section .solution-product-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .cards-section .solution-product-cards {
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
    }
}
@media (max-width: 991px) {
    .cards-section .solution-product-card {
        max-width: 450px;
    }
}
@media (max-width: 576px) {
    .cards-section .solution-product-card {
        max-width: 90%;
    }
}
@media (max-width: 390px) {
    .cards-section .solution-product-card {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .category-section .category-gallery {
        grid-template-columns: minmax(300px, 560px);
        grid-template-rows: auto;
        justify-content: center;
    }
}