.banner {
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    @media (max-width: 768px) {
        height: 200px;
    }
    .title {
        color: @white;
        font-size: 40px;
        @media (max-width: 768px) {
            font-size: 20px;
        }
    }
    .subtitle {
        color: @white;
        font-size: 25px;
        @media (max-width: 768px) {
            font-size: 16px;
        }
    }
}