body {
    margin: 0;
    overflow: hidden;
}

.page {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    background-color: rgb(1, 97, 141);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    box-sizing: border-box;
}

h1 {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.bg {
    background-image: url(./logo.png);
    /*background-image: url(./bg.jpeg);*/
    transform: scale(0.8);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    flex: auto;
    
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 10px;
    white-space: nowrap;
    background-color: #FFF;
    border-radius: 8px;
    padding: 16px 24px 24px;
    line-height: 24px;
    box-shadow: 0 6px 20px 5px rgba(0,0,0,.2);
    position: relative;
    z-index: 1;
    min-width: 262px;
}

.item {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

span {
    font-size: 13px;
    color: #888;
    display: inline-block;
    width: 48px;
}

.item a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #666;
    transition: .2s;
}
.item a:hover {
    border-bottom-color: transparent;
}

.contacts {}

.requisites {}

@media screen and (min-width: 480px) {
    .page {
        align-items: stretch;
        padding: 0;
        justify-content: start;
    }
    
    .card {
        border-radius: 0;
    }
    
    .bg {
        position: static;
    }
}

body {
    font-size: 1.4vw;
}
.item {
    font-size: 1em;
}
.card {
    line-height: 1.5em;
    width: auto;
    min-width: auto;
}
span {
    font-size: 0.8125em;
    width: 3.5em;
}
h1 {
    line-height: 2em;
    margin: 0;
    display: block;
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: center;
}
.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.message {
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    z-index: 0;
    padding: 10px 20px;
    font-size: 1em;
    font-style: italic;
    background-color: rgba(0,0,0,.5);
    color: #FFF;
}

@media screen and (max-width: 480px) {
    .bg {
        display: none;
    }
    .right {
        flex: none;
        position: fixed;
        bottom: 0;
        z-index: 1;
    }
    .message {
        width: 100vw;
    }
    .page {
        flex-direction: column;
        padding: 15px 0 20px;
    }
}