.btncontainer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    /* İhtiyaca göre ayarla */
}

@media (max-width: 767px) {
    .navbar-header {
        padding-top: 7px;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding-top: 35px;
    /* Yukarıdan ve aşağıdan padding ekleyin */

}

.navbar-default {
    background-color: #ece1ce;
    /* Arka plan rengi */
}

.navbar-header {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 187px;
    /* Genişlik */
    height: 75px;
    /* Yükseklik */
}

.theme-btnn {
    background-color: var(--theme-primary-color);
    font-size: 12px;
    font-size: calc(12 / 16 * 1rem);
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
    padding: 15px 45px 15px 25px;
    border: 0;
    border-radius: 60px;
    text-transform: uppercase;
    position: relative;
}

.theme-btnn:before {
    font-family: "themify";
    content: "\e649";
    font-size: 12px;
    font-size: calc(12 / 16 * 1rem);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .theme-btnn:before {
        display: none;
    }
}

.theme-btnn:after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: 35px;
    top: 0;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .theme-btnn:after {
        display: none;
    }
}

.theme-btnn:hover,
.theme-btnn:focus,
.theme-btnn:active {
    background-color: darken(var(--theme-primary-color), 5%);
    color: #ffffff;
}

@media (max-width: 991px) {
    .theme-btnn {
        font-size: 14px;
        font-size: calc(14 / 16 * 1rem);
        padding: 12px 20px;
    }
}

@media (max-width: 767px) {
    .theme-btnn {
        padding: 12px 15px;
        font-size: 13px;
        font-size: calc(13 / 16 * 1rem);
    }
}
.whatsapp-btn-container {
    position: fixed;
    right: 30px;
    opacity: 0;
    bottom: -50px;
    padding: 24px;
    animation: fade-up 400ms forwards;
    animation-delay: 400ms;
}

@keyframes fade-up {
    100% {
        bottom: 24px;
        opacity: 1;
    }
}

.whatsapp-btn-container .whatsapp-btn {
    font-size: 48px;
    color: #25d366;
    display: inline-block;
    transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover {
    transform: scale(1.2);
}

.whatsapp-btn-container span {
    position: absolute;
    top: 0;
    left: 4px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #075e54;
    transform: rotateZ(20deg) translateX(10px);
    opacity: 0;
    transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover + span {
    transform: rotateZ(0deg) translateX(0px);
    opacity: 1;
}