
.hero-type-bar.hero-wrapper .bar {
    height: 60px;
}

.hero-type-bar.hero-wrapper .hero-type-bar {
    display: none;
}

.hero-type-bar.hero .title + .subtitle {
    margin-top: -10px;
}

@media (width >= 1200px) {
    .hero-type-bar.hero {
        display: flex;
        flex-direction: row;
        gap: 60px;
        padding-top: 80px;
    }

    .hero-type-bar.hero > * {
        flex: 1;
    }

    
}

@media (width >= 769px) and (width <= 1199px){
    .hero-type-bar.hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero-type-bar.hero > * {
            flex: 1;
    }

    .hero-type-bar.hero .media {
        align-self: center;
        max-width: 640px;
    }
}

@media (width <= 768px){
    .hero-type-bar.hero {
        display: flex;
        flex-direction: column;
        gap:20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-type-bar.hero .media {
        align-self: center;
        max-width: 300px;
    }
}