﻿/* ==========================
           FOOTER
        ========================== */
.footer-section {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 75px 30px;
    margin-top: auto;   
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.logo-img {
    max-width: 350px;
    max-height: 85px;
    object-fit: contain;
}

.footer-contact {
    font-size: 10pt;
    line-height: 1.5;
    flex: 1 1 140px;
    min-width: 140px;
}

.uc-images {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .uc-images img {
        width: auto;
        max-width: 120px;
        height: 64px;
        object-fit: contain;
    }

    .uc-images .divider {
        width: 1px;
        height: 64px;
        background-color: #ffffff; 
        margin: 0 8px;
    }

.links-grid {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    overflow-x: auto;
}

.links-footer-col {
    flex: 1 1 auto;
    min-width: 140px;
    white-space: nowrap;
}

.footer-title {
    font-weight: bold;
    font-size: 14pt;
    margin-bottom: 10px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li {
        margin-bottom: 5px;
        white-space: nowrap;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .footer-list li a {
            display: inline-block;
            font-size: 14pt;
            font-weight: normal;
            color: #ffffff;
            text-decoration: none;
            line-height: 1.4;
        }

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}
.footer-legal a {
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 10pt;
    color: #ffffff;
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    line-height: 1.4;
    text-decoration: none;
}

.footer-legal-social {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-wrap: nowrap;
}

    .footer-legal-social a {
        color: inherit;
        text-decoration: none;
        font-weight: bold;
        font-size: 12pt;
    }


.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    margin-bottom: 20px
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 22px;
}


.footer-updates {
    margin-top: 10px;    
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
}


html, body {
    overflow-x: hidden;
}


.update-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    box-sizing: border-box;
}


.update-inner {
    display: flex;
    gap: 20px;
    position: relative;
    padding-top: 18px;
    max-width: 100%;
    box-sizing: border-box;
}
    
    .update-inner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #ffffff;
    }


.update-text {
    font-family: Arial, Arial Narrow, sans-serif;
    font-size: 10pt;
    line-height: 1.4;
    margin: 0;
    text-align: right;
    white-space: normal;
    max-width: 100%;
}

.copyright-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.copyright {
    font-size: 8pt;
    line-height: 1.4;
    margin: 0;
    text-align: right;
}

.footer-logo {
    display: inline-block;
}

.logo-1 {
    width: 55px;
    height: 25px;
    object-fit: contain;
}

.logo-2 {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-toggle {
    text-align: right;
}

    .footer-toggle button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .footer-toggle .arrow {
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 14px solid #ffffff;
        transition: transform 0.3s ease;
    }

        .footer-toggle .arrow.up {
            transform: rotate(180deg);
        }

.footer-hidden-block {
    display: none;
    margin-top: 20px;
}

    .footer-hidden-block.show {
        display: block;
    }

    .footer-hidden-block .footer-contact {
        font-size: 10pt;
        line-height: 1.4;
        white-space: nowrap;
    }

.footer-hidden-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: flex-start;
    flex: 0 0 auto;
    min-width: 220px;
    white-space: normal;
}


@media (max-width: 992px) {
    .update-inner {
        flex-direction: column;
        gap: 10px;
    }

    .update-text {
        text-align: left;
    }
}

@media (max-width: 1350px) {
    .links-grid {       
        gap: 20px; 
        overflow-x: hidden;
    }

    .links-footer-col {
        flex: 1 1 45%; 
        min-width: 220px; 
    }

    .footer-list li {
        white-space: normal; 
    }
}
