﻿.banner {
    width: 100%;

    display: flex;
    flex-direction: column;
}

.banner-picture {
    flex: 1;
    min-height: 0;
    /*overflow: hidden;*/
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    color: #19346E;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-logo {
    position: absolute;
    top: 8%;
    left: 27%;
    transform: translateX(-50%);
    width: 32%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .banner-logo img {
        width: 110%;
        object-fit: contain;
        border-radius: 10px;
    }

.content-banner {
    width: 100%;
    display: flex;
    justify-content: center;
}

    .content-banner img {
        max-width: 400px;
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
    }

@media (max-width:768px) {

    .banner-logo {
        width: 60%;
        left: 50%;
        top: 15%;
    }

        .banner-logo img {
            max-height: 100px;
        }
}