@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.single-banner-slide {    
	height: 720px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: column;
	position: relative;
	z-index: 2;
}
.single-banner-slide span {
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
}
.single-banner-slide h2 {
	color: #fff;
	text-transform: uppercase;
	font-size: 60px;
}
.single-banner-slide::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: -1;
	width: 100%;
	height: 100%;
}

.single-banner-slide a {
    font-family: "Raleway", sans-serif;
    border: 1px solid #C5AE80;
    background: rgba(255, 255, 255, .2);
	color: #fff;	
	padding: 15px 65px;
	border-radius: 2px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 50px;
	transition: 0.3s;
    
}
.single-banner-slide a:hover {
	color: #fff;
	background: #222;
}


.single-banner-slide  .banner_content {
    width: 400px;
    padding: 15px;
    position: absolute;
  background:rgba(17, 16, 16, 53%);  
  text-align: left;
  position: absolute;
  top: 50px;
  left: 50px;
}
.single-banner-slide .banner_content .group_txt {
    display: flex;
    gap:10px;
    margin-top:15px;
}
.single-banner-slide .banner_content .group_txt .text_block {
   padding:5px 15px;
   border: 1px solid rgba(255, 255, 255, .4);
   border-radius: 30px;
}
.banner_content .group_txt .text_block p{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    margin: 0px;
}
.single-banner-slide  .banner_content .title{
    font-family: "Raleway", sans-serif;
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
}
.single-banner-slide  .banner_content p{
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-align: left;    

}
.project_banner-slide .owl-dots {
    position: absolute;
    bottom: 20px;
    /* left: 50px; */
    left: 0px;
    width: 95%;
    /* transform: translateX(-50%); */
    /* margin: 0px auto; */
    right: 0px;
    margin: 0px auto;
    display: flex;
}
.project_banner-slide .owl-dots .owl-dot {
    flex-grow: 1;
}
/* .project_banner-slide .owl-dots .owl-dot {
    bottom: 50px;  
    position: absolute;
    
} */
.project_banner-slide .owl-dots .owl-dot span{
    display: block;    
    height: 3px;
    background: rgba(255, 255, 255, .4);
}
.project_banner-slide .owl-dots .owl-dot.active{
    background: #fff;
}

.project_banner-slide .owl-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
   
}
.project_banner-slide .owl-nav  span{
    display: none;
}
.project_banner-slide .owl-nav .owl-prev {
    background: url(../images/prev-arrow.svg) no-repeat !important;
    width: 60px;
    height: 50px;
}
.project_banner-slide .owl-nav .owl-next {
    background: url(../images/next-arrow.svg) no-repeat !important;
    width: 100px;
    height: 50px;
}

@media (max-width:767px){
    .single-banner-slide {
        padding-bottom: 50px;
    }
    .single-banner-slide a{
        width: 95%;
        margin-left:auto;
        margin-right:auto;
        text-align: center;
    }
    .project_banner-slide .owl-dots {
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        width: 95%;
        bottom: 40px;
    }
    .project_banner-slide .owl-dots .owl-dot{
        flex-grow: 1;
        
    }
    .project_banner-slide .owl-dots .owl-dot span{
     width: 100%;
     background: rgba(255, 255, 255, .2);
    }
    
}