/*==================================================
POPULAR CITIES
==================================================*/

.bt-cities{

padding:110px 0;

background:#f8fafc;

}

.bt-city-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.bt-city-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.bt-city-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.bt-city-card img{

width:100%;

height:230px;

object-fit:cover;

transition:.35s;

}

.bt-city-card:hover img{

transform:scale(1.06);

}

.bt-city-content{

padding:30px;

text-align:center;

}

.bt-city-content h3{

margin:0 0 15px;

font-size:28px;

font-weight:800;

color:#0f172a;

}

.bt-city-content p{

margin:0 0 25px;

line-height:28px;

color:#64748b;

}

.bt-city-content a{

display:inline-block;

padding:14px 28px;

background:#0d47a1;

color:#fff;

text-decoration:none;

border-radius:8px;

font-weight:700;

transition:.35s;

}

.bt-city-content a:hover{

background:#ffc107;

color:#111;

}

@media(max-width:991px){

.bt-city-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.bt-cities{

padding:70px 0;

}

.bt-city-grid{

grid-template-columns:1fr;

}

}