body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('/img/image.webp') no-repeat center center fixed;

    background-size: cover;
    background-position: center center;
    color: white;
}

.position-absolute {
    z-index: 1000;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

img {
    max-width: 50px;
    /* Adjust the icon size as needed */
}

footer img {
    max-width: 30px;
    /* Smaller icons for footer */
}

.contact-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    color: #007bff;
    /* Change to the color you prefer */
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-icon:hover {
    background-color: #f0f0f0;
    /* Slightly darker on hover */
}

.text-label {
    color: #000;
}

svg {
    width: 24px;
    height: 24px;
}

.contacts p {
    margin-bottom: 8px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addresses p {
    margin: 0;
}

.addresses {
    text-align: right;
}

.icon-container {
    height: 150px;
    /* Set a fixed height for the container */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    /* Spacing between the image and text */
}

.icon-container img {
    max-height: 100%;
    max-width: 100%;
}

.icon {
    filter: invert(100%);
}

@media (max-width: 767.98px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    header>div {
        margin-bottom: 10px;
    }

    header>div:last-child {
        margin-bottom: 0;
    }

    .container.d-flex {
        flex-direction: column;
        align-items: center;
    }

    .contacts,
    .addresses {
        text-align: center;
        margin-bottom: 15px;
    }

    .addresses {
        margin-bottom: 0;
    }
}