/* Calculator custom styles */
.calculator-area {
    background-color: #f6f6f6;
}

.calculator-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calculator-frame {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.others-section .others-boxes .icons-heading .heading a {
    font-size: 22px;
}

.vl-footer1-section-area {
    padding: 50px 0 32px;
    border-top: 1px solid #ddd;
    background: #fff
}

.others-section .others-boxes .icons-heading .icons {
    display: none;
}

.others-section .others-boxes .icons-heading .heading {
    padding-left: 0;
}

.dn {display: none;}

/* Styles for 404 page */
.error-page {
    background-color: #f8f9fa;
}

.error-page-container {
    margin-top: 3rem;
}

.error-number {
    font-size: 10rem;
    color: #dc3545;
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.error-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-home {
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    background-color: #007bff;
    border: none;
    color: white;
    display: inline-block;
}

.btn-home:hover {
    background-color: #0056b3;
    color: white;
    text-decoration: none;
}

/* Стили для социальных иконок в верхней панели */
.vl-header-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    padding-right: 10px;
}

.header-social-icons {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-left: auto;
    padding: 5px 0;
}

.header-social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    opacity: 1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.header-social-icons .social-icon:hover {
    background-color: #155FFF;
    transform: translateY(-3px) scale(1.05);
    border-color: #155FFF;
    box-shadow: 0 6px 15px rgba(21, 95, 255, 0.4);
}


.header-social-icons .social-icon i {
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

/* Адаптивность для мобильных устройств */
@media (max-width: 1199px) {
    .vl-header-social {
        display: none;
    }
}