.header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    z-index: 999;
    padding: 1.875rem 0;
    border-bottom: #EEEEEE solid 0.0625rem;
}
.header-transparent{
    background-color: rgba(0,0,0,0);
    border-bottom: rgba(0,0,0,0) solid 0.0625rem;
}
.header-wrap{
    width: calc(100% - 22.5rem);
    padding: 0 11.25rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-left{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.header-brand-logo{
    height: 3.0625rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.header-brand-logo-img{
    height: 3.0625rem;
    object-fit: contain;
    display: block;
}
.header-brand-logo-img-white{
    display: none;
}
.header-transparent .header-brand-logo-img{
    display: none;
}
.header-transparent .header-brand-logo-img-white{
    display: block;
}
.header-right{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header-menu{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.header-menu-item{
    font-size: 1.125rem;
    color: #000000;
    margin-right: 3.4375rem;
    text-decoration: none;
}
.header-transparent .header-menu-item{
    color: #FFFFFF;
}
.header-menu-item:hover{
    color: #c38d00;
}
.header-menu-item:last-of-type{
    margin-right: 0;
}
.header-right-contact-info{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-left: 6.875rem;
}
.header-right-contact-methods{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.header-right-contact-social-medias{
    padding-left: 1.875rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header-right-contact-method{
    margin-right: 0.9375rem;
    font-size: 1.125rem;
    color: #000000;
    text-decoration: none;
}
.header-transparent .header-right-contact-method{
    color: #FFFFFF;
}
.header-right-contact-method:hover{
    color: #c38d00;
}
.header-right-contact-method:last-of-type{
    margin-right: 0;
}
.header-right-contact-social-media{
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 0.9375rem;
    position: relative;
}
.header-right-contact-social-media-qrcode{
    width: 12.5rem;
    height: 12.5rem;
    background-color: #FFFFFF;
    position: absolute;
    right: 0;
    top: 3rem;
    /*display: flex;*/
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: none;
    border-radius: 0.625rem;
    box-shadow: rgba(125,125,125,0.2) 0 0 0.9375rem 0.5rem;
}
.header-right-contact-social-media:hover .header-right-contact-social-media-qrcode{
    display: flex;
}
.header-right-contact-social-media-qrcode-img{
    width: 10rem;
    height: 10rem;
    object-fit: contain;
}
.header-right-contact-social-media:last-of-type{
    margin-right: 0;
}
.header-right-contact-social-media-icon{
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.header-right-contact-social-media-icon-img{
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
    background-color: #FFFFFF;
    border-radius: 0.3125rem;
}
.header-right-toggle-btn{
    display: none;
}