.section-top {
    background-image: url(../images/content/hello-lightbulb-YC8qqp50BdA-unsplash.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 80px);
}

.section-top .content {
    background: rgb(0 0 0 / 40%);
    padding: 50px;
    border-radius: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .section-top {
        height: calc(100vh - 70px);
    }
}

@media only screen and (max-width: 768px) {
    .section-top {
        height: calc(100vh - 55px);
    }
}

@media only screen and (max-width: 575px) {
    .container.content-container {
        padding: 0;
    }
    .section-top .content {
        padding: 50px 10px;
        border-radius: 0;
    }
}
