

.relative {
    position: relative;
    min-height: 1px;
}

body {
    font-family: 'Poppins', sans-serif;
}
.page-banner {
    margin-top: 30px;
    position: relative;
    height: 400px;
    display: flex;
    padding: 15px;
}
.page-banner::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #0a388b;
    opacity: .6;
    z-index: 1;

}
.page-banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    object-position: top;
}
.page-banner h3 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 40px;
    font-weight: 700;
    max-width: 100%;
    margin: auto;
    width: 1200px;
    margin-bottom: 50px;
}

section .content {
    overflow: hidden;
}

@media (max-width: 991px) {
   .page-banner {
    height: 310px;
   }
}
@media (max-width: 768px) {
   .page-banner {
        height: 250px;
   }

}