*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Poppins',sans-serif;
background:#ffffff;
color:#111;
overflow-x:hidden;

}

img{

display:block;
width:100%;

}

a{

text-decoration:none;

}






/* project css start**/

.opportunities{

padding:100px 6%;

background:#fff;

}

.section-heading{

text-align:center;

margin-bottom:55px;

}

.section-heading span{

font-size:14px;

letter-spacing:3px;

color:#C89D43;

font-weight:600;

position:relative;

}

.section-heading span::before,
.section-heading span::after{

content:'';

width:55px;

height:2px;

background:#D6B15E;

display:inline-block;

margin:0 15px;

vertical-align:middle;

}

.section-heading h2{

margin:15px 0 10px;

font-size:52px;

font-family:'Playfair Display',serif;

color:#1C3155;

}

.section-heading p{

font-size:18px;

color:#777;

}


.opportunity-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}




.opportunity-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.opportunity-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 55px rgba(0,0,0,.12);

}



.card-image{

overflow:hidden;

height:240px;

}

.card-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.7s;

}

.opportunity-card:hover img{

transform:scale(1.08);

}


.card-content{

padding:22px 25px;

display:flex;

justify-content:space-between;

align-items:center;

}

.card-content h3{

font-size:30px;

font-family:'Playfair Display',serif;

color:#183153;

margin-bottom:8px;

}

.card-content p{

font-size:15px;

color:#777;

}


.circle-btn{

width:52px;

height:52px;

border:2px solid #D6B15E;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#D6B15E;

transition:.35s;

flex-shrink:0;

}

.circle-btn:hover{

background:#D6B15E;

color:#fff;

}


@media(max-width:991px){

.opportunity-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:38px;

}

.card-image{

height:220px;

}

}

/*Project card css end*/