@charset "utf-8";
/* CSS Document */

.hero {
            height: 400px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
       .hero-body {
            position: relative;
            z-index: 2;
            text-align: center;
            top: 35%;
            transform: translateY(-30%);
        }
        .tag{
		border:1px solid #CCC;
		}