section.banner{
    background: url(../images/director-banner.webp);
	width: 100%;
	height: 400px;
	background-size: cover;
	margin-top: 0px; 
	position: relative;  
	background-position: center;
   }
section.banner .banner-title{
	   position: absolute;
	   top: 0;
	   left: 0;
	   width: 100%;
	   height: 100%;
	   background: #00000078;
	   display: flex;
	   justify-content: center;
	   align-items: center;
}




/* about-section */
section.about-section h2 {
    color: var(--white-color);
    text-align: center;
    font-size: 50px;
    margin-bottom: 50px;
    position: relative;
}

section.about-section h2::before{
    content: '';
    position: absolute;
    bottom: -4px;
    width: 120px;
 height: 2px;
    background: var(--text-color);

}
section.about-section h2 span {
    color: var(--text-color);
}

section.about-section .about-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
    padding: 45px 0 0 20px;
}

button#myBtn, button#myBtn1{
    font-size: 14px;
    width: 20%;
    height: 40px;
    color: var(--white-color);
    background: var(--primary-color);
    border :1px solid var(--text-color);
}



button#myBtn:hover , button#myBtn1:hover {

   background:transparent;
}



#more, #more1{
    display: none;
}

section.about-section .about-cont .about-title h3 {
    color: var(--white-color);
    font-size: 35px;
}

section.about-section .about-cont .about-title h5 {
    color: var(--text-color);
    font-weight: 300;
    margin-bottom: 0;
    font-size: 16px;
}

section.about-section .about-cont p {
    opacity: 0.8;
    margin-bottom: 0;
}

section.about-section .about-img {
    padding: 50px;
}

section.about-section .about-img img {
    border-radius: 30px;
    width: 100%;
    object-fit: cover;
    height: 420px;
}

/* counter section */

section.counter-sec{
    position: relative;
    background: url('../images/osm-banner.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

section.counter-sec .col-3{
    z-index: 9;
}

section.counter-sec::before{
content: '';
position: absolute;
height: 100%;
width: 100%;
background:#00000091;
top: 0;
left: 0;
}

section.counter-sec .count{
    display: flex;
    flex-direction: column;
    align-items: center;
}

section.counter-sec .counter-cont{
    display: flex;
    align-items: center;
}

section.counter-sec .counter-cont span{
    font-size: 50px;
    font-weight: 300;
    color: var(--text-color);

}

section.counter-sec .counter-text {
    font-size: 20px;
   
}

section.counter-sec p.counter {
    font-size: 60px;
    color: var(--text-color);
    margin-bottom: 0;
}

section.counter-sec .counter-text {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
}



