html, body {
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    margin: 0;
    padding: 0;
}

body * {
    font-family: 'Montserrat', sans-serif;
}

.site {
    width: 100%;
}

.site img {
    width: 100%;
    display: block;
    object-position: top;
    
}

.site-inner {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.site-inner-logo {
    width: 300px;
    background: no-repeat center / contain;
    display: block;
    text-align: center ;
    color: white;
    text-decoration: none;
}

.site-inner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.site-inner-logo:not(:last-child) {
    margin-right: 50px;
    padding-right: 50px;
    border-right: 1px solid #fff;
}

 .desktop {
    display: block;
}

.mobile {
    display: none;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    .desktop {
        display: none !important;
    }
    
    .mobile {
        display: block; !important;
    }
}