.section-hero{
	position:relative;
}
.hero-banner-item img {
    width: 100%;
	object-fit:cover;
}
.hero-banner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-height: 100vh;
}
.hero-banner-item .banner-item-text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    bottom: clamp(16%,3vw,45%);
    z-index: 33;
    left: 1rem;
	right:1rem;
    margin: auto;
	max-width:100%;
}
.hero-banner-item .banner-item-text p.hero-desc {
    font-size: 13px;
    line-height: 32px;
    color: var(--color4);
    text-align: right;
    padding: 1.5rem;
    background: rgb(255 255 255 / 50%);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
}
.mobile .hero-banner-item .banner-item-text {
    bottom: 100px;
    left: 0;
    right: 0;
    width: calc(100% - 20px);
}
.sw-heroBanner i {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    color: #72706f;
}
.sw-heroBanner > div:hover{
	background:var(--color3)
}
.sw-heroBanner > div:hover > i {
    color: var(--color2);
} 
.sw-heroBanner .swiper-nav-prev,
.sw-heroBanner .swiper-nav-next {
    background: #fff;
    width: 40px;
    height: 100px;
    color: var(--color3);
}
.sw-heroBanner .swiper-nav-next {
    border-radius: 20px 0 0 20px;
}
.sw-heroBanner .swiper-nav-prev {
    border-radius: 0 20px 20px 0;
}
.swiper-hero:not(.swiper-initialized) .swiper-slide {
  flex-shrink: unset;
  margin-left: 0;
  width: 100%;
  flex: 0 0 100%;
}
.item-brands {
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    filter: drop-shadow(0px 4px 4px rgb(0 0 0 / 25%));
	display: flex;
    align-items: center;
    justify-content: center;
	transition:0.3s;
	margin: 20px 0;
	transition:0.3s;
}
.swiper-slide-active .item-brands {
	filter: drop-shadow(0px 1px 5px #0000cd40);
}
.brands-items {
    margin-top: calc(clamp(80px,6vw,100px) * -1);
}
.swiper-brands .swiper-pagination {
    margin: 1rem 0;
}
.swiper-brands:not(.swiper-initialized) .swiper-slide {
  flex-shrink: unset;
  margin-left: 70px;
  width: 150px;
  flex: 0 0 150px;
}

@media screen and (min-width: 48em){
	.hero-banner-item .banner-item-text {
		max-width:35%
	}
}
@media screen and (min-width: 100em){
	.hero-banner-item{
		height:75vh
	}
	.hero-banner-item img {
		object-fit: cover;
		height: 100%;
	}
}