/* =====================================================
   MEDICAL GLOBAL ACADEMY
   LEFT STICKY COUNSELLING WIDGET
===================================================== */

.mga-left-widget{
    position:fixed;
    top:100px;
    left:20px;
    width:300px;
    z-index:9999;
}

.mga-box{
    background:#fff;
    border:2px solid #d7ecd9;
    border-radius:18px;
    padding:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.mga-icon{
    width:70px;
    height:70px;
    margin:0 auto 15px;
    border-radius:50%;
    background:#eaf8ef;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
}

.mga-box h3{
    font-size:20px;
    color:#117b36;
    text-align:center;
    line-height:1.3;
    margin-bottom:18px;
    font-weight:700;
}

.mga-box ul{
    margin:0;
    padding:0;
    list-style:none;
}

.mga-box ul li{
    font-size:15px;
    margin-bottom:12px;
    color:#222;
}

.mga-box ul li:last-child{
    margin-bottom:18px;
}

.mga-call,
.mga-wa{
    display:block;
    width:100%;
    text-align:center;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
    box-sizing:border-box;
}

.mga-call{
    background:#11843d;
    color:#fff;
}

.mga-call:hover{
    background:#0c6e31;
}

.mga-or{
    display:block;
    text-align:center;
    margin:14px 0;
    font-weight:700;
    color:#666;
}

.mga-wa{
    background:#25D366;
    color:#fff;
}

.mga-wa:hover{
    background:#1EBE5D;
}

@media(max-width:1600px){
    .mga-left-widget{
        left:10px;
        width:280px;
    }
}

@media(max-width:1400px){
    .mga-left-widget{
        display:none;
    }
}