@font-face {
    font-family: "inter-regular";
    font-display: swap;
    src: url('fonts/Inter-Regular/Inter-Regular.eot?#iefix') format('embedded-opentype'),
    url('fonts/Inter-Regular/Inter-Regular.woff') format('woff'),
    url('fonts/Inter-Regular/Inter-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    height: 100%;
    font-size: 10px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
}
body {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    height: 100%;
}

.content{
    position: relative;
    padding: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100%;
    display: flex;
}
.page_main{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.main_block{
    padding: 50px;
    background: rgba(255,255,255,0.5);
    max-width: 100%;
    width: 600px;
}
.block_inner{
    background: #0B1E3D;
    padding: 24px;
    text-align: center;    
}
.main_logo{
    padding-top: 90px;
}
.main_logo img{
    display: block;
    width: auto;
    height: 125px;
    margin: 0 auto;
}
.coming_soon{
    color: #F2F2F2;
    font-family: "inter-regular";
    font-size: 200%;
    line-height: 1.2em;
} 
.contact_list{
    padding: 107px 0 0;
    margin: 0 -8px;
    font-size: 200%;
    line-height: 1.5em;
    color: #F2F2F2;
    font-family: "inter-regular";
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact_list li{
    padding: 0 8px;
}
.contact_list a{
    display: flex;
    align-items: center;
    color: #F2F2F2;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
   
}
.contact_list a:hover{
    color: rgba(255,255,255,0.7);
}
.contact_list img{
    width: 24px;
    height: 24px;
    display: block;
    margin-right: 10px;
}

@media screen and (max-height: 600px){
    .contact_list{
        padding-top: 40px;
        font-size: 180%;
    }
    .main_block{
        padding: 30px;
    }
    .coming_soon{
        font-size: 180%;
    }
    .block_inner{
        padding: 20px;
    }
    .main_logo img{
        height: 100px;
    }
    .main_logo{
        padding-top: 40px;
    }
    .contact_list img{
        width: 22px;
        height: 22px;
    }
}
@media screen and (max-height: 500px){
    body{
        overflow-y: auto;
    }
}
@media screen and (max-width: 1024px){
    .main_block{
        padding: 40px;
    }
    .main_logo{
        padding-top: 60px;
    }
    .main_logo img{
        height: 110px;
    }
    .contact_list{
        padding-top: 80px;
    }
}
@media screen and (max-width: 768px){
    .main_block{
        padding: 30px;
        width: 100%;
    }
    .main_logo{
        padding-top: 40px;
    }
    .main_logo img{
        height: 80px;
    }
    .contact_list{
        padding-top: 60px;
        font-size: 180%;
    }
    .coming_soon{
        font-size: 180%;
    }
    .contact_list img{
        width: 22px;
        height: 22px;
    }
    .block_inner{
        padding: 20px;
    }
}
@media screen and (max-width: 639px){
    .contact_list{
       flex-direction: column;
       margin: 0;
       padding-top: 40px;
    }
    .contact_list li {
        padding: 10px 0 0;
    }
}
@media screen and (max-width: 575px){
    .contact_list{
        font-size: 160%;
    }
    .coming_soon{
        font-size: 160%;
    }
    .contact_list img{
        width: 20px;
        height: 20px;
    }
}
@media screen and (max-width: 479px){
    .main_block{
        padding: 20px;
    }
}