/* Контейнер для кнопки */
.floating-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.navbar-nav li a{
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    /* display: flex; */
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
}


@media(max-width: 1100px){
    .navbar-toggler{
        display: block;
    }
    
    .menu1{
        display: none;
    }
    
   .contact-method img {
        width: auto !important;
    }
}

@media(max-width: 480px){
    .offcanvas.offcanvas-end {
        width: 100%;
    }
}

.floating-button:hover {
    background-color: #eb8f01;
    transform: scale(1.1);
}

/* Иконка внутри кнопки */
.button-icon {
    width: 30px;
    height: 30px;
}

/* Окно с кнопками */
.popup2 {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(20px);
    opacity: 0;
}

/* Видимость окна */
.popup2.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Скрытое состояние */
.hidden {
    display: none;
}

/* Ссылки в popup */
.popup-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}