@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=auto");

body {
    padding: 0px;
    margin: 0px;
    background-color: #000000;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    cursor: default;
}

body,
html {
    height: 100%;
}

input:focus,
div:focus,
span:focus,
textarea:focus,
select:focus {
    outline: none;
    background-image: none;
}

input::-ms-clear {
    display: none;
}

div,
a,
span,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner {
    border: 0;
}

.touch {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.soon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 25%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    background-image: url(../resources/bg.png);
    background-position: center -100px;
    background-size: cover;
}

.soon-title {
    padding-bottom: 38px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

.soon-contact,
.soon-contact:link,
.soon-contact:visited {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 224px;
    height: 34px;
    margin: 0 auto;
    border: solid 1px #FFFFFF;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.soon-contact:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.touch .soon-contact:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.soon-contact:active,
.touch .soon-contact:active {
    background-color: #FFFFFF;
    color: #000000;

}

@media (max-width: 480px) {

    .soon {
        padding-top: 50%;
        background-position: center -100px;
    }

}