
* {
    box-sizing: border-box;
}
.hero-banner {
    background-color: #000;
    font-family: Poppins;
}
.small-banner {
    background-color: #000 !important;
}

.end-layout {
    background-color: #000 !important;
}

.hero-banner .title-wrapper {
    position: relative;
    width: 45%;
    display: flex;
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    margin-top: -1rem;
    z-index: 10;
}

.hero-banner .title-wrapper h1 {
        color: var(--white);
    }

.hero-banner .title-wrapper span {
        color: #ef6e09;
    }

.hero-banner .title-announcement {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    z-index: 10;
    color: var(--white);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 1rem;
}
.title-announcement-underline {
    -webkit-text-decoration: underline;
    text-decoration: underline;
    margin: 10px 0;
    font-weight: 800;
}

.sub-title-announcement {
    font-size: 16px;
}

.hero-banner-img-container img {
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 500px;
    right: 0;
}

.hero-banner span {
    color: var(--orange);
}



@media screen and (max-width: 1024px) {
    .hero-banner .container {
        background-size: contain;
    }
    .hero-banner .title-wrapper {
        background-color: #000;
        width: 100%;
    }

    .hero-banner .phone-button {
        flex: initial;
        min-width: 0;
        min-width: initial;
    }

    .hero-banner h1 {
        font-size: 2.4rem;
        line-height: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-banner .container {
        height: auto;
        height: initial;
    }
}


@media (min-width: 769px) {
    .hero-banner-img-container {
        position: absolute;
        left: auto;
        right: 0;
        bottom: 0;
        top: 2rem;
    }
}
