/*
Theme Name: golin
 * Description:
 * Author: Max McCall
*/

@import url('compiled/style.css?v=58522123');


/* Acessibility */
.global-header__nav #menu li a:focus-visible{
    outline: 2px solid white; /* White outline */
    outline-offset: 2px; /* Optional spacing */
    box-shadow: 0 0 0 2px blue; /* Optional additional effect */
    border-radius: 4px; /* Adjust the radius as needed */
}


/* Locale Button */

.global-footer__container .locale{
    display: none;
}
.global-header__list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transform: none!important;
    column-gap: 1.5rem;
    align-items: center;
    margin-top: 30px;margin-top: 30px;
}

.global-header__list li{
    display: flex;
    justify-content: center;
}
.global-header__list-item a{
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0!important;
}

.global-header__icon{
    width: 100%;
    margin-bottom: 14px;
}

.locale-button{
    display: none;
}

.current_locale a:before{
    transform: scaleX(1)!important;
}

@media screen and (min-width: 1000px) {
    .locale-button{
        padding: 0;
        border: 0;
        background: transparent;
        margin-right: 1.5rem;
        margin-left: 3.5rem;
        position: relative;
        cursor: pointer;
        display: block;
    }
    .locale-button:after{
        content: '';
        display: none;
        position: absolute;
        width: 130px;
        left: -47px;
        height: 30px;
        bottom: -23px;
    }
    .locale-button .hover{
        position: absolute;
        z-index: 9999;
        left: 0;
        opacity: 0;
        transition: 400ms all;
    }
    .locale-button:hover .hover{
        opacity: 1;
    }
    .locale-button:hover:after{
        display: block;
    }
    .locale-button:hover + ul.global-header__list {
        display: flex;
    }
    ul.global-header__list:hover{
        display: flex;
    }

    li.global-header__icon{
        display: none!important;
    }

    ul.global-header__list{
        position: absolute;
        background-color: rgba(255, 255, 255, .8) !important;
        flex-direction: column;
        justify-content: flex-start;
        display: none;
        right: -28px;
        padding: 6px 0 6px!important;
        margin: 0;
        top: 60px;
        width: 130px;
    }

    .current_locale a:before{
        transform: scaleX(1)!important;
    }

    .global-header__list-item a{
        text-transform: uppercase;
        letter-spacing: .5px;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 0 !important;
        text-align: left;
        padding: 8px 0!important;
    }

    .global-header__nav #menu{
        overflow: visible;
    }
}