﻿.hero-banner {
    display: flex;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--primary-clr);
}
.hero-banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    width: 100%;
    max-width: 405px;
    padding: 0 40px;
}
.hero-banner__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 5px;
    font-weight: var(--medium);
}
.hero-banner__title {
    font-size: 28px;
    font-weight: var(--semibold);
    text-transform: uppercase;
}
.hero-banner__paragraph {
    line-height: 1.35;
}
.hero-banner__revive {
    display: block;
    width: calc(100% - 405px);
    height: 100%;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.hero-banner__revive ins {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-banner__revive img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
@media screen and (max-width: 1024px) {
    .hero-banner {
        flex-direction: column;
        align-items: center;
        row-gap: 10px;
        background-color: transparent;
    }
    .hero-banner__content {
        max-width: 100%;
        row-gap: 10px;
        padding: 0 10px;
    }
    .hero-banner__breadcrumb {
        font-size: 13px;
    }
    .hero-banner__title {
        font-size: 18px;
    }
    .hero-banner__paragraph {
        font-size: 14px;
    }
    .hero-banner__revive {
        width: 100%;    
    }
}