/*===== Banner =====*/

.about-banner{
position:relative;
height:650px;
overflow:hidden;
border-radius:0 0 50px 50px;
}

.about-banner img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.banner-overlay{
position:absolute;
inset:0;
background:linear-gradient(
to top,
rgba(0,0,0,.75),
rgba(0,0,0,.2)
);
z-index:1;
}

.banner-content{
position:absolute;
bottom:80px;
right:8%;
z-index:2;
color:#fff;
max-width:600px;
}

.banner-content h1{
font-size:60px;
margin-bottom:15px;
font-weight:700;
}

.banner-content p{
font-size:20px;
opacity:.9;
}


/*===== About =====*/

/*==================================
HERO
==================================*/

.studio-hero{

position:relative;
height:100vh;
overflow:hidden;

}

.studio-hero img{

width:100%;
height:100%;
object-fit:cover;
display:block;

}

.studio-overlay{

position:absolute;
inset:0;

background:
linear-gradient(
to top,
rgba(0,0,0,.82),
rgba(0,0,0,.25)
);

z-index:1;

}

.studio-content{

position:absolute;

bottom:10%;
right:8%;

z-index:2;

max-width:700px;

color:#fff;

}

.hero-mini{

display:inline-block;

margin-bottom:20px;

letter-spacing:5px;

font-size:14px;

color:#d6b98c;

}

.studio-content h1{

font-size:75px;

line-height:1.2;

margin-bottom:25px;

font-weight:700;

}

.studio-content p{

font-size:20px;

line-height:2;

color:rgba(255,255,255,.82);

max-width:550px;

}


/*==================================
ABOUT
==================================*/
.studio-about-page{

padding:120px 0;

}

.about-head{

text-align:center;

margin-bottom:70px;

}

.about-head span{

color:#c8a06b;

letter-spacing:4px;

}

.about-head h2{

font-size:48px;

line-height:1.8;

margin-top:20px;

}

.about-image-main{

position:relative;

overflow:hidden;

border-radius:35px;

}

.about-image-main img{

width:100%;

height:750px;

object-fit:cover;

}

.exp-box{

position:absolute;

left:30px;

bottom:30px;

background:#111;

padding:25px;

border-radius:20px;

}

.exp-box h3{

font-size:45px;

margin:0;

color:#d6b98c;

}

.about-content p{

line-height:2.5;

font-size:18px;

color:#bbb;

margin-bottom:25px;

}

.about-cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-top:80px;

}

.about-card{

background:#111;

padding:35px;

border-radius:30px;

text-align:center;

}

.about-card h4{

margin-bottom:15px;

}

.about-card p{

color:#aaa;

}


@media(max-width:768px){

.about-head h2{

font-size:30px;

}

.about-image-main img{

height:450px;

}

.about-cards{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:80px;

}

.about-card{

position:relative;

padding:90px 30px 35px;

text-align:center;

border-radius:35px;

background:
linear-gradient(
180deg,
rgba(197,162,104,.18),
rgba(0,0,0,.95)
);

border:1px solid rgba(212,179,123,.35);

overflow:visible;

transition:.5s;

box-shadow:
0 15px 50px rgba(0,0,0,.4);

}


.card-icon{

position:absolute;

top:-40px;
left:50%;

transform:translateX(-50%);

width:90px;
height:90px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:38px;

background:
radial-gradient(
circle,
#d5ba87,
#8c7349
);

box-shadow:
0 0 30px rgba(212,179,123,.5);

}


.card-icon i{

color:#fff;

}

.about-card h4{

font-size:32px;

margin-bottom:15px;

color:#f0d7a3;

}

.about-card p{

color:#c9c9c9;

line-height:2;

}

.about-card:hover{

transform:translateY(-12px);

box-shadow:
0 25px 60px rgba(212,179,123,.15);

}


/* موبایل */

@media(max-width:991px){

.about-cards{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:768px){

.about-cards{

grid-template-columns:1fr;

gap:70px;

}

}


