.hero-slider {
    width: 100%;
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
    background:var(--black)
}

.slide-bg-image::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--blackrgba3);
}


@media (max-width: 991px) {
    .hero-slider {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 500px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: var(--white);
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 60px;
    height: 60px;
    line-height: 60px;
    padding:15px;
    margin-top: -30px;
    text-align: center;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    opacity:0;
    visibility:hidden;
    transition:all .3s ease;
    color:var(--white);
    /*background:var(--blackrgba3);*/
}
.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform:translateX(0);
    opacity:1;
    visibility:visible;
}

@media (max-width: 767px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 10px;
    transform:translateX(50px);
}

.hero-slider .swiper-button-next {
    right: 10px;
    transform:translateX(-50px);
}







.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    position:relative;
    bottom: 100px;
    left: 0;
    z-index: 200;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    text-align:left !important;
    max-width:1400px;
    width:100%;
    padding:0px 15px;
    margin:0 auto;
}
.hero-slider .swiper-pagination-bullet {
    width: 14px;
    height: 6px;
    display: inline-block;
    border-radius: 1px;
    background-color: var(--blackrgba3);
    opacity: 1;
    cursor: pointer;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}
.hero-slider .swiper-pagination-bullet:hover {
    background-color: var(--dblue2);
}
.hero-slider .swiper-pagination-bullet-active:hover,
.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--lblue1);
    width: 40px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.hero-slider .swiper-pagination-bullet:active,
.hero-slider .swiper-pagination-bullet:focus {
    border: none;
    outline: none;
}






.swiper-pagination {
    text-align:left;
}
/*
.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
	bottom:30px;
	max-width: 1400px;
	padding: 0 15px;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
}
}
@media (min-width: 767px) {
	.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets{
		bottom:30px;

	}
}*/
/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
    height: 700px;
    transition:all .4s ease;
}

@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style{
        height: 500px;
    }
}
/*
@media screen and (min-width: 992px) {
	.hero-style .container {
		padding-top: 120px;
	}
}
*/

.hero-style .container {
    max-width:1400px;
    padding:0px  30px;
    margin:0 auto;
}





/*
.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
	max-width: 690px;
	background:#fc0
}*/

.hero-style .slide-title h2 {
    font-size:42px;
    font-weight: bold;
    line-height: 1.1;
    color: var(--white);
    margin: 0px 0px 20px 0px;
    transition:all .4s ease;
}

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size:40px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size:32px;
    }
}

.hero-style .slide-text p {
    font-size: 24px;
    line-height: 1.2 !important;
    letter-spacing: normal;
    color:var(--white);
    margin: 0px 0px 30px 0px;
    transition:all .4s ease;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 20px;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns > a:first-child {
    margin-right: 10px;
}


