/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../../images/hero/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 200px 0;
	overflow: hidden;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 70.86%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .swiper,
.hero.hero-slider-layout .swiper-wrapper,
.hero.hero-slider-layout .swiper-slide,
.hero.hero-slider-layout .hero-slide{
	min-height: 100vh;
}

.hero.hero-slider-layout .swiper-slide{
	position: relative;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
	padding: 0;
	width: 100%;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(1.91deg, rgba(17, 24, 39, 0.16) 64.59%, rgba(17, 24, 39, 0.55) 101.91%), linear-gradient(270deg, rgba(17, 24, 39, 0) 44.72%, rgba(17, 24, 39, 0.48) 117.07%), linear-gradient(180deg, rgba(17, 24, 39, 0) 68.75%, rgba(17, 24, 39, 0.38) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-slide .container{
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	z-index: 2;
}

.hero.hero-slider-layout .hero-slide .row{
	width: 100%;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero.hero-slider-layout .swiper-button-next,
.hero.hero-slider-layout .swiper-button-prev{
    color: var(--white-color);
    background: transparent;
    transition: all 0.3s ease;
}

.hero.hero-slider-layout .swiper-button-next:after,
.hero.hero-slider-layout .swiper-button-prev:after{
    font-size: 20px;
}

.hero.hero-slider-layout .swiper-button-next:hover,
.hero.hero-slider-layout .swiper-button-prev:hover{
    background: var(--accent-color);
}

.hero-content{
	position: relative;
	z-index: 2;
}

.hero-content .section-title p{
	font-size: 18px;
	color: var(--secondary-color);
}

.hero-content .hero-btn .btn-highlighted{
	margin-left: 20px;
}

.hero-content-body{
	display: flex;
	align-items: center;
	margin-top: 40px;
}

.satisfy-client-images{
	display: inline-flex;
	margin-right: 20px;
}

.satisfy-client-img{
	width: 60px;
	height: 60px;
	border: 1px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    margin-left: -20px;
}

.satisfy-client-img:first-child{
    margin: 0;
}

.satisfy-client-img figure{
	display: block;
}

.satisfy-client-img img{
    width: 100%;
	border-radius: 50%;
}

.hero-counter-box{
	width: 100%;
	max-width: 200px;
}

.hero-counter-box p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
