.header-logo {
    display: flex;
    align-items: center;
}

.header-logo__link {
    display: flex;
    align-items: center;
}

.header-logo__img {
    display: block;
    height: 80px;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
}

@media only screen and (min-width: 992px) {
    .header-logo__img {
        height: 80px;
    }
}

@media only screen and (min-width: 1367px) {
    .header-logo__img {
        height: 90px;
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.preloader.fade-out {
    opacity: 0;
}

.preloader__spinner {
    width: 120px;
    height: 120px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #0a6e9a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader__logo {
    position: absolute;
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.loaded {
    opacity: 1;
} 

div[onclick] {
    cursor: pointer;
}