html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
}

.hero {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-video {
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    z-index: 1;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid;
}

@media (max-width: 576px) {
    .avatar {
        width: 100px;
        height: 100px;
    }
}




.gallery-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease;
    will-change: transform;
}

.gallery-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

.gallery-item:hover i {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.gallery-item img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.modal-body {
    gap: 20px;
    padding: 30px;
}

@media (max-width: 992px) {
    .modal-body {
        flex-direction: column;
    }
}











.modal .social-icons a {
    color: #333;
    font-size: 24px;
    transition: color 0.3s ease;
}

.modal .social-icons a:hover {
    color: #007bff;
}








.slick-dots li button:before {
    color: white; /* цвет точек */
    opacity: 0.5; /* полупрозрачность неактивных точек */
}

.slick-dots li.slick-active button:before {
    opacity: 1; /* непрозрачность активной точки */
    color: white; /* цвет активной точки */
}











.custom-input {
    color: #495057 !important;
    background-color: #f8f9fa !important;
    border: 1px solid #ced4da !important;
    font-weight: 400 !important;
}

label {
    color: #6c757d !important;
    font-weight: 400 !important;
}

.custom-input::placeholder {
    color: #b0b3b8 !important;
}

.custom-input:focus {
    border-color: #5a9fd6 !important;
    box-shadow: 0 0 6px rgba(90, 159, 214, 0.4) !important;
}







footer {
    font-size: 14px;
}

.footer-link {
    font-size: 16px;
}

.social-icons a {
    margin: 0 10px;
}


.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1396EC;
}












#whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, right 0.3s ease-in-out;
}

#whatsapp-widget.hide {
    right: -145px;
}

#whatsapp-widget:hover {
    background-color: #1ebe57;
}

.whatsapp-link {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
}

.whatsapp-link i {
    font-size: 24px;
    margin-right: 10px;
}

#whatsapp-text {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    display: inline-block;
    white-space: nowrap;
    position: relative;
}



@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}