.header__menu-item:hover > a,
.header__user:hover {
    color: var(--orange);
}

.header__map-button {
    transition: var(--transition);
}

.header__map-button:hover {
    opacity: 0.75;
}

.header__menu-item:hover .header__dropdown {
    color: var(--black);
}

.header__dropdown {
    display: none;
}

.header__menu-item:nth-child(2) .header__dropdown {
    display: flex;
}

.index-map {
    overflow: hidden;
}

.smart-cards__image {
    animation: neonPulse 2s infinite ease-in-out;
    transition: all 0.3s ease;
}

@keyframes neonPulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
    filter: drop-shadow(0 0 1px #ffcc00) brightness(1);
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
    filter: drop-shadow(0 0 10px #ffcc00) brightness(1.1);
  }
}

.cookie {
    visibility: hidden;
    opacity: 0;
    transform: translateY(50%);
    position: fixed;
    right: 10px;
    bottom: 10px;
    padding: 25px;
    width: 635px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.1);
    z-index: 51;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.show-cookie {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.cookie__text-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie__text {
    font-size: 16px;
    line-height: 1.2;
    color: var(--black);
}

.cookie__text a {
    color: #596e5d;
    font-weight: 600;
    color: var(--orange);
    display: inline;
}

.cookie__accept {
    width: 150px;
    height: 40px;
    background: linear-gradient(225deg, #ffac62 0, #ff7900 100%);
    border: unset;
    cursor: pointer;
    color: #fff;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cookie__accept:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cookie {
        left: 10px;
        width: auto;
    }
}

@media (max-width: 520px) {
    .cookie {
        padding: 15px;
    }
    
    .cookie__text {
        font-size: 14px;
    }
    
    .cookie__accept {
        font-size: 14px;
    }
}

.about__play {
    display: none;
}

.about {
    pointer-events: none;
}

.contacts__bases {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1400px) {
    .contacts__bases {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .contacts__bases {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contacts__bases {
        grid-template-columns: 1fr;
    }
}

.ui-input--active .ui-input__label {
    top: -7px;
    -webkit-transform: scale(.6);
    -ms-transform: scale(.6);
    transform: scale(.6);
}


.fancybox__slide.has-iframe .fancybox__content {
    height: 500px!important;
}


.trusted__item-link img {
    width: auto;
    height: 85px;
    object-fit: contain;
}

.table_4 .table__row{
    grid-template-columns: repeat(4, 1fr);
}

.table__row{
    overflow: hidden;
}

@media (max-width: 1350px) {
   .trusted__item-link img {
        height: 60px;
    } 
}

@media (max-width: 1200px) {
   .trusted__item-link img {
        height: 45px;
    } 
}

@media (max-width: 620px) {
   .trusted__item-link img {
        height: 35px;
    } 
}



