/*=====================================
Cities
======================================*/

.bt-cities{

padding:90px 0;

background:#ffffff;

}

.bt-city-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:50px;

}

.bt-city-card{

background:#fff;

border-radius:18px;

padding:35px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.bt-city-card:hover{

transform:translateY(-10px);

}

.bt-city-icon{

width:80px;

height:80px;

margin:auto;

border-radius:50%;

background:#0B5ED7;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#fff;

margin-bottom:25px;

}

.bt-city-card h3{

font-size:24px;

margin-bottom:10px;

color:#0F172A;

}

.bt-city-card p{

color:#64748B;

margin-bottom:20px;

}

@media(max-width:991px){

.bt-city-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.bt-city-grid{

grid-template-columns:1fr;

}

}