/* По умолчанию ширина 100% */
.navbar-custom {
    width: 100%;
}

/* Для экранов шире 800px ширина 70% и центрирование */
@media (min-width: 900px) {
    .navbar-custom {
        max-width: 70%;
        margin: 0 auto; /* Центрирование контейнера */
    }
}

.promo-block {
    position: relative;
    max-width: 100%;
    height: auto;
    background-color: black;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    font-family: Arial, sans-serif;
    /*padding: 20px;*/
    box-sizing: border-box;
}
@media (max-width: 900px) {
    .promo-block {
        visibility: hidden;
        display: none;
    }
    .promo-img {
        visibility: hidden;
        display: none;
    }

}
.promo-block img {
    max-width: 100%;
    height: auto;
    border-radius: 0 10px 10px 0;
    margin-top: 10px;
}
.promo-block .text {
    text-align: left;
    font-size: 40px; /* Увеличенный размер шрифта */
    font-weight: bold; /* Жирный шрифт */
    margin-left: 3%;
}
.promo-block .button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: red;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px; /* Увеличенный размер шрифта кнопки */
    font-weight: bold; /* Жирный шрифт кнопки */
    animation: pulse 1.5s infinite; /* Анимация увеличения и уменьшения */
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@media (min-width: 768px) {
    .promo-block {
        flex-direction: row;
    }
    .promo-block img {
        max-width: 50%;
        margin-top: 0;
    }
    
}
@media (max-width: 769px) {
    .promo-block {
        flex-direction: row;
    }
    .promo-block img {
        max-width: 50%;
        margin-top: 0;
    }
    .search_button {
        visibility: hidden;
    }
}
.button_chooise{
    border-color: #0068ff;
    border-width: 1px;
    margin-bottom: 12px;
    margin-right: 6px;
    animation:test 3s infinite;
    margin-top:12px;
    
}
.groupName{
    margin-bottom: 40px;
    margin-top: 40px;
}
.icon_img{
    height: 58
        px;

}

@keyframes test{
    0%{
    color:red;
        border-color:red;
    }
    50%{
        color:blue;
        border-color:blue;
    }
    100%{
      color:red;
    border-color:red;  
    }
    
}
.button_social_inst{
    border-color: #0068ff;
    border-width: 3px;
    margin-bottom: 12px;
    margin-right: 6px;
    animation:inst 3s infinite;
    margin-top:12px;
}
@keyframes inst{
    0%{
    color:#ffd654;
        border-color:#ffd654;
    }
    50%{
        color:#cc39a3;
        border-color:#ce3a9e;
    }
    100%{
      color:#ffd654;
        border-color:#ffd654;
    }
    
}
.button_social_whatshap{
     
    border-width: 3px;
    margin-bottom: 12px;
    margin-right: 6px;
    animation:whatshap 3s infinite;
    margin-top:12px;
    
}
@keyframes whatshap{
    0%{
    color:#07d433;
        border-color:#07d433;
    }
    50%{
        color:#f60037;
        border-color:#ff0000;
    }
    100%{
    color:#07d433;
        border-color:#07d433;
    }
    
}

.margin_bottom_5{
    margin-bottom:5%;
}