/* Add here all your CSS customizations */
.card-body{
    text-align: center;
}

/* İletişim Butonları */
.wp1, .wp2{
    background-color: #25d366;
    display: block;
    position: fixed;
    z-index: 999;
    bottom: 20px;
    left: 20px;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0;
    padding: 0;
}

.wp2{
    left:auto;
    right:20px;
    background-color: #149946;
}

.wp1 i, .wp2 i{
    font-size: 2em;
    line-height: 60px;
    color: #fff;
    margin: 0;
    padding: 0;
}

@media(max-width:991px){
    .wp1, .wp2{
        border-radius: 0;
        width: 50%;
        bottom:0;
        left: 0;
        height: 40px;
        line-height: 40px;
    }

    .wp2{
        left: auto;
        right: 0;
    }

    .wp1 i, .wp2 i{
        line-height: 40px;
        font-size: 1.5em;
    }
}

.butonlar{
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

.butonlar li{
    float: left;
    width: 50%;
    padding: 0 5px;
    text-align: center;
}

.butonlar li a{
    padding: 10px 0;
    background-color: #222;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    display: block;
    transition: 300ms all;
}

.butonlar li a:hover{
    text-decoration: none;
    opacity: 0.8;
}

.butonlar li:first-child a{
    background-color: #25d366;
}

.butonlar li a i{
    font-size: 19px;
    /*position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);*/
}