.banner-global {
    width: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    position: relative;
}
.banner-global .banner-global-bgimg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-global::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(17, 62, 46, 0.8) 0%,
        rgba(9, 139, 67, 0.8) 48.56%,
        rgba(17, 62, 46, 0.8) 100%
    );
}
.banner-global .banner-global-content {
    z-index: 10;
    width: 100%;
}
.banner-global .banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.banner-global .banner-breadcrumb span,
.banner-global .banner-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1; /* 100% */
}
.banner-global .banner-breadcrumb p {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1; /* 100% */
}
.banner-global .banner-global-content .banner-global-title {
    color: #fff;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 1; /* 93.333% */
    text-transform: capitalize;
    margin-bottom: 24px;
}
.banner-global .banner-global-content .banner-global-desc {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.62; /* 162.5% */
}
@media (max-width: 639px) {
    .banner-global .banner-global-content {
        padding: 0 16px;
    }
    .banner-global .banner-breadcrumb {
        flex-wrap: wrap;
    }
}
