/* MARKETPLACES */

.mira-marketplaces{

    text-align:center;

    padding:60px 20px;

}

.mira-marketplaces-title{

    margin-bottom:40px;

    font-size:30px;

    font-weight:600;

}

.mira-marketplaces-grid{

    display:flex;

    justify-content:center;

    gap:60px;

    flex-wrap:wrap;

}

.mira-marketplace{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-decoration:none;

    color:#111;

}

.mira-marketplace-circle{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.mira-marketplace-circle img{

    width:50px;

    height:50px;

}

.mira-marketplace span{

    margin-top:14px;

    font-size:15px;

    font-weight:600;

}

.mira-marketplace:hover .mira-marketplace-circle{

    transform:translateY(-6px);

    box-shadow:0 16px 35px rgba(0,0,0,.15);

}