html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


.rez_a{
    background-color:black;
    color:white;
    padding:10px;
    border-radius:10px;
}

.text_color {
    color: #ff9900 !important;
}




/* Dalga Animasyonu */
@keyframes wave-animation {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}



.phone-fixed-container {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 9999;
}

/* WhatsApp Butonu */
.phone-link {
    display: inline-block;
    background-color: #ff9900;
    color: white;
    font-weight: bold;
    padding: 0 5px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* WhatsApp İkonu */
    .phone-link i {
        font-size: 18px;
        z-index: 2;
    }

    .phone-link .wave {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0, 0.5);
        border-radius: 50%;
        animation: wave-animation 1.5s infinite;
    }

        /* Dalga Efektinin Zamanlaması */
        .phone-link .wave:nth-child(2) {
            animation-delay: 0.5s;
        }

        .phone-link .wave:nth-child(3) {
            animation-delay: 1s;
        }





.whatsapp-fixed-container {
    position: fixed;
    right: 30px;
    bottom: 200px;
    z-index: 9999;
}

/* WhatsApp Butonu */
.whatsapp-link {
    display: inline-block;
    background-color: green;
    color: white;
    font-weight: bold;
    padding: 0 5px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* WhatsApp İkonu */
    .whatsapp-link i {
        font-size: 18px;
        z-index: 2;
    }

    .whatsapp-link .wave {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0, 0.5);
        border-radius: 50%;
        animation: wave-animation 1.5s infinite;
    }

        /* Dalga Efektinin Zamanlaması */
.whatsapp-link .wave:nth-child(2) {
    animation-delay: 0.5s;
}

.whatsapp-link .wave:nth-child(3) {
    animation-delay: 1s;
}